Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
eadan
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
Stack Overflow: How We Do App Caching (2019)
(nickcraver.com)
3 points
by
eadan
5y ago
|
0 comments
2.
▲
by
eadan
6y ago
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 students, medical consultations, real estate tours, or fitness
3.
▲
by
eadan
6y ago
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 example.
4.
▲
by
eadan
6y ago
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 friction when working with others where Python is the lingua
5.
▲
by
eadan
6y ago
Yes, and it's a good thing. For once lately, this is the market doing what markets should be doing -- fair price discovery
6.
▲
by
eadan
6y ago
Is something like dolthub [0] what you have in mind? [0] https://www.dolthub.com/
7.
▲
by
eadan
6y ago
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 mixpanel, adwords etc., and having a unified interface would
8.
▲
by
eadan
6y ago
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 to house priceless artwork: https://www
9.
▲
by
eadan
6y ago
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.
10.
▲
by
eadan
6y ago
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 efficiency gains we've had in photovoltaics and lighting wi
11.
▲
by
eadan
6y ago
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 doesn't care if all food is kosher. But, the majority wou
12.
▲
by
eadan
6y ago
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 returned errors: if err := foo(x); err != nil { retu
13.
▲
by
eadan
6y ago
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 to see how v2 performs on connections with a high band
14.
▲
by
eadan
6y ago
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 imagine other languages could also be ported, and
15.
▲
by
eadan
6y ago
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 the past few hours and I have a few questions
16.
▲
Ask HN: Transferring large (over 100GB) files?
1 points
by
eadan
6y ago
|
1 comments
17.
▲
by
eadan
6y ago
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/wiki/Farcaster
18.
▲
Show HN: JotFS: a content-defined deduplicating file store backed by S3
(eadan.net)
1 points
by
eadan
6y ago
|
0 comments
19.
▲
by
eadan
6y ago
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 distances (which is exactly its intended purpose). But,
20.
▲
by
eadan
6y ago
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 restricted to the ACK ranges imposed by TCP which can hin
21.
▲
by
eadan
6y ago
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 performance WAN transfers, but it's a proprie
22.
▲
by
eadan
6y ago
Yes, S3 uses the content-md5 header to verify data integrity for puts. https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutObjec...
23.
▲
by
eadan
6y ago
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.
24.
▲
by
eadan
6y ago
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, supports up to 128 bit output. meow ha
25.
▲
by
eadan
6y ago
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 checksums and HMACs, but not password hashing
26.
▲
Ask HN: Dataset version control for ML / data science?
1 points
by
eadan
7y ago
|
0 comments
27.
▲
by
eadan
7y ago
I actually really appreciate companies that produce research and write articles on technologies adjacent to their business. It's a great way of building trust and a community around the business' core product. Digital Ocean are a
28.
▲
by
eadan
7y ago
I have experience implementing similar models for analyzing and predicting customer spending behavior. The posted paper may be somewhat abtruse for the uninitiated, so I thought I'd provide some background knowledge. As the title state
29.
▲
by
eadan
7y ago
It's far from comprehensive, but here are a handful of operating system projects that have caught my eye: [1] MezzanoOS, an OS written in Common Lisp ( https://github.com/froggey/Mezzano ) [2] SerenityOS, a Unix-lik
30.
▲
by
eadan
7y ago
The Secure Enclave processor on Apple devices runs a version of the L4 microkernel [0] https://support.apple.com/en-us/HT209632
More ›