Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
CodeArtisan
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
10 ms
·
1.
▲
by
CodeArtisan
4mo ago
C23 removed the whole stuff about indeterminate value and trap representation. Underflow/overflow being silent or not is implementation defined.
2.
▲
by
CodeArtisan
4mo ago
Shouldn't it be (+ a (apply + b))
3.
▲
by
CodeArtisan
4mo ago
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 there is a special crystal granting any wish at the ce
4.
▲
by
CodeArtisan
4mo ago
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 online since 2015 and relies on its own software, i have
5.
▲
by
CodeArtisan
4mo ago
Hack came after. Noduerme is referring to https://en.wikipedia.org/wiki/HipHop_for_PHP
6.
▲
by
CodeArtisan
5mo ago
>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 country for those citizens. When Japan occupied the
7.
▲
by
CodeArtisan
5mo ago
>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 array to a pointer type now. int a[2]; a[-
8.
▲
by
CodeArtisan
5mo ago
Geocities had a ton of xfiles fansites https://geocities.restorativland.org/ (beware, has auto-playing audio!) https://geocities.restorativland.org/Area51/5795/ https://geocities.resto
9.
▲
by
CodeArtisan
5mo ago
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://godbolt.o
10.
▲
by
CodeArtisan
5mo ago
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.
▲
by
CodeArtisan
5mo ago
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 retail release. edit: https://developer.v
12.
▲
by
CodeArtisan
5mo ago
Toolchain: https://ada-lang.io/ IDE: https://github.com/AdaCore/gnatstudio
13.
▲
by
CodeArtisan
5mo ago
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://ludumdare.... https:/&#x
14.
▲
by
CodeArtisan
8mo ago
Wikipedia has a page already: https://en.wikipedia.org/wiki/Killing_of_Alex_Pretti
15.
▲
by
CodeArtisan
10mo ago
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, [
16.
▲
by
CodeArtisan
10mo ago
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#packages=gnom...
17.
▲
by
CodeArtisan
10mo ago
Final Fantasy Tactics on Game Boy Advance had a color mode for television. https://www.youtube.com/shorts/F29nlIz_tWo
18.
▲
by
CodeArtisan
1y ago
Dorsey left may 2024: https://www.theguardian.com/technology/article/2024/may/07/j...
19.
▲
by
CodeArtisan
1y ago
29 Millions according to https://www.phoronix.com/news/Linux-6.16-AMDGPU-Driver-Size 5 Millions alone for the AMD graphic driver.
20.
▲
by
CodeArtisan
1y ago
Brave browser launched a blockchain based domains registry IIRC.
21.
▲
by
CodeArtisan
1y ago
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.
▲
by
CodeArtisan
1y ago
maybe this https://en.wikipedia.org/wiki/Rocks%27n%27Diamonds
23.
▲
by
CodeArtisan
1y ago
Until valve find a solution to the anti cheat problem, gamers will stay on Windows.
24.
▲
by
CodeArtisan
2y ago
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/ discussion board - cloud saves - rankings An indie woul
25.
▲
by
CodeArtisan
2y ago
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
26.
▲
by
CodeArtisan
2y ago
On Linux, you may mmap /dev/fb0 to access the front buffer like you would have on old computers. Not all kernel configs and GPU devices allow that. You can test if fb0 is usable with cat /dev/random > /dev/f
27.
▲
by
CodeArtisan
2y ago
When Jens Bergensten joined Mojang (to work on Scrolls), Minecraft was quite advanced and already had the nether and red stone. Notch did not rely on any store and was using his personal paypal account that got blocked due to an anomalous a
28.
▲
by
CodeArtisan
2y ago
Steam hardware survey: https://store.steampowered.com/hwsurvey/processormfg/ Windows: Intel: 64.23% AMD: 35.71% Linux: Intel: 30.15% AMD: 69.85%
29.
▲
by
CodeArtisan
2y ago
The European Union wants its own satellite network to counter Starlink. It will be build by SpaceRISE, a consortium that include Airbus, Thales, Deutsche Telekom... https://en.wikipedia.org/wiki/IRIS%C2%B2 https:/
30.
▲
by
CodeArtisan
2y ago
# decode next bytecode opcode movzwl 8(%r12), %eax # advance bytecode pointer to next bytecode addq $8, %r12 # load the interpreter function for next bytecode movq __deegen_interpreter_dispatch_
More ›