Live data from Hacker News

Viewing profile — Netch

Netch

HN member
Joined
Fri, Jun 17, 2016, 9:28 PM UTC
HN karma
30
Public activity
51 items

About Netch

No profile information was provided.

Recent public activity

  1. comment
    Comment #48179699

    From a bystanderʼs POV it is excessively hard to memorize all the mess with multiple different extensions. The naming style doesnʼt alleviate the task. But this is a typical issue …

  2. comment
    Comment #48178589

    A normal situation in my tasks is when the working copy contains lots of changes that are used for debug (mainly prints) but these changes shall not be committed to the proposed ch…

  3. comment
    Comment #44645763

    Slightly side note - I donʼt understand why C++ invents new stdio based functions like std::print but rejects to import funopen() or fopencookie() which make stdio flexible similar…

  4. comment
    Comment #42983779

    With the manner exposed by the most feature-full DEs, Iʼd expect setting default to ~/Cache (not ~/cache, the latter is for the userʼs discretion). But, I tend to agree with the ma…

  5. comment
    Comment #42435275

    Nice work! Perseverance to find the root cause in such an unfriendly environment as any bootstrap is what saves all us from the civilization crash...

  6. comment
    Comment #42423884

    RISC-V designers explicitly declare in their base specification: "The AMOs were designed to implement the C11 and C++11 memory models efficiently." So at least one example is prese…

  7. comment
    Comment #42419063

    > Python might have used array[~0] instead This is what was once added to C#: arr[^idx], when this ^idx is mapped to a special object, typically optimized then out. arr[^0] means t…

  8. comment
    Comment #42419052

    > In Europe, we typically mark the ground-floor as floor-zero, _Western_ Europe. Eastern Europe prefers 1-based numbering. The reason, typically assumed, is that thermal isolation,…

  9. comment
    Comment #42419040

    > find the convention used in many countries of numbering building floors starting with zero to be more logical. Ukrainian here. Multi-floor buildings always have at least one stai…

  10. comment
    Comment #42418966

    This division, using SRT loop with 2 bit output per iteration, perhaps would have already been microcoded - but using the lookup table as an accelerator. An alternative could use a…

  11. comment
    Comment #42025845

    Filename character set and its interpretation shall be controlled per directory or, at least, per FS. This pertains not only to permitted set like with or without LF, but to collat…

  12. comment
    Comment #42025749

    OK let them add an explicit check to standard tools, and/or to open(), mkdir(), etc. with O_PORTABLECHARS. And an environment option to disable this check. Why they force the restr…

  13. comment
    Comment #42025736

    > it seems that glibc does not support it `iconv` does, and this is enough in common. Among with tons of eerie EBCDIC/whatever...

  14. comment
    Comment #42025731

    > That can only be a bug - UTF-32/UCS-4 never saw external use I regularly use `iconv -t utf-32be | hd` to look what a bizarre sequence is denoting yet another weird symbol like an…

  15. comment
    Comment #41806917

    But at least a programmer shall be aware to call it (whatever API is used).

  16. comment
    Comment #41796329

    > You're not limited to 650MB provided you use UDF rather than ISO 9660. You donʼt take into account case of booting real ISO on an old hardware. If it doesnʼt know DVD, chance of …

  17. comment
    Comment #41788980

    > Makes you wonder why this isn't part of the C++ standard library itself. Plainly no need if there is a separate easily attachable library (and with permissible license). What C++…

  18. comment
    Comment #41788880

    > There’s no excuse. Until mid-2000s there was no certainty Unicode will eventually defeat competitors. In real it havenʼt fully yet - GB2312 and Tron are still locally prevailing,…

  19. comment
    Comment #41788811

    > In C# I can simply do this: "hello world".ToUpper(); Hmm still actual: https://www.moserware.com/2008/02/does-your-code-pass-turkey...

  20. comment
    Comment #41785397

    All the code which is not in hot path may conform to any rules, and typically is designed according to something like SOLID, to make understanding and maintenance as simple as poss…

  21. comment
    Comment #41785263

    Really I would have concur with the author if dealing again and again with a need to fit the media contents into 650MB (if it is intended to be put at real ISO) or to guarantee how…

  22. comment
    Comment #41785239

    Live CD is mainly replaced with live USB, even if it is called the same nickname.

  23. comment
    Comment #41774149

    > QEMU running Windows for x86 on an M1 isn't very fast either. It seems the main obstacle is in paging where x86 4KB clashes with Apple 16KB (ARM/64 supports multiple sizes), so, …

  24. comment
    Comment #41774043

    > You're saying you can't think of one context where a trade of between largest supported int value vs total bytes of the message is a reasonable one? Seems you have pretty misread…

  25. comment
    Comment #41767354

    Most cases an initial estimate of change cost is utterly overstated because emotional and reluctant to change. (And, well, this fact is also abused by wreckers who explain any reas…