frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Spite Driven Development

https://notes.zachmanson.com/spite-driven-development/
1•vismit2000•2m ago•0 comments

Show HN: Libfyaml 1.0.0-alpha1, a modern YAML library for C

https://github.com/pantoniou/libfyaml
1•fypanto•4m ago•0 comments

Ask HN: I built a geometric reasoning engine – what should I test it on?

1•gmeksriunas•5m ago•0 comments

SSH has no Host header

https://blog.exe.dev/ssh-host-header
1•apitman•6m ago•0 comments

Real or Slop? – Programming Languages Papers Edition

https://slop.zackg.me/
2•matt_d•12m ago•1 comments

Commandments of AI (Mindfulness)

2•xaj•15m ago•0 comments

Knowledge workers managing AI show collapsed productivity, not just a plateau

1•dfordp11•19m ago•0 comments

New iPhone app covering retro CPUs

https://apps.apple.com/us/app/opcodes/id6760205834
1•GrantMeStrength•22m ago•1 comments

AI – Assassinating Intelligence

https://yashgarg.dev/posts/ai-slop/
1•salkahfi•23m ago•0 comments

Show HN: Hat v0.7.0 – Fast, local automatic file compression and conversion

https://github.com/bittere/hat
1•_bittere•23m ago•0 comments

Meta's Omnilingual MT for 1,600 Languages

https://ai.meta.com/research/publications/omnilingual-mt-machine-translation-for-1600-languages/?...
1•j0e1•24m ago•0 comments

Show HN: Bank Parser – Convert US Bank Statement PDFs to QuickBooks-Ready Excel

https://bank-parser.com
1•zetbaur•25m ago•0 comments

Doubling down on open-access quantum computing

https://www.ibm.com/quantum/blog/open-plan-updates
1•jonbaer•25m ago•0 comments

Show HN: Llmtop – Htop for LLM Inference Clusters (vLLM, SGLang, Ollama, llama)

https://github.com/InfraWhisperer/llmtop
1•rpotluri•26m ago•0 comments

Review the Spec. Not the Code

https://www.augmentcode.com/blog/review-the-intent-not-the-code
1•knes•28m ago•0 comments

What is Nvidia NemoClaw and how to try it

https://mashable.com/article/nvidida-nemoclaw-what-it-is-how-to-try-it
1•geoffbp•32m ago•0 comments

Electric vehicles avoided oil consumption of 70% of Iran's 2025 exports

https://ember-energy.org/latest-updates/electric-vehicles-avoided-oil-consumption-equivalent-to-7...
1•dabinat•38m ago•0 comments

Review of Microsoft's ClearType Font Collection (2005)

https://typographica.org/on-typography/microsofts-cleartype-font-collection-a-fair-and-balanced-r...
1•precompute•40m ago•0 comments

Your terminal, finally has memory!

https://github.com/KunalSin9h/yaad
2•knlsn•42m ago•1 comments

Rust-accelerated reinforcement learning, 140x faster than Python

https://github.com/riserally/rlox
3•wkowalpl•45m ago•1 comments

Iranian security chief Ali Larijani killed in air strike

https://www.bbc.com/news/articles/c24deezq6meo
1•tartoran•51m ago•1 comments

India's 20 years of GDP misestimation: New evidence

https://www.piie.com/publications/working-papers/2026/indias-20-years-gdp-misestimation-new-evidence
1•littlexsparkee•51m ago•0 comments

AI coordinates with your friends' AI so nobody has to

https://sotto.us
2•felixwu•56m ago•0 comments

Show HN: Vibe Remote – Code from your bed or the park with Claude Code/Codex

https://vibe-remote.com
2•amarkdown•1h ago•2 comments

Smoother Signatures (2012)

https://developer.squareup.com/blog/smoother-signatures/
1•wxw•1h ago•0 comments

The remaining questions after the Supreme Court's tariffs ruling

https://www.scotusblog.com/2026/03/the-remaining-questions-after-the-supreme-courts-tariffs-ruling/
2•treetalker•1h ago•0 comments

My Claude Code setup you definitely shouldn't use. It's AI Overkill

https://github.com/notque/ai-overkill
3•AndyNemmity•1h ago•1 comments

From Descartes to punk rock, the letter X has an extraordinary history

https://www.npr.org/2026/03/17/nx-s1-5732951/letter-x-etymology-religion-punk-descartes-romans-al...
1•andsoitis•1h ago•0 comments

Forget Flags and Scripts: Just Rename the File

https://robertsdotpm.github.io/software_engineering/program_names_as_input.html
6•Uptrenda•1h ago•4 comments

Life in Hitler's Capital

https://www.newyorker.com/magazine/2026/03/16/stay-alive-berlin-1939-1945-ian-buruma-book-review
2•mitchbob•1h ago•1 comments
Open in hackernews

Programming from the Ground Up [pdf] (2003)

https://download-mirror.savannah.gnu.org/releases/pgubook/ProgrammingGroundUp-1-0-booksize.pdf
4•ibobev•10mo ago

Comments

uticus•10mo ago
> At the end of them you can still ask "how does the computer really work?" and not have a good answer. They tend to pass over topics that are difficult even though they are important. I will take you through the difficult issues because that is the only way to move on to masterful programming

> This book teaches assembly language for x86 processors and the GNU/Linux operating system. Therefore we will be giving all of the examples using the GNU/Linux standard GCC tool set.

interesting, close to the machine to teach how the machine works while also pulling in programming concepts.

> Thus, programming is not as much about communicating to a computer as it is communicating to those who come after you.

100% - unfortunately the content is light or non-existent on concepts i would say are essential to this part of programming, like:

- how to set up code to be easily maintained

- how to navigate code from others, especially those who don't think like you

- how to collaborate with others to create a program as a team

- etc

...would be interesting to see how the author would pair these concepts with x86 assembler examples.