Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
3PS
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
8 ms
·
1.
▲
by
3PS
4mo ago
This feels like the opposite to me? The MoT architecture looks like the ideal that the Bitter Lesson alludes to - just take all of your data in all of your formats (audio, image, text, action, video) and dump it all into a single shared lat
2.
▲
by
3PS
7mo ago
Duolingo | Full-time | Multiple roles | $177K-$240K for NY roles | NY and London | Hybrid Our mission is to develop the best education in the world and make it universally accessible. Our culture is eng-driven, friendly, and very data-drive
3.
▲
by
3PS
7mo ago
Duolingo | Full-time | Multiple roles | $177K-$300K | NY and Pittsburgh | ONSITE Our mission is to develop the best education in the world and make it universally accessible. Our culture is eng-driven, friendly, and very data-driven thanks
4.
▲
by
3PS
8mo ago
This is also the case with Google Fuchsia, just replace 9P with FIDL. I'm really hoping Fuchsia doesn't end up just being vaporware since it has made some very interesting technical decisions (often borrowing from Plan 9, NixOS, a
5.
▲
by
3PS
1y ago
Different bracketing. "If it sounds too good to be true, it usually isn't (true)" vs "If it sounds too good to be true, it usually is (too good to be true)"
6.
▲
by
3PS
1y ago
I think you're technically correct here: if you just have a bunch of Merkle trees where each one tracks the hash of the previous block, it would be accurate to refer to it as a blockchain even if you're not bothering to implement
7.
▲
by
3PS
1y ago
> One way of thinking about a blockchain is to think of it as a shared datastructure to keep databases in sync. Any time you want to distribute your database over more than just a single central place, in a cryptographically secure way,
8.
▲
by
3PS
1y ago
I think both you and GP are correct, but in different ways. It's true that the English language has a very large number of phonemes... but accents tend to regularize/restrict these phonemes. For example, a typical bilingual speake
9.
▲
by
3PS
1y ago
For prices specifically I think it's fair to say that inflation only goes in one direction, but for larger market trends, IMO the key here is _habit building_. Many things were technically feasible pre-pandemic but not done habitually:
10.
▲
by
3PS
1y ago
Broadly summarizing. This is OK and fair use: Training LLMs on copyrighted work, since it's transformative. This is not OK and not fair use: pirating data, or creating a big repository of pirated data that isn't necessarily for AI
11.
▲
by
3PS
1y ago
> But fish is too much like bash in syntax, meaning that I just think of it like bash until I have to type "(foo)" instead of "$(foo)", or "end" instead of "fi" Note that fish does also support bas
12.
▲
by
3PS
2y ago
Nit: that's not what negative reinforcement means. Negative reinforcement is about removing a negative stimulus, like inducing someone to go to a desirable website by improving their initially bad text contrast whenever they go there.
13.
▲
by
3PS
2y ago
Quiver was absolutely indispensable when I did a category theory course a few years ago. The UI was clean, intuitive, and featureful. Compared to banging one's head against Tikz, it's absolutely no contest.
14.
▲
by
3PS
2y ago
It doesn't always work, but I like the SQLite model: the core offering is free and open source, but enterprises can pay for things like * Professional support, including on-prem hosting when applicable * Additional features that enterp
15.
▲
by
3PS
2y ago
> As my understaning it bring bunch of features out of box, syntax highligh, tab completion etc.? I think this is a good summary. The best thing about fish is that you don't need to install any plugins to get all of the nice things
16.
▲
by
3PS
2y ago
Poetry has two flaws imo: 1. It's written in Python, which makes it slower and prone to bootstrapping issues. 2. It doesn't manage your Python installation, which necessitates the use of a tool like pyenv. Rye sidesteps both of th
17.
▲
by
3PS
2y ago
I agree, but the definition alone isn't sufficient to actually calculate eigenvalues. Hence the standard approach which says that for matrix A, vector v, and eigenvalue λ, we have Av = λv => Av - λv = 0 => (A - λI)v = 0
18.
▲
by
3PS
2y ago
> The novel approach taken here banishes determinants to the end of the book. Big fan of this approach! Though I have warmed up to determinants ever since I saw 3Blue1Brown give a fairly intuitive explanation for them [0]. I'm kind
19.
▲
So what's the point of linear algebra, anyway?
(chittur.dev)
4 points
by
3PS
2y ago
|
5 comments
20.
▲
by
3PS
2y ago
I paid for Tasker years ago but never got around to trying it. This might be the impetus I needed.
21.
▲
by
3PS
2y ago
Joke or not, this could be a pretty ergonomic way to read long form content. Currently I rebind my mouse side buttons to page up/down which serves much the same purpose, since scrolling endlessly on a mouse doesn't feel great for
22.
▲
by
3PS
2y ago
I use a Pixel with the Nova Prime launcher (which is a fantastic launcher) and it can do all of these things except the audio stuff. Individual app audio control is definitely one of the features I wish I had the most.
23.
▲
by
3PS
2y ago
Adding to the other comments, one thing I have heard about projected population decline is that it tends to happen very _rapidly_. That is, even if birth rates are below replacement level, it takes a while for that number to get reflected i
24.
▲
by
3PS
2y ago
Condolences to the author, but this is a huge relief. A polytime quantum algorithm for LWE would have been a scary prospect for the future of asymmetric key crypto. (Not to mention all the other cool stuff people are building on top like fu
25.
▲
by
3PS
2y ago
This looks really exciting - will definitely check it out. Until now I've been using jq with up [0] for interactive queries, but I don't find myself liking up's UX much (especially for long queries or non-ASCII data) so I
26.
▲
by
3PS
3y ago
Understandable, though JVM strings can also use the UTF-8 charset under the hood. In fact, if you initialize a Kotlin string from a byte array, it'll default to assuming the UTF-8 charset [0]. (Kotlin chars are still 16-bit code units
27.
▲
by
3PS
3y ago
Seems like an interesting language with a lot of new ideas, especially the declarative concurrency approach. I am very disappointed by the decision to go with UTF-16 for strings though [0] and strongly urge the author to reconsider. UTF-16
28.
▲
by
3PS
3y ago
Your mistake is here: > The possible values of N are evenly distributed [1...100] (we discount the N=0 case because we drew a red ball) These probabilities over N are not actually even anymore; the fact that you drew a red ball means tha
29.
▲
by
3PS
3y ago
> I do wish fish could seamlessly convert and run bash scripts on the fly.. It can. With a little help. I use this: https://github.com/edc/bass
30.
▲
by
3PS
3y ago
Chiming in as another fish+starship user. It's hard to imagine using anything else now; I get just about every feature I would ever want out of my shell with essentially zero configuration, which makes it easy to replicate my setup acr
More ›