frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Skip drip emails when recipient has replied in Gmail

1•nishiohiroshi•34s ago•0 comments

California vet clinic warns of AI scam targeting lost dogs

https://ktla.com/news/california/lost-dog-ai-scam-fresno/
1•Bender•1m ago•0 comments

Externalizing Developers' Intuition as Code

https://github.com/elbanic/dev-sentinel
1•elbanic•2m ago•1 comments

Synchronized MIMD Computing [pdf]

https://people.csail.mit.edu/bradley/papers/Kuszmaul94.pdf
1•luu•4m ago•0 comments

Ask HN: Which nickname will President Trump choose for Claude?

2•thomassmith65•4m ago•0 comments

LXD 6.7 Released with AMD GPU Passthrough Support

https://www.phoronix.com/news/LXD-6.7-Released
1•Bender•4m ago•0 comments

Edge Case Poisoning

https://buttondown.com/hillelwayne/archive/edge-case-poisoning/
1•azhenley•5m ago•0 comments

Gnome GitLab Redirecting Some Git Traffic to GitHub for Reducing Costs

https://www.phoronix.com/news/GNOME-GitHub-GitLab-Redirect
1•Bender•6m ago•0 comments

Federal panel behind cancer screening recommendations hasn't met in one year

https://www.nbcnews.com/health/health-news/federal-panel-cancer-screening-recommendations-hasnt-m...
1•brandonb•8m ago•0 comments

Programmers on the Verge of Extinction

https://stevedylan.dev/posts/programmers-on-the-verge-of-extinction/
2•stevedsimkins•14m ago•0 comments

$500K exit approved for Bay Area CEO days before harassment findings surface

https://www.sfgate.com/bayarea/article/exit-bay-area-ceo-harassment-21943048.php
1•randycupertino•14m ago•1 comments

Heart attack deaths are rising in young adults. Here's why

https://www.empirical.health/blog/heart-attacks-rising-young-people/
1•brandonb•15m ago•0 comments

Show HN: Lneto – IEEE802.3/IP/TCP/HTTP in 8kB of RAM in Go

https://github.com/soypat/lan8720
1•soypat•16m ago•0 comments

Ask HN: 2026, where is the best place in the world to create a startup?

2•wewewedxfgdf•16m ago•1 comments

A tool to launch your OpenClaw in just 1 minute

https://clawhost.chat
1•vadimen•19m ago•1 comments

OpenAI is negotiating a deal with The Pentagon

https://fortune.com/2026/02/27/openai-in-talks-with-pentagon-after-anthropic-blowup/
3•doener•19m ago•1 comments

Not Found

https://www.anthropic.com/news/statement-comments-secretary-war
16•surprisetalk•19m ago•3 comments

Super Editor – Atomic file editor with automatic backups (Python and Go)

2•larryste•21m ago•0 comments

USA Designates Anthropic a Supply Chain Risk

https://www.pbs.org/newshour/politics/trump-orders-federal-agencies-to-stop-using-anthropic-tech-...
5•ssutch3•21m ago•1 comments

Show HN: I built a 0-CPU desktop app to track LLM limits,Python/DjangoPyWebView

https://github.com/PeterJFrancoIII/Antigravity-Model-Reset-Timer
2•Viper117•23m ago•0 comments

DeepSeek's Dualpath Paper explained with animations

https://mesuvash.github.io/blog/2026/dualpath/
2•mesuvash•23m ago•0 comments

Golem

https://en.wikipedia.org/wiki/Golem
2•downboots•24m ago•0 comments

Replace Resend dry-run emails with Gmail drafts for manual review

1•nishiohiroshi•24m ago•0 comments

Rubin Observatory has started paging astronomers 800k times a night

https://www.scientificamerican.com/article/rubin-observatory-has-started-paging-astronomers-800-0...
3•Brajeshwar•26m ago•1 comments

Show HN: Crypto volume anomaly scanner – a token at 127x its daily market cap

https://frog03-20494.wykr.es
1•agenthustler•26m ago•0 comments

A star 1,540 times the size of our sun transform into a hypergiant

https://www.space.com/astronomy/stars/astronomers-just-watched-a-star-1-540-times-the-size-of-our...
1•Brajeshwar•26m ago•0 comments

Keen bosses mistakes and a looming threat

https://www.theguardian.com/technology/2026/feb/26/workers-training-ai-to-do-their-jobs
1•Brajeshwar•27m ago•0 comments

The Armchair Historian: Retiring End of 2026 – My Last Year on YouTube [video]

https://www.youtube.com/watch?v=kbrjnNq3aoQ
2•mmarian•27m ago•0 comments

Ask HN: How do I use AI as a tool if some answers are objectivity incorrect?

2•truthbe•28m ago•0 comments

Will AI Replace You? – Roast My Career

https://candidate.perfectly.so/roast
2•z-mach9•31m 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.