Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
thaunatos
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
The React2Shell Story and What Happened Next.js
(sylvie.fyi)
2 points
by
thaunatos
4mo ago
|
1 comments
2.
▲
by
thaunatos
8mo ago
https://hammes.io/
3.
▲
by
thaunatos
10mo ago
It does. https://www.war.gov/
4.
▲
by
thaunatos
3y ago
Later in the post: > I could picture a future where the Compiler Team realizes we have an important question about the behavior of the software, that could be answered by analyzing these metrics, and have a VSCode or cargo plugin that an
5.
▲
by
thaunatos
4y ago
Classless as in the library only uses element and pseudo selectors, no `.class` selectors.
6.
▲
by
thaunatos
4y ago
Kind of similar, a guy making a robot to solve jigsaw puzzles: https://www.youtube.com/watch?v=Gu_1S77XkiM
7.
▲
by
thaunatos
5y ago
Consider a parent -> child relation. You have an array `parents`, but want all their children. parents.flatMap(parent => parent.children)
8.
▲
by
thaunatos
5y ago
I don't believe the CDC has this authority: > On Thursday, the White House confirmed it would let the moratorium expire because the supreme court said it would block additional extensions unless they were authorized by Congress. The
9.
▲
by
thaunatos
5y ago
It's worth noting that the author of the arcicle doesn't think it's worth integrating a SAT solver: > Does this mean that rustc should integrate an industrial-strength SAT solver? As hilarious as that would be, I'm ad
10.
▲
by
thaunatos
5y ago
> Also, how well does html do multiple columns with text flowing between them nowadays? With the CSS property `columns`, this is pretty easy to do: https://jsfiddle.net/52j401rg/ https://developer.mozilla
11.
▲
by
thaunatos
5y ago
Here's an example fingering chart for major scales: https://i.pinimg.com/originals/20/36/98/203698fda995f78e8621... For the chromatic scale, I was taught to alternate 3 and 1, using 2 when there are
12.
▲
by
thaunatos
6y ago
I believe she meant that she popularized the tables/areas where he was eating, not the restaurants.
13.
▲
by
thaunatos
6y ago
> “Under these conditions, there does not seem to be a significant difference between the mortality rate of SARS-CoV-2 in OECD countries and that of common coronaviruses (χ2 test, P=0.11). Of course, the major flaw in this study is that
14.
▲
by
thaunatos
7y ago
Your friend was probably talking about Diesel migrations: https://github.com/diesel-rs/diesel
15.
▲
by
thaunatos
7y ago
Please do! Would love to read about how you did it :-)
16.
▲
by
thaunatos
8y ago
The official tutorial would be a good starting point: https://reactjs.org/tutorial/tutorial.html
17.
▲
by
thaunatos
8y ago
Just adding a @lru_cache() to a python isn't guaranteed to be correct; for example, if you're reading from an API the response could change between calls. Skip tracks side effects, and will either (a) memoize automatically a pure
18.
▲
by
thaunatos
8y ago
> What are ATL and BTL activities? They seem simple enough. Above The Line (ATL) advertising is where mass media is used to promote brands and reach out to the target consumers. These include conventional media as we know it, television
19.
▲
by
thaunatos
8y ago
I believe that the [] indicate an array.
20.
▲
by
thaunatos
9y ago
California requires all companies with self-driving cars operating in the state to provide reports about miles driven, cars operated, number of disengagements, etc. Here's a link: https://www.dmv.ca.gov/portal/dmv&
21.
▲
by
thaunatos
9y ago
I imagine that stopping the car remotely is the least of a teledriver can do. Unless you mean, is there a button inside the car? I don't know if that is of much importance, seeing as there isn't anyone physically there to press th
22.
▲
by
thaunatos
9y ago
Maybe open-source it anyways? :-)
23.
▲
by
thaunatos
10y ago
> * Futures is a crate that provides a common abstraction for delimited continuations I'm familiar with Java Futures, but can't tell if it's the same concept as what you're talking about. What exactly is a "delim
24.
▲
by
thaunatos
10y ago
I would love to see your source on that. (I think you're right, just want to read the original paper)
25.
▲
by
thaunatos
10y ago
A pure Python implementation of lxml would be exceedingly slow.
26.
▲
by
thaunatos
10y ago
What do you think about finite state machines for storing strings? ( http://blog.burntsushi.net/transducers/ ) It doesn't support adding words at run-time, but it seems to have attractive space usage.