Viewing profile — mrocklin
mrocklin
HN member- Joined
- Thu, Oct 16, 2014, 6:51 PM UTC
- HN karma
- 8
- Public activity
- 18 items
- HN profile
- View on Hacker News ↗
About mrocklin
No profile information was provided.
Recent public activity
-
comment
Comment #46568242
Blas and faer are used only for small corners of the API (linalg and fft) which is exactly what numpy does. I encourage you to follow your own advice and look more closely at the i…
-
comment
Comment #46562419
Yup.
-
comment
Comment #46562397
One can have fun with all manner of things. Take wood-working for example. One can have fun with a handsaw. One can also have fun with a table saw. They're both fun, just different…
-
comment
Comment #46562390
If you read on in the post you might be interested in the section titled Drop Python: Use Rust and Typescript https://matthewrocklin.com/ai-zealotry/#big-idea-drop-python...
-
comment
Comment #46562382
Original author of the post here. Just to give credit where it's due, that was a quote from this other excellent article written by someone else: https://www.stochasticlifestyle.co…
-
comment
Comment #43436469
I mean, Dask doesn't have money. We're definitely not in a place to pay them a bounty. I imagine this is just marketing on their part, or driving up some metric to show customers. …
-
comment
Comment #43436217
I'm not convinced that human judgement was ever applied during this situation.
-
story
AI published a bogus CVE for my project
I help maintain Dask, an OSS project in the Python data space. Dask helps users run arbitrary Python code on distributed clusters of computers. Yesterday, I and several users got a…
-
comment
Comment #41531197
Hey folks, original author here. It seems like people here are really connecting with the specifics of the code review example. The main point of the article is really "what we lea…
-
comment
Comment #38167573
Parallel for loops are the new black I guess
-
comment
Comment #37422486
$25 to process 250TiB seems cheaper than what I would expect. I've had (very good) beers that cost that much :)
-
comment
Comment #11187578
See http://dask.pydata.org/en/latest/ghost.html
-
comment
Comment #10068955
Thanks for the comments. I wrote most of that document so I'll try to explain my reasoning in line. > First and foremost, it would make more sense to compare against the DataFrame …
-
comment
Comment #10068947
Flat CSV or JSON files are hard to parse. Fast CSV parsers and gzip decompression both run at around 100MB/s. If you want to get faster than this you'll need to use better (ideally…
- comment
-
comment
Comment #9534199
Interesting. What are your thoughts on the costs of dependencies? What about toolz makes you hesitate to depend on it?
-
comment
Comment #9534108
http://toolz.readthedocs.org/en/latest/
-
comment
Comment #9534091
You can manage this by composing merge and merge_with In [1]: data = [{'a': {'b': 1}}, {'a': {'c': 2}}] In [2]: from toolz import merge, merge_with In [3]: merge_with(merge, data) …