frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Always Choose the Good Soap

https://sixcolors.com/post/2026/07/always-choose-the-good-soap/
1•RickJWagner•12s ago•0 comments

Show HN: Relaxingwith.me – Ambient sound mixer with an animated scene

https://relaxingwith.me
1•ahmettopal•39s ago•0 comments

Garden Reads – An offline e-reader with an on-device LLM that explains passages

https://gardenreads.app/
1•mihainid•1m ago•0 comments

Darktable

https://www.darktable.org/
2•siatko•2m ago•0 comments

As extreme heat grips the South and West

https://text.npr.org/nx-s1-5910515
1•mooreds•2m ago•0 comments

Show HN: PipeCrab – a Rust voice agent that runs multiple tasks at once

https://github.com/SheaHawkins/pipecrab
1•aerxes•2m ago•0 comments

Boring Tech May Become Irrelevant Tech

https://alexn.org/blog/2026/03/05/boring-tech-irrelevant/
1•speckx•2m ago•0 comments

Show HN: Wallfacer – A terminal session manager for Claude Code

https://github.com/pradipta/wallfacer
1•pradiptasarma•3m ago•0 comments

Rare Nintendo Famicombox retro consoles were discovered in a Japanese love hotel

https://www.engadget.com/2225874/rare-fully-functional-nintendo-famicombox-retro-consoles-were-di...
1•stasomatic•3m ago•0 comments

One failed WebRTC peer pinned a Tokio worker at 100% and took the server down

https://linggen.dev/blog/one-peer-starved-the-runtime
1•linggen•5m ago•0 comments

Mech. force destroy's cancer-driving mutant p53 (Open)

https://github.com/alikamp/p53-mechanical-selectivity
1•KauaiComPhysics•5m ago•0 comments

ToolsNow – 88 browser-only tools, nothing is uploaded

https://www.toolsnow.net/
1•Henr1ko•5m ago•0 comments

Software for One

https://www.ajwaxman.com/writing/software-for-one
2•awaxman11•5m ago•0 comments

Show HN: Free weather map with 25 model layers, live lightning and storm cells

https://www.wfy24.com/en/hyperion-map?lat=37.9321047&lon=23.7559673
2•weatherfun•6m ago•0 comments

Do We No Longer Care About the Code?

https://schalkneethling.com/posts/do-we-no-longer-care-about-the-code/
1•speckx•7m ago•0 comments

The poisoned pill that killed Greppr indexing

https://leadprompt.sh/a/738-The-poisoned-pill-that-killed-Greppr-indexing
1•saltysalt•7m ago•0 comments

When physicians and AI work together, who is accountable?

https://www.nature.com/articles/d41586-026-02315-9
2•sohkamyung•8m ago•0 comments

Emacs-Gnosis – Knowledge System for GNU Emacs

https://git.thanosapollo.org/emacs-gnosis/
1•Tomte•9m ago•0 comments

Deploying IPv6-first EKS on AWS: what still doesn't work, and what it saves

https://kb.isp6.net/how-we-built-isp6-ipv6-first-eks/
1•spidee-spiro•9m ago•0 comments

Ask HN: Crazy as a Service – does it exist?

1•Towaway69•12m ago•0 comments

AI News for Vibe Coders – Daily Brief (July 29, 2026)

https://ddsboston.com/blogs/vibe-code-academy/ai-news-for-vibe-coders-daily-2026-07-29
1•robert_dds•13m ago•0 comments

Fund Momentum MCP: Live VC Fund Data for AI Agents

1•darius88•13m ago•0 comments

Could the Most Radical Plane Design Since the Concorde Take on Boeing?

https://www.wsj.com/business/could-the-most-radical-plane-design-since-the-concorde-take-on-boein...
1•bookmtn•13m ago•0 comments

Show HN: Gpuinstances.net, historical tracking for GPU prices across providers

https://gpuinstances.net/
1•vorador•14m ago•0 comments

Pulse Path – a browser puzzle where placement is the only decision

https://pulsepathgame.netlify.app/
2•crysislol•15m ago•0 comments

Gowers: Thoughts about the Leiden Declaration

https://gowers.wordpress.com/2026/07/26/thoughts-about-the-leiden-declaration/
1•zaikunzhang•16m ago•0 comments

Show HN: Font Lab – live font swapping and text editing on your dev server

https://github.com/jmg698/Font-Lab
3•jmg698•17m ago•0 comments

Pareto Front

https://en.wikipedia.org/wiki/Pareto_front
1•binyu•22m ago•0 comments

Flickr iOS App Reverted

https://www.gyford.com/phil/writing/2026/07/28/flickr-ios-app-reverted/
1•speckx•23m ago•0 comments

Does SEO Still Generate Inbound Leads, or Did AI Search Break It?

https://cuescout.com/blog/does-seo-still-generate-inbound-leads
2•weeklyrunner•23m ago•2 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.