heartofgold
No user record in our sample, but heartofgold has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but heartofgold has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
For any older java programmers that may have a bad taste in their mouth when they think of green threads: when Java first came out, it had green threads, and all N threads that were spawned were tied to a single kernel…
SQS FIFO is like 25-40% more expensive, but you're getting added benefit and additional guarantees in exchange. For the most expensive tier: 40 cents per million API requests for plain SQS vs 50 cents per million API…
Not quite _always_. There were some documented caveats... the one I hit before was: Read nonexistent key, followed by a write of that same key, and then a subsequent read could return a stale read saying it didn’t…
I went thru a magnetic pole swap, if you will. I went from growing up as a kid toying in C , later professional development in c++ and java. In college, had a small taste of functional style and found it difficult for…
You are citing case fatality rate for MERS and SARS, but not the flu (which is typically 0.1%), and yet in any given year the flu has killed many more people than MERS or SARS. Why? Because millions get the flu whereas…
I do agree that you should prefer functions over macros. The rule of thumb I’ve heard is only use macros if they are absolutely necessary. But having that option is better than not having the option at all IMHO.
What about JDBC? Here's a few examples stolen from the doc page for the next.jdbc library (https://github.com/seancorfield/next-jdbc): > clj Clojure 1.10.1 user=> (require '[next.jdbc :as jdbc]) nil user=> (def db…
Using the clj-http library in clojure to fetch from a REST webservice: (client/get "http://example.com/resources/3" {:accept :json :query-params {"q" "foo, bar"}}) With the response, you can examine response headers,…
Here is an example to massage/manipulate CSV data. Stolen from the README page for a clojure CSV parsing library (https://github.com/clojure/data.csv) (defn read-column [reader column-index] (let [data (read-csv…
Not original poster, but my take is: - Immutable data-structures with concise literals for lists, vectors, maps, and sets. Having pure functions and immutable data-structures makes code easier to reason about, easier to…
I second this. Struggle with each problem and then view other answers to see how elegantly they solved the same problems. This worked wonders for me as well.
It seems like go's killer feature, initially, was it's approach to concurrency with goroutines and CSP. However, race conditions are still quite possible with goroutines, and many experienced go developers seem to…
The improvements in autopilot in my friends model 3 is truly astonishing to me versus the first gen auto-pilot in the model s. If the incremental improvements over the last 2 years are any indication of what's possible…
Don't get me wrong, I'm not cultist. I agree w/ you that what is going on with the SEC seems reckless, and I don't like it. There are a number of things Musk has done that I definitely don't agree with. (However, I…
In 2016 when you could pre-order a model 3, Musk said first deliveries of model 3 would begin in late 2017. About 2,500 to 3,000 model 3 had been delivered by the end of 2017, and over 200,000 have been delivered to…
A lot of people want to trash Musk and Tesla, but I look at it this way: - Sure the CEO might be too active on twitter and at times say or do things typically considered inappropriate CEO behavior. - Musk often makes…
If you want to look at it that way, you also should include the emissions/environment impact included in acquiring the oil, building refineries, the emissions during the refinery process, and the shipment of the fuel…
For me personally: - I started out just learning navigation. How to move around within buffers, how to open multiple buffers and move around between buffers. Then I learned several built in commands. Years later I…
Superficially org looks similar to markdown, but the kinds of manipulations you can do with TODO lists, calendars, tables within emacs is like magic. It's nothing like markdown when you use it this way.
What jacobajit said. Or here's what Dijkstra said: "Program testing can be used to show the presence of bugs, but never to show their absence!" Dijkstra (1970)