Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
JZumun
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
18 ms
·
1.
▲
by
JZumun
3y ago
It's really quite cool how we can implicitly know all these linguistic rules without consciously being aware of them. Just another reminder that our conscious self is just a layer on top of a big and complex processing machine.
2.
▲
Totes Adorbs Truncations [video]
(youtube.com)
2 points
by
JZumun
3y ago
|
1 comments
3.
▲
by
JZumun
3y ago
I think they added multi-page support in the previous point release[0]. I only use inkscape to make graphics though, so I'm not sure how user friendly the implementation is. [0] https://inkscape.org/news/2022/
4.
▲
by
JZumun
3y ago
I think the badge isn't for the reaction, but for posting comments whose text is solely "+1" or "<thumbs up emoji>"
5.
▲
by
JZumun
3y ago
Cryptic crosswords usually provide the lengths of each word in the solution as part of the clue. If that were done here it would have spoiled the ambiguity because either answer would have had (3,4,7) or (7,7) in the clue. I think this site
6.
▲
by
JZumun
5y ago
{ [Key in KeysType]-?: ... } TIL that you can disable ? and readonly in mapped types using -. So in the above code, every Key will be mandatory (-?) even if the original one in KeysType was optional. source: https://www.t
7.
▲
by
JZumun
5y ago
In this formulation, isn't p^N the probability that ALL places where life is possible, actually has life? It makes sense for that to approach zero. What we want is the probability for at least one other place other than ours to have li
8.
▲
by
JZumun
5y ago
I think an extreme example might help: if there are 100 software developers but 98 are single, and 2 are married to each other, then 100% of software developers(that are married couples) have married software developers, even if only 2% of
9.
▲
by
JZumun
5y ago
Modern browsers partition caches by site nowadays - at least, Chrome started doing it last year[0], and Firefox followed soon after I think [1]. That means there's no longer any caching benefit for multiple websites using jQuery - each
10.
▲
by
JZumun
5y ago
When I read about Peano axioms I mentally think of Sn as the function S(n) = n+1 and that helps me understand them better. As a non mathematician sometimes I wonder if this substitution is causing me to misunderstand something else about th
11.
▲
by
JZumun
5y ago
You can never go faster than c, so you can never reach anything that's being moved faster away.
12.
▲
by
JZumun
5y ago
(Assuming space expands evenly) we don't notice the expansion of space inside objects because the electromagnetism and gravity are vastly more powerful on the scales we care about and nullifies the effect. That's why atoms and gal
13.
▲
by
JZumun
5y ago
According to petite-vue's readme, it supports the `v-cloak` directive [0], which is how vue recommends you hide the unprocessed template before it is mounted. For more complicated logic, I think working with the @mounted event might wo
14.
▲
by
JZumun
5y ago
This reminds me of how Adobe Photoshop branding guidelines [1] explicitly forbid the use of "photoshop" as a verb or common noun, and yet I don't think anyone considers these to be improper English grammar. 1: https:/&#
15.
▲
by
JZumun
6y ago
It's like a recursive function, where you resolve to stop interfering with the lower universe once the upper universe stops interfering with you. You run it N times until nothing happens in your universe. That means you're N unive
16.
▲
by
JZumun
6y ago
> for (let elem : arr) { ... } Do you mean: for (let elem of arr) { ... } Unless this is a joke about writing in Java & C++ (for which the colon syntax is valid) instead of javascript.