Viewing profile — aloisklink
aloisklink
HN member- Joined
- Thu, Jul 29, 2021, 12:35 PM UTC
- HN karma
- 101
- Public activity
- 30 items
- HN profile
- View on Hacker News ↗
About aloisklink
No profile information was provided.
Recent public activity
-
comment
Comment #48903318
2 letter TLDs/country-code TLDs, are determined by ISO 3166-1 alpha-2 country codes, and having a country code doesn't necessarily mean a country or a state. There are a bunch on t…
-
comment
Comment #48744335
Actually, Diego Garcia (the British/American military base) already has it's own ISO 3166-1 alpha-2 code, DG: [1] It's "Exceptionally reserved" "at the request of International Tel…
-
comment
Comment #48728862
The owners of `queer.af` thought that AF only meant “as f*ck”, without realizing that AF also happens to the be the ISO 3166 code for a country controlled by the Taliban, who didn’…
-
comment
Comment #48080817
You can try looking at this manga posted by a Japanese person that was detained for marijuana possession https://xcancel.com/kime_neko/status/1634511023167381504 . It's in Japanese…
-
comment
Comment #48080644
Not for the ones you buy in Japan, since those are legal. But, it's not unheard of to get randomly stopped by the police and searched, especially in touristy areas like train stati…
-
comment
Comment #48079553
You can still easily buy it here, but the over-the-counter pills are always mixed with other ingredients to make it more difficult to convert them into amphetamines. E.g. Contac 60…
-
comment
Comment #48079419
The author mentions it in a YouTube video: https://www.youtube.com/watch?v=Q2epTf2IW1g (at the 2:20 mark). But essentially, somebody else sent her a package with something illegal …
-
comment
Comment #47788384
At least in Japan on iOS, they have their own app, and it’s great. You can find a seat first, then order directly from your seat, for delivery to your seat (helpful since some McDo…
-
comment
Comment #42746684
I think there are two slightly different issues here! 1. SVGs generated by Mermaid use the SVG 2 features, but other than browsers, most libraries only support SVG 1.1 features, i.…
-
comment
Comment #41982499
POSIX does actually define what a "text file" is, but the definition is a bit unusual: See https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/V1... > 3.387 Text File > A fil…
-
comment
Comment #40509881
I was at Fukushima Daiichi on Monday, and they explained that they only want to take a few grams of the melted material to test the composition of the melted fuel/debris, e.g. what…
-
comment
Comment #40087934
Weirdly, enough, golang is one of the only programming languages that actually has built-in support for a cross-OS config dir location: [os.UserConfigDir()][1]. I don't really ever…
-
comment
Comment #39986983
You should try the Moondrop Space Travel, you can buy them for USD 24.99 on Amazon. - Moondrop is a pretty well known brand in the ChiFi (Chinese Hi-Fi) space. - They support AAC s…
-
comment
Comment #39458269
One reason might be that `text/*` files follow the POSIX standard for text files [1], where no lines can exceed `{LINE_MAX}` bytes in length (and `LINE_MAX` depends on your OS). I …
-
comment
Comment #38060557
Unfortunately, they're not great to use with a phone in your pocket, since then the motion of walking around will adjust the knob and change the volume. Although, come to think of …
-
comment
Comment #38055238
I've had the same issue with some wired IEMs on iOS, using Apple's official USB-C to 3.5mm adaptor. I even have the EU model A2155 of the USB-C to 3.5mm adaptor that's supposed to …
-
comment
Comment #37296013
The Pixel 6 and Pixel 7 apparently does have the hardware/software needed for Suica, even on non-Japanese editions of the phone. However, it's blocked by Google in software dependi…
-
comment
Comment #36854647
That's pretty much it. All modern browsers come with CSS layout functions [1], even Internet Explorer did! Pretty much every other Web API can be implemented in Node.JS using somet…
-
comment
Comment #36851767
I'm one of the maintainers of the mermaid-cli project, and unfortunately, no. Mermaid needs a browser's layout engine to run properly [1], but I haven't yet seen a library that wil…
-
comment
Comment #36564172
Btw, CMake has the [FindThreads][1] module to automatically link with `-lpthread`/`-pthread` in a platform-agnostic way. Even after this change in glibc, you may still need to use …
-
comment
Comment #36318569
Even better, you can use [C99 Flexible array members][1], e.g. something like: struct KeyedEntry { struct Entry entry; char key[]; // flexible array member }; It's not too much mor…
-
comment
Comment #35434689
It's potentially related to the outage at Virgin Media (AS5089) in the United Kingdom, see https://twitter.com/CloudflareRadar/status/16430702601305047... . I'm guessing a lot of s…
-
comment
Comment #34228604
If you're installing a command-line tool globally, I usually go for the system package manager (e.g. `apt` on debian), or `pip` if I want a newer version. With pip, make sure to us…
-
comment
Comment #32704989
If you think about it, isn't buying insurance pretty similar (especially if you pay extra for really rare insurance policies, like lightning strike insurance). You're essentially m…
-
comment
Comment #29153364
DRM too is also a pain. The new Alder Lake CPUs apparently breaks a bunch of games, since their DRM thinks that the new Intel efficiency-cores are a second PC trying to play on the…