Viewing profile — eadan
eadan
HN member- Joined
- Mon, Mar 19, 2018, 12:12 AM UTC
- HN karma
- 339
- Public activity
- 43 items
- HN profile
- View on Hacker News ↗
About eadan
No profile information was provided.
Recent public activity
- story
-
comment
Comment #24445736
Relevant section: 3.1.3(d) Person-to-Person Experiences: If your app enables the purchase of realtime person-to-person experiences between two individuals (for example tutoring stu…
-
comment
Comment #24442502
This is such a cynical outlook on the world. Of course there are for-profit companies -- most I would argue -- that have a positive impact on the world, and Tesla is one such examp…
-
comment
Comment #24442440
R + the tidyverse (dplyr, ggplot2 etc.) is easily the most elegant data analysis combo I've used. However, I tend to use Python for this usecase nowadays, primarily to reduce frict…
-
comment
Comment #24437686
Yes, and it's a good thing. For once lately, this is the market doing what markets should be doing -- fair price discovery
-
comment
Comment #24235231
Is something like dolthub [0] what you have in mind? [0] https://www.dolthub.com/
-
comment
Comment #24235208
This is very cool. Relatedly, as a data scientist, I wish companies would expose their APIs through SQL. I've spent a lot of time pulling data into ETL jobs from things like mixpan…
-
comment
Comment #24171921
Agreed, with modern reactor designs nuclear "waste" is a misnomer. The Dutch keep all of their nuclear waste in buildings open to the public for tours, buildings which also happen …
-
comment
Comment #24129707
I think the fact that binary size has become smaller rather than larger is notable in a world where most other software seems to be increasingly more resource hungry.
-
comment
Comment #24094047
The problem with vertical farming is where does the energy come from? An acre of solar panels is not capable of supplying enough energy to grow an acre of crops, even with the effi…
-
comment
Comment #24019755
It seems you misunderstood the article. When a minority has an intolerant stance about which the majority has no preference towards, the minority wins. For example, the majority do…
-
comment
Comment #23758976
I agree, the lack of stack traces can be annoying when debugging Go programs. Instead of returning raw errors everywhere, the problem can be alleviated by adding some context to re…
-
comment
Comment #23575452
Dropbox have a good real-world comparison [1] between BBRv1 and BBRv2. They found the retransmission rate to be 4x lower for v2. It's on their edge network, so would be interesting…
-
comment
Comment #23575179
Thanks for your response! This technology is very exciting. Since you're targeting WASM there's a whole host of possibilities. Python is already supported through Iodide [1], but I…
-
comment
Comment #23573431
Congratulations on the launch! I've been excitedly waiting for the public release since hearing about HASH on Joel's blog a few months ago. I've been playing with some models over …
-
story
Ask HN: Transferring large (over 100GB) files?
How do you transfer very large files? Things like raw video footage or datasets. Ideally something suitable for non-technical users.
-
comment
Comment #23544524
This is amazing! The first thing that popped to my mind seeing the life sized "portal" was the farcaster portals from the sci-fi novel Hyperion https://hyperioncantos.fandom.com/wi…
- story
-
comment
Comment #23482940
This is interesting. I haven't seen much in regard to comparing TCP+BBR to FASP other than a masters thesis which suggests FASP outperforms on transferring large files over long di…
-
comment
Comment #23482589
My understanding is that the protocol underlying Aspera (FASP) uses UDP for the main data transfer and a TCP connection for coordination. By using UDP for data transfer it's not re…
-
comment
Comment #23481305
How well does QUIC perform over networks with relatively high packet loss? It seems like Aspera ( https://www.ibm.com/products/aspera ) is the industry standard for high performanc…
-
comment
Comment #23449403
Yes, S3 uses the content-md5 header to verify data integrity for puts. https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjec...
-
comment
Comment #23388573
You want to make sure PyCharm is only indexing files within your project. Depending on your setup, it can try to index all files within virtual environments etc.
-
comment
Comment #23354822
Also in the super fast, but not designed to be cryptographically secure category: xxhash ( https://github.com/Cyan4973/xxHash ) with 32/64 bit output. The latest version, xxh3, sup…
-
comment
Comment #23352887
Not only sub-optimal, but unsuitable. Use algorithms specifically designed for password hashing: argon2 / scrypt etc. SHA256, SHA512 and Blake* algorithms are suitable for secure c…