frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why Capitalism Can't Survive AI

https://www.newconsensus.com/blog/series/why-capitalism-cant-survive-ai
1•kjohnston71•42s ago•0 comments

Bolzano: Case Studies in LLM-Assisted Mathematical Research

https://arxiv.org/abs/2604.16989
1•MemTensor•1m ago•1 comments

Instacart co-founder launches hedge fund backing AI agents

https://www.privatebankerinternational.com/news/instacart-co-founder-launches-hedge-fund-backing-...
1•nlpnerd•5m ago•0 comments

Temperature Trends in India

https://www.dataforindia.com/temperature-trends-in-india/
1•neehao•6m ago•0 comments

AdaExplore: Search for Efficient Kernel Generation

https://stiglidu.github.io/AdaExplore/
1•matt_d•13m ago•0 comments

Sparkit: A Research Agent in an API

https://sparkit.science
1•JLSteenwyk•15m ago•0 comments

Britain Has a Tiny-Window Epidemic, and Old Ladies Are to Blame

https://www.wsj.com/world/britain-has-a-tiny-window-epidemic-and-old-ladies-are-to-blame-9ece9791
3•cwwc•24m ago•0 comments

$0.5 solve GPQA, top 5 worldwide

https://github.com/butereleaou-pixel/Compare_Hotblaz
1•markliuhotblaz•28m ago•1 comments

Show HN: Claude Exporter – Export Chats to PDF/Word/Notion

https://chromewebstore.google.com/detail/claude-exporter-claude-ch/mhckealbblinipeplfddmbcohdidkfjf
4•nongquy•30m ago•1 comments

(One) Good AI Is Here – Anil Dash

https://www.anildash.com/2026/04/28/one-good-ai-is-here/
1•tambourine_man•33m ago•0 comments

The Lost Idealism of Heartland Rock

https://www.theatlantic.com/magazine/2026/06/springsteen-petty-politics-osmon/686936/
1•petethomas•34m ago•0 comments

GitHub – Incomplete pull request results in repositories

https://www.githubstatus.com/incidents/x69zbgdyfzg0
1•lawgimenez•36m ago•0 comments

A Return to Code

https://nav.al/code
1•swolpers•37m ago•0 comments

FDA grants quick review for 3 psychedelic drug trials

https://www.nbcnews.com/health/health-news/fda-psychedelic-drugs-psilocybin-methylone-review-depr...
1•gmays•38m ago•0 comments

An Actually Intuitive Explanation of the Oberth Effect

https://outsidetheasylum.blog/an-actually-intuitive-explanation-of-the-oberth-effect/
1•virgildotcodes•39m ago•0 comments

Demo: Animated Favicon

https://favicon.im/blog/animated-favicon-live-demo
1•Airyisland•39m ago•1 comments

Wikipedia: Articles for Deletion/GitHub (2008)

https://en.wikipedia.org/wiki/Wikipedia:Articles_for_deletion/GitHub
1•riffic•40m ago•0 comments

A 3D Flappy Bird side-scroller game built with DeepSeek V4 Pro

http://www.annajc.com/
1•guiguan•42m ago•1 comments

Recycling plastic waste with compression molding

https://hackaday.com/2026/04/28/recycling-pla-and-other-plastic-waste-with-compression-molding/
2•rickcarlino•44m ago•0 comments

Goldman Staff in Hong Kong Lose Access to Anthropic's Claude

https://www.bloomberg.com/news/articles/2026-04-29/goldman-staff-in-hong-kong-lose-access-to-anth...
2•kamaraju•45m ago•0 comments

Google API change leads to $67k Gemini bill in 19 hours

https://discuss.ai.google.dev/t/unexpected-67k-gemini-api-spike-in-19-hours-2016-firebase-provisi...
2•StevenThompson•51m ago•0 comments

Multi-tenant file storage for developers. Built for SaaS teams

https://tenantbox.dev
1•omollohemstone•52m ago•0 comments

Help a fellow dev on AI-localization?

2•mightyAlien•53m ago•1 comments

39 Years Ago, Steve Jobs Made a Emotional Decision. How It Led to Success

https://www.inc.com/bill-murphy-jr/39-years-ago-steve-jobs-made-a-very-emotional-decision-heres-h...
1•paulpauper•55m ago•0 comments

HUD Says Realtors Can Now Speak the Truth

https://marginalrevolution.com/marginalrevolution/2026/04/hud-says-its-legal-to-tell-the-truth.html
1•paulpauper•57m ago•0 comments

Spotify Shares Fall Most Since 2022 on AI Fears [video]

https://www.youtube.com/watch?v=pXgf7uZT7OU
1•mgh2•1h ago•0 comments

A Post-Regression World

https://signalintent.net/2026/04/28/a-post-regression-world/
1•tokonomy_dev•1h ago•0 comments

Is any one using ruflo?

https://github.com/ruvnet/ruflo
1•chunpaiyang•1h ago•1 comments

Show HN: mac-screen-search: CLI find, highlight, redact text on screen, in files

https://github.com/jftuga/mac-screen-search
1•jftuga•1h ago•0 comments

Hackers steal nearly $300M in biggest DeFi exploit of 2026

https://seekingalpha.com/news/4576371-hackers-steal-nearly-300m-in-biggest-defi-exploit-of-2026
2•mgh2•1h 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.