frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Qwen3.5-LiveTranslate: From Sound to Sight, from Word to Right

https://qwen.ai/blog?id=qwen3.5-livetranslate
1•ilreb•43s ago•0 comments

I am not a Software Engineer

https://huronbikes.mataroa.blog/blog/i-am-not-a-software-engineer/
1•l0b0•2m ago•0 comments

Understanding the Garbage Collector

https://ocaml.org/docs/garbage-collector
1•jkxyz•3m ago•0 comments

"Antarctica" – Fiction; the Yale Review

https://yalereview.org/article/jen-silverman-antarctica
1•everybodyknows•4m ago•0 comments

Show HN: DDS Vibe Academy – 31 free AI coding masterclasses, built by AI agents

1•robert_ddsbos•5m ago•0 comments

US transportation bill would add a $130 annual fee for EV drivers

https://arstechnica.com/cars/2026/05/bipartisan-bill-in-congress-includes-130-annual-ev-registrat...
1•logickkk1•7m ago•0 comments

Use Grok in OpenClaw

https://x.ai/news/grok-openclaw
1•surprisetalk•7m ago•0 comments

"How We Think" by John Dewey [pdf]

https://bef632.wordpress.com/wp-content/uploads/2015/09/dewey-how-we-think.pdf
2•baxtr•8m ago•0 comments

Tiny Basic feels like a dead albatross around my neck (1975)

https://archive.org/details/dr_dobbs_journal_vol_01
1•robin_reala•9m ago•0 comments

Most AI agent papers stack one LLM with a vector store, we flipped it

https://sbarron.com/writing/substrate-is-the-body
2•iampneuma•10m ago•1 comments

Solving the "Zork" Mystery

https://www.dpolakovic.space/blogs/zork-part2
1•dpola•11m ago•1 comments

LibrePCB 2.1 with cross-probing, net highlighting, UI themes and more

https://librepcb.org/blog/2026-05-19_release_2.1.0/
1•rnestler•11m ago•0 comments

Show HN: ECD++ 2026.3.10 Is Released

https://github.com/nbauma109/ecd/releases/tag/2026.3.10
1•nbauma109•13m ago•0 comments

Show HN: 5 Minute Frenzy – free multiplication practice game for kids

https://5minutefrenzy.com
1•carvil•13m ago•0 comments

'Obvious markers of AI': doubts raised over winner of short story prize

https://www.theguardian.com/books/2026/may/19/commonwealth-short-story-prize-winner-doubts-ai-art...
4•n1b0m•14m ago•1 comments

LiveFoldersFS – Reactive Filesystem Abstraction

https://www.livefoldersfs.org
2•loterio•14m ago•1 comments

OpenAI Guaranteed Capacity

https://openai.com/business/guaranteed-capacity/
2•louiereederson•14m ago•1 comments

Tesla's lithium refinery discharges 231,000 gallons of polluted wastewater a day

https://www.autonocion.com/us/tesla-lithium-refinery-texas/
66•atombender•15m ago•13 comments

Show HN: HypergraphZ – directed hypergraph library in Zig with Python bindings

https://github.com/yamafaktory/hypergraphz
1•yamafaktory•15m ago•0 comments

MailFlow – self-hosted email client with threading, mobile swipe, and IMAP/OAuth

https://github.com/maathimself/mailflow
1•goldfish8543•16m ago•0 comments

ACSM Publishes Updated Resistance Training Guidelines

https://acsm.org/resistance-training-guidelines-update-2026/
1•Tomte•16m ago•0 comments

The tool that made our AI agent better at using its tools

https://www.kapa.ai/blog/the-tool-that-made-our-ai-agent-better-at-using-its-tools
2•emil_sorensen•17m ago•0 comments

Sykes-Picot and Balfour Still Haunt the Modern Middle East

https://www.thefridaytimes.com/16-May-2026/cartographers-catastrophe-sykes-picot-balfour-still-ha...
1•bryanrasmussen•19m ago•1 comments

European Skills, Competences, Qualifications and Occupations (ESCO)

https://esco.ec.europa.eu/en/about-esco/escopedia/escopedia/european-e-competence-framework-e-cf
1•teekert•20m ago•0 comments

Glacier-free topography reveals potential future lakes in ice-covered terrain

https://www.nature.com/articles/s41467-026-72548-9
1•bryanrasmussen•21m ago•1 comments

Show HN: I made a 2D Lua game engine using Rust with code and asset live reload

https://usagiengine.com/
1•brettcodes•21m ago•0 comments

Gemini Omni

https://geminiomni.studio
1•sarkory•21m ago•0 comments

Show HN: Yt-x v0.8.0 – Browse, play, and download YouTube from the terminal

https://github.com/Benexl/yt-x
2•Benex254•23m ago•0 comments

Show HN: ExtraBrain - local-first desktop copilot for live calls

1•andrewsokolov•23m ago•1 comments

Ternative – C++/CUDA inference engine for ternary LLMs with runtime LoRA

https://github.com/michelangeloromerochisco/ternative
2•michelangeloro•24m 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•1y ago

Comments

uticus•1y 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.