🎉 Wow, #NetHack 5.0.0 is here! A groundbreaking update that makes it... compliant with C99? 🚀 Truly, nothing screams "exciting dungeon exploration" like a riveting code standard. Prepare for adventure, folks—just maybe do it with a debugger handy. 🐛💥
https://nethack.org/v500/release.html #NetHack5 #C99 #DungeonExploration #GameDevelopment #Debugging #HackerNews #ngated
NetHack 5.0.0: Release Notes

Just pushed pset004.c into my Euler Repo.

No. Not happy with the palindrome solution I came up with. 4-digit numbers onwards get pretty heavy for the computer.

But I refuse to ask an AI to teach me algorithms. I'd rather eat my own left foot than ask for a O(n) solution.

#C99 #C #programming #algorithms #code

Currently battling against Project Euler's pset004 in #C.

How come a simple function that reverses a 6-digit number to check whether it is a playndrome (O(n)) can furiously turn into a massive resource waster when digits increase?

Unfortunately, my most feared enemy, the pointer, will save me on this one.

#coding #programming #c99

Tiny C compiler: a C99 compiler while still keeping it small, simple, fast and understandable: https://bellard.org/tcc/ #free #compiler #C99
TCC : Tiny C Compiler

Portable C compiler: a C99 compiler while still keeping it small, simple, fast and understandable: https://github.com/IanHarvey/pcc #free #compiler #C99
GitHub - IanHarvey/pcc: Portable C Compiler sources

Portable C Compiler sources. Contribute to IanHarvey/pcc development by creating an account on GitHub.

GitHub
🎉 Behold, the latest miracle in machine learning: a magic wand that transforms boring old #Python into lightning-fast C99! 🚀 Now you can impress your friends with a 336x speed boost in inference time – as if anyone cares about classical ML models anymore. 😂 Just one command away from turning your dusty #GitHub into a tech dystopia. 🕹️
https://github.com/kossisoroyce/timber #machinelearning #C99 #speedboost #techdystopia #HackerNews #ngated
GitHub - kossisoroyce/timber: Ollama for classical ML models. AOT compiler that turns XGBoost, LightGBM, scikit-learn, CatBoost & ONNX models into native C99 inference code. One command to load, one command to serve. 336x faster than Python inference.

Ollama for classical ML models. AOT compiler that turns XGBoost, LightGBM, scikit-learn, CatBoost & ONNX models into native C99 inference code. One command to load, one command to serve. 336x f...

GitHub

One assembler to rule them all.

I'm building UA. A language that reads like high-level code but talks directly to the registers. The standalone asm compiler do PE, ELF, or raw binaries without any ext. linkers.

Full manifesto coming soon in the "BOOM".

#lowlevel #coding #assembly #c99

🚀 Ah, yes, another #groundbreaking #algorithm that will remain forever buried in the #GitHub graveyard of forgotten #C99 #experiments. 🤖 But fear not, the #AI #overlords at GitHub have blessed us with #Copilot to tutor us through yet another round of "Experimental" coding—because who needs practical code when you can have theoretical perfection? 📚
https://github.com/danalec/DMMSY-SSSP #experimental #coding #HackerNews #ngated
GitHub - danalec/DMMSY-SSSP: Experimental C implementation of “Breaking the Sorting Barrier for Directed Single-Source Shortest Paths” by Ran Duan, Jiayi Mao, Xiao Mao, Xinkai Shu, and Longhui Yin (STOC 2025)

Experimental C implementation of “Breaking the Sorting Barrier for Directed Single-Source Shortest Paths” by Ran Duan, Jiayi Mao, Xiao Mao, Xinkai Shu, and Longhui Yin (STOC 2025) - danalec/DMMSY-SSSP

GitHub

C99 implementation of new O(m log^(2/3) n) shortest path algorithm

https://github.com/danalec/DMMSY-SSSP

#HackerNews #C99 #O(m #log #n #shortest #path #algorithm #DMMSY-SSSP

GitHub - danalec/DMMSY-SSSP: Experimental C implementation of “Breaking the Sorting Barrier for Directed Single-Source Shortest Paths” by Ran Duan, Jiayi Mao, Xiao Mao, Xinkai Shu, and Longhui Yin (STOC 2025)

Experimental C implementation of “Breaking the Sorting Barrier for Directed Single-Source Shortest Paths” by Ran Duan, Jiayi Mao, Xiao Mao, Xinkai Shu, and Longhui Yin (STOC 2025) - danalec/DMMSY-SSSP

GitHub
🌘 C 語言中的 URL
➤ 破解 C99 標準的隱藏邏輯
https://susam.net/url-in-c.html
作者 Susam Pal 提出了一個看似簡單卻引人深思的 C 語言程式碼謎題。程式碼中包含一個網址,令人驚訝的是,它能成功編譯並執行。文章深入探討了 C99 標準的細節,解釋了為何這個包含網址的程式碼片段能在 C 語言環境中合法運行,揭示了 `https:` 作為標籤以及 `//` 作為 C99 標準引入的註解起始符號的巧妙運用。
+ 這真是個有趣的謎題!我從沒想過網址也能這樣被「解讀」,C 語言的彈性超乎想像。
+ 感謝作者的詳細解釋,特別是關於 C99 標準中 `//` 註解的引入。這讓我對 C 語言的語法有了更深的認識。
#C 程式設計 #程式碼謎題 #C99 標準
URL in C - Susam Pal