frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How to have a macOS devcontainer in VS Code?

1•sroussey•36s ago•0 comments

The Exception Butterfly

https://valhovey.github.io/blog/the-exception-butterfly
1•speleo•2m ago•0 comments

Waiting for Postgres 19: Reduced Timing Overhead for EXPLAIN ANALYZE with RDTSC

https://pganalyze.com/blog/5mins-postgres-19-reduced-timing-overhead-explain-analyze
1•lfittl•2m ago•0 comments

1 in 30 – Artemis, Greatness, and Risk

https://1517.substack.com/p/1-in-30-artemis-greatness-and-risk
1•crescit_eundo•3m ago•0 comments

AI will test governments on jobs, training, and public trust

https://www.hoover.org/news/ai-will-test-governments-jobs-training-and-public-trust-hoover-panels...
1•hhs•4m ago•0 comments

Show HN: AMBR.music – Patreon meets TikTok for musicians

https://app.ambr.music/
1•stamc•4m ago•0 comments

Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders

https://www.washingtonpost.com/technology/2026/04/11/anthropic-christians-claude-morals/
1•edwardsrobbie•6m ago•0 comments

How to Switch AI Chatbots and Why You Might Want To

https://www.wsj.com/tech/ai/how-to-switch-ai-chatbots-and-why-you-might-want-to-8aaccfd4
1•nanfinitum•8m ago•1 comments

How to break America's great scientific stagnation

https://www.city-journal.org/article/trump-national-science-foundation-nominee-jim-oneill
1•hhs•8m ago•0 comments

Telegram as an Agent Control Plane

https://vita-reports.ham.xyz/s/6020b089f389
1•zackham•10m ago•0 comments

Trump wants to cover a White House office building with 'magic paint.'

https://www.cnn.com/2026/04/11/politics/eisenhower-executive-office-building-paint-trump
1•Cider9986•11m ago•0 comments

What Is in Road Flares?

https://www.spiegl.org/rocket/flare/flare.html
1•hyperific•12m ago•0 comments

Tinker: Play with AI, bring your ideas to life

https://www.shopify.com/news/introducing-tinker
2•myth_drannon•16m ago•0 comments

Sent ChatGPT audio file of FART sound effects, asked what it thinks of my music

https://twitter.com/i/status/2042445078417834043
2•lando2319•18m ago•0 comments

Never been sick with the flu? Now scientists may know why

https://www.npr.org/2026/04/03/nx-s1-5763891/flu-resistance-peptide-sick-antiviral
1•gmays•21m ago•0 comments

Bessent Urgently Summons Bank CEOs over Anthropic's New AI

https://www.youtube.com/watch?v=B2WsfcwfEgs
2•OhMeadhbh•25m ago•1 comments

AI for Systems: Using LLMs to Optimize Database Query Execution

https://www.together.ai/blog/using-llms-to-optimize-database-query-execution
1•matt_d•26m ago•0 comments

Side projects: perché falliscono (e come evitarlo davvero)

https://donatodelpeschio.it/blog/side-projects-perche-falliscono-come-evitarlo
1•donnyBlanko•30m ago•0 comments

Cyber 2028

https://www.analogue.computer/blog/cyber-2028
3•zeyu1337•39m ago•1 comments

It Has Always Been About Data, All the Way Down

https://khayyamguliyev.substack.com/p/it-has-always-been-about-data-all
3•khguliye•40m ago•0 comments

The Closing of the Frontier

https://tanyaverma.sh/2026/04/10/closing-of-the-frontier.html
4•FrasiertheLion•44m ago•0 comments

Show HN: 2048 with a Leaderboard

https://www.the2048league.com/
2•khet•45m ago•0 comments

Deep Work on macOS Starts with Context, Not Blockers

https://www.brnsft.com/blog/how-to-set-up-a-deep-work-system-on-mac-from-scratch
3•robertohanas•49m ago•0 comments

How Transistors Work (1995)

http://amasci.com/amateur/transis.html
3•downbad_•53m ago•1 comments

Bringing Rust to the Pixel Baseband

https://security.googleblog.com/2026/04/bringing-rust-to-pixel-baseband.html
2•dochtman•54m ago•0 comments

The Making of Dark Castle

https://www.gamedeveloper.com/business/the-making-of-i-dark-castle-i-an-excerpt-from-the-secret-h...
2•AntiRush•56m ago•0 comments

Strategy Letter V (2002)

https://www.joelonsoftware.com/2002/06/12/strategy-letter-v/
2•crescit_eundo•1h ago•0 comments

A Fake Screen Fixed My macOS Space Switcher

https://jorviksoftware.cc/notes/2026/04/11/when-the-stars-align-redux
2•jonathan_hollin•1h ago•0 comments

The Brutal Reality of Today's Job Market 2026

https://maxjobintel.online/
3•videobroker•1h ago•0 comments

Ukraine and Weapons of Mass Destruction

https://en.wikipedia.org/wiki/Ukraine_and_weapons_of_mass_destruction
5•chistev•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•11mo ago

Comments

uticus•11mo 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.