Viewing profile — uasi
uasi
HN member- Joined
- Sun, Jul 26, 2015, 4:22 AM UTC
- HN karma
- 114
- Public activity
- 44 items
- HN profile
- View on Hacker News ↗
About uasi
No profile information was provided.
Recent public activity
-
comment
Comment #48827156
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 sta…
-
comment
Comment #48594631
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 ce…
-
comment
Comment #48591184
Git works until you need conditional logic such as platform-specific files or templating.
-
comment
Comment #48473234
> 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/re…
-
comment
Comment #48326466
Got an incorrect result on my first try. Input was 振り仮名変換器の性能が如何程か試してみよう. It returned 如何(どう)程(ほど) instead of 如何(いか)程(ほど). Regardless, I'm impressed with the tool!
-
comment
Comment #47845185
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 featur…
-
comment
Comment #47550201
Those resources were a huge help when I was digging into the DEFLATE algorithm, thank you!
-
comment
Comment #47530243
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, a…
-
comment
Comment #46715761
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 matc…
-
comment
Comment #46576396
1.6 *dollars
-
comment
Comment #46538370
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 tra…
-
comment
Comment #46301888
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 vary…
-
comment
Comment #46299752
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…
-
comment
Comment #46298627
塔 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 a…
-
comment
Comment #46298531
> 方 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…
-
comment
Comment #46133382
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…
-
comment
Comment #45565772
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.
-
comment
Comment #44145170
JVM predates BEAM.
-
comment
Comment #44013123
> 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 oth…
-
comment
Comment #43642253
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.g…
-
comment
Comment #43546054
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 o…
-
comment
Comment #43544316
What do you mean?
-
comment
Comment #43544113
`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.
-
comment
Comment #43461236
require(esm) is no longer behind a flag in v22.12.0+ and v20.19.0+.
-
comment
Comment #43356515
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…