Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
uasi
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
uasi
2mo ago
Herdr supports mobile-friendly layouts seamlessly, just like responsive web pages. On a narrow terminal, the sidebar is automatically hidden, and the tab bar is replaced with a status line (current workspace name, current tab name, and agen
2.
▲
by
uasi
3mo ago
You can, but forks or branches need constant merging or rebasing (and sometimes conflict resolution) for each one. Clean/smudge filters are fiddly to set up correctly and almost certainly require shelling out to another program, which
3.
▲
by
uasi
3mo ago
Git works until you need conditional logic such as platform-specific files or templating.
4.
▲
by
uasi
3mo ago
> pnpm is written in Rust Not just yet. The Rust rewrite of the installation engine is still experimental and available as an opt-in preview[0]. [0] https://github.com/pnpm/pnpm/releases/tag/v11.2.2
5.
▲
by
uasi
4mo ago
Got an incorrect result on my first try. Input was 振り仮名変換器の性能が如何程か試してみよう. It returned 如何(どう)程(ほど) instead of 如何(いか)程(ほど). Regardless, I'm impressed with the tool!
6.
▲
by
uasi
5mo ago
Even with that workflow jj can help a lot. Haven't you ever been annoyed by situations like, while working on a few features at once, having unrelated changes from different feature branches piling up in the stash? Or wanting to switch
7.
▲
by
uasi
6mo ago
Those resources were a huge help when I was digging into the DEFLATE algorithm, thank you!
8.
▲
by
uasi
6mo ago
That number is unfairly exaggerated. The list includes ~40 internal keywords used only by language developers, plus dozens of tokens that would be called preprocessor directives, attributes, or annotations in other languages (e.g. `canImpor
9.
▲
by
uasi
8mo ago
Git can display diff between binary files using custom diff drivers: > Put the following line in your .gitattributes file: *.docx diff=word > This tells Git that any file that matches this pattern (.docx) should use the “word” filter
10.
▲
by
uasi
8mo ago
1.6 *dollars
11.
▲
by
uasi
8mo ago
I'm not deeply familiar with this, but from reading the `go mod tidy` manual[1], it seems that running `go mod tidy` loads all packages imported from the main module (including transitive dependencies) and records them with their preci
12.
▲
by
uasi
9mo ago
You're right. I looked up 現代仮名遣いの告示 [0] for the first time, and it says 塔(とう) is officially pronounced as "too". I had it backwards - I thought that 塔 is "tou", but due to the varying sounds of う, people could (and
13.
▲
by
uasi
9mo ago
Well, speaking for myself, I internalized how う is pronounced differently in different contexts when I was young, and by now I've almost forgotten there's a difference I need to be conscious of. When I hear /ho:/ in a ce
14.
▲
by
uasi
9mo ago
塔 can be pronounced as tou, too, or somewhere between the two. It depends on the speaker, speaking style, and possibly dialect. Either way, Japanese speakers rely more on context and pitch accent than actual pronunciation, so it communicate
15.
▲
by
uasi
9mo ago
> 方 and 頬 (hou vs hoo) is a better example. As a native Japanese speaker, this example is eye-opening. I hadn't even realized that the u in 方 is pronounced as /o:/ — I believe most Japanese people haven't either, desp
16.
▲
by
uasi
10mo ago
Although many kanjis can be algorithmically composed, manual adjustment of each character's shape is still necessary for production-grade fonts. For example, if you closely compare the 彳 radical between 徧, 行, and 桁, you'll notice
17.
▲
by
uasi
11mo ago
Thunderbird is no different than Electron apps, though. It's built on a browser engine, renders UI written in HTML + CSS (+ XUL partially), consumes ~500MB of RAM on idle, etc.
18.
▲
by
uasi
1y ago
JVM predates BEAM.
19.
▲
by
uasi
1y ago
> create a new global object named "Resource" which has the needed method prototypes that can be overwritten. those methods could conflict with existing methods already used in other ways if you’d want to make an existing class
20.
▲
by
uasi
1y ago
Patchwork robes and non-orange clothes are common in Japanese Buddhism. The styles and colors vary significantly depending on the sect and one’s rank.[1] [1] https://www2.ntj.jac.go.jp/dglib/contents/learn/edc
21.
▲
by
uasi
1y ago
The author uses something like `list.push(...objects)` in his demo code, and I believe this is the culprit. Passing many (~100,000) arguments to a method at once using the spread operator is known to cause a stack overflow, because, in Java
22.
▲
by
uasi
1y ago
What do you mean?
23.
▲
by
uasi
1y ago
`events.push(...arr)` puts all arguments on the call stack before calling the method, which causes the error. Don't push tens of thousands of items at once.
24.
▲
by
uasi
1y ago
require(esm) is no longer behind a flag in v22.12.0+ and v20.19.0+.
25.
▲
by
uasi
2y ago
As a Japanese person, I can confidently say that うな重が食い逃げした sounds nonsensical to Japanese ears. The verb 食い逃げ means the subject (うな重 in this case) ate something, not the other way around. Regarding euphemism, you could instead use expressi
26.
▲
by
uasi
2y ago
うな重が食い逃げした doesn't make sense at all. It literally only means that eel over rice itself ate something and fled away. I think GP meant うな重は食い逃げした. This sentence can be interpreted as the same as above or "[the person] ate eel over
27.
▲
by
uasi
2y ago
Yeah, translators would probably lose their minds when they have to translate horribly ambiguous sentences like 今日はウナギ?行くなら行く。 (lit. "Is today an eel? If go, then go."), which means "Are they going to have eel today? If you g
28.
▲
by
uasi
2y ago
Because Japanese is a notoriously context-dependent language, AI cannot accurately translate even simple sentences like "Daijoubu desu". Its meaning varies wildly depending on the context, such as "I'm fine", "
29.
▲
by
uasi
2y ago
uv offers another useful feature for inline dependencies, which is the exclude-newer field[1]. It improves reproducibility by excluding packages released after a specified date during dependency resolution. I once investigated whether this
30.
▲
by
uasi
2y ago
Adding `foo = "*"` to Cargo.toml is as easy as adding `-l foo` to Makefile.
More ›