frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I made a social accountability app to make me ship

https://www.shipstreak.fyi/
1•Cbagenal•5m ago•1 comments

Google Is Using Nvidia's Playbook to Build a Rival AI Chip Business

https://www.wsj.com/tech/ai/google-is-using-nvidias-playbook-to-build-a-rival-ai-chip-business-1e...
1•gmays•6m ago•0 comments

Artificial

https://www.inkandswitch.com/tangents/artificial/
2•FelipeCortez•7m ago•0 comments

35°C Wet-Bulb – Narration of Robinson's 'The Ministry for the Future' Opening

https://www.youtube.com/watch?v=hXTbfBoRnao
1•SpiralLibrarium•13m ago•0 comments

Show HN: Souso – plan your week, fill your AH/Jumbo basket (MEGATHON Amsterdam)

https://souso.app
3•ntorresdev•16m ago•1 comments

Taste turns your Git history into enforceable coding judgment

https://github.com/dvcoolarun/taste-ai
1•dvcoolarun•16m ago•0 comments

Chrome Breaks Records Again on Speedometer 3.1 and Jetstream 3

https://blog.google/chromium/a-double-victory-for-web-speed-chrome-breaks-records-again-on-speedo...
4•gurgunday•17m ago•1 comments

Secure Boot certificate changes in 2026: Guidance for RHEL environments

https://developers.redhat.com/articles/2026/02/04/secure-boot-certificate-changes-2026-guidance-r...
1•Bender•18m ago•1 comments

Brain the Size of a Planet: Are LLMs Thonking Too Hard?

https://parsiya.net/blog/llm-thonking/
1•gmays•18m ago•0 comments

Show HN: Autolectures – lecture videos from prompts with Remotion

https://www.holma.io/blog/posts/autolectures
3•lapurita•20m ago•0 comments

ECBSV

https://www.ssa.gov/dataexchange/eCBSV/index.html
1•mooreds•20m ago•0 comments

Erasing Existentials

https://wolfgirl.dev/blog/2026-05-20-erasing-existentials/
2•birdculture•27m ago•0 comments

Show HN: Exploring a More Pythonic AWS SDK

https://github.com/kap-sh/aws-sdk-python
2•karpetrosyan•28m ago•0 comments

AI Boom Hits Labor Market Reality Check

https://fivetakes.news/workers-are-emerging-as-the-next-big-ai-logjam
1•mmeirovich•28m ago•1 comments

Claude Guillemot: Ubisoft founder killed in plane crash

https://news.sky.com/story/claude-guillemot-ubisoft-founder-killed-in-plane-crash-13556248
1•austinallegro•29m ago•0 comments

Show HN: Scalable reversi – infinite undo available via a1 style

https://h1yapp.com/en/scripting/pwa/scalablereversi/
1•h1yapp•30m ago•0 comments

Apple Internals: Swift in the Kernel

https://blog.calif.io/p/apple-internals-swift-in-the-kernel
2•haeseong•32m ago•0 comments

Robotics Teams Are Rebuilding the Data Stack from Scratch

https://rerun.io/blog/data-layer-tax
2•Tycho87•32m ago•0 comments

I was wrong about the Midjourney ultra-sound scanner

https://twitter.com/MattZirwas/status/2068365802491834541
4•MrBuddyCasino•34m ago•0 comments

Backtest Is Lying to You

https://moai.studio/blog/posts/your-backtest-is-lying.html
3•ionwake•35m ago•0 comments

How to Build a Marketplace Startup That Solves the Chicken-and-Egg Problem

https://startupfortune.com/how-to-build-a-marketplace-startup-that-solves-the-chicken-and-egg-pro...
2•insanetech•35m ago•0 comments

Why the Cookbook Endures

https://tastecooking.com/why-the-cookbook-endures/
3•Tomte•38m ago•0 comments

Electric air taxis are stuck in the courtroom

https://www.theverge.com/column/950975/electric-air-taxis-lawsuits
3•Brajeshwar•38m ago•1 comments

Backporting bug fixes is dead, Project Valkey now sends in the bots

https://thenewstack.io/valkey-ai-backporting-agents/
2•Brajeshwar•39m ago•0 comments

Linux '95

https://www.linuxjournal.com/article/2682
2•theanonymousone•39m ago•0 comments

Vulgar Materialism

https://borretti.me/article/on-vulgar-materialism
3•Tomte•39m ago•0 comments

Show HN: Teach your kids absolute (perfect) pitch

https://github.com/paytonjjones/bsharp
3•paytonjjones•40m ago•0 comments

Printing Gaussian Splats

https://www.patreon.com/DanyBittel/posts/printing-splats-161333338
4•ilnmtlbnm•41m ago•0 comments

Show HN: TermType – a terminal typing game where words fall like Space Invaders

https://github.com/GiovanniCst/termtype
3•J_cst•41m ago•0 comments

Anthropic to Require ID Verification for Certain Capabilities Starting July 8

https://old.reddit.com/r/ClaudeAI/comments/1ubm53n/official_anthropic_to_require_identity/
56•bathory•45m ago•33 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.