Live data from Hacker News

Viewing profile — CodeArtisan

CodeArtisan

HN member
Joined
Thu, Mar 15, 2018, 12:14 PM UTC
HN karma
816
Public activity
296 items

About CodeArtisan

A code artisan is a programmer relying completely or in part on his own handcrafted tools.

Recent public activity

  1. comment
    Comment #48205835

    C23 removed the whole stuff about indeterminate value and trap representation. Underflow/overflow being silent or not is implementation defined.

  2. comment
    Comment #48186700

    Shouldn't it be (+ a (apply + b))

  3. comment
    Comment #48180609

    The video game S.T.A.L.K.E.R is happening in the Chernobyl Exclusion Zone, an area filled with super natural anomalies and artifacts due to the radiation. A legend/rumor says that …

  4. comment
    Comment #48132841

    I have been using Framagit for a few years now. it has been online since 2016, it's the public Gitlab instance of Framasoft, a french non profit organization. RocketGit has been on…

  5. comment
    Comment #48067504

    Hack came after. Noduerme is referring to https://en.wikipedia.org/wiki/HipHop_for_PHP

  6. comment
    Comment #48000391

    >I can't think of a single example where foreign inteference (or war) has had the citizenry welcome foreign powers as liberators or otherwise increased freedoms or conditions in a …

  7. comment
    Comment #47995073

    >That's why array indexing is signed in C C23 updated the definition of the [] operator to disallow negative subscripts with array type. I think you have to explicitly convert the …

  8. comment
    Comment #47980654

    Geocities had a ton of xfiles fansites https://geocities.restorativland.org/ (beware, has auto-playing audio!) https://geocities.restorativland.org/Area51/5795/ https://geocities.r…

  9. comment
    Comment #47958007

    Until C23, you could declare a pointer to a procedure that takes an unspecified amount of any type arguments like this void foo( int (*f)() ) { f(1); f(1, "2" , 3.0); } https://god…

  10. comment
    Comment #47877123

    Belgium could be in the top5 in the next report chart due to Google alone. https://blog.google/innovation-and-ai/infrastructure-and-clo...

  11. comment
    Comment #47828303

    Counter-strike was definitively a mod, you had to install it in the same folder as Half-Life and start it with 'hl.exe -game cstrike'. It became a standalone game later with the re…

  12. comment
    Comment #47805899

    Toolchain: https://ada-lang.io/ IDE: https://github.com/AdaCore/gnatstudio

  13. comment
    Comment #47763913

    The games he made for programming competitions like ludum dare were decent. I especially enjoyed Prelude to the chambered. https://web.archive.org/web/20191221082346/http://ludumda…

  14. comment
    Comment #46747706

    Wikipedia has a page already: https://en.wikipedia.org/wiki/Killing_of_Alex_Pretti

  15. comment
    Comment #46136928

    Recursive Popcount: unsigned int popcount(unsigned int n) { return (n &= n - 1u) ? (1u + popcount(n)) : 0u; } Clang 21.1 x64: popcount: mov eax, -1 .LBB0_1: lea ecx, [rdi - 1] inc …

  16. comment
    Comment #45927805

    Stats from Debian and Archlinux. i can't tell how reliable they are. https://qa.debian.org/popcon-graph.php?packages=x11-common+g... https://pkgstats.archlinux.de/compare/packages#…

  17. comment
    Comment #45886754

    Final Fantasy Tactics on Game Boy Advance had a color mode for television. https://www.youtube.com/shorts/F29nlIz_tWo

  18. comment
    Comment #45399455

    Dorsey left may 2024: https://www.theguardian.com/technology/article/2024/may/07/j...

  19. comment
    Comment #45069283

    29 Millions according to https://www.phoronix.com/news/Linux-6.16-AMDGPU-Driver-Size 5 Millions alone for the AMD graphic driver.

  20. comment
    Comment #44987080

    Brave browser launched a blockchain based domains registry IIRC.

  21. comment
    Comment #44555001

    While the price of Minecraft stays the same, the game never stopped evolving and getting content updates. For $30 you get a much bigger game now than fifteen years ago.

  22. comment
    Comment #44284188

    maybe this https://en.wikipedia.org/wiki/Rocks%27n%27Diamonds

  23. comment
    Comment #44083670

    Until valve find a solution to the anti cheat problem, gamers will stay on Windows.

  24. comment
    Comment #43095537

    30% may be a lot but you get more than a store page; - anticheat - voice chat, friend list, ... - matchmaking - marketplace for mods, maps, skins, ... - clips and videos - forums/ …

  25. comment
    Comment #42449760

    You may modify the pattern by simply adding a bitmask pixels[x][y] := (x OP y) BITWISE_AND mask for example, multiply with different bit masks : https://files.catbox.moe/vhfd9x.mp4…