frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sqlite.ai Pricing

https://www.sqlite.ai/pricing
1•peter_d_sherman•37s ago•0 comments

Show HN: Claude MIDI Twister – An agent visualizer for a DJ MIDI controller

https://www.dylanfisher.com/claude-midi-twister/
1•dylanfisher•1m ago•0 comments

Ask HN: What do you want in a font for programming?

1•_century•1m ago•0 comments

The Nudge Unit (UK Internal Propaganda Operations)

https://www.pimlicojournal.co.uk/p/inside-the-nudge-unit
1•barry-cotter•2m ago•0 comments

Show HN: A bookshelf you can share as a link

https://digitalshelf.me/cip
1•ciprian0•4m ago•0 comments

Typistify: A cross-platform, offline-first Typst editor

https://github.com/typstify/typstify
1•oogali•7m ago•0 comments

Show HN: GG Translator – Turn in-game flaming into friendly language

https://ggtranslator.com/
1•mcadenhe•8m ago•1 comments

Show HN: Reading Pacer – A "Struggle Detector" for kids learning to read

https://readingpacer.com/
1•ataturkle•9m ago•0 comments

OpenAI serves more than one billion active users

https://openai.com/index/building-abundant-intelligence/
3•hallvard•10m ago•1 comments

Best free Text to Speech at the time

https://neuronai.uz/en/tts/
1•yutabek•10m ago•0 comments

How to Confuse Some SSH Bots

https://nochan.net/b/Internet-Crap/20260108-Confuse-Some-SSH-Bots/
1•Bender•13m ago•0 comments

Ask HN: What's your monthly personal AI budget?

2•thatgloomyguy•13m ago•2 comments

Designing Icons

https://m3.material.io/styles/icons/designing-icons
1•Cider9986•13m ago•0 comments

QM: A multiplayer agent harness for work. In Slack and on the web.

https://qm.ycombinator.com/index.html
1•taubek•14m ago•0 comments

We've moved from income world to wealth world

https://www.ft.com/content/6a35508c-c0bd-4000-81b3-7c7383fb24fd
1•julianpye•14m ago•0 comments

$0.26 DeepSeek V4 Flash 0731 ties $5.01 GPT-5.6 run on Agentic Memory Benchmark

https://atmbench.github.io/leaderboard.html
1•howardme1•16m ago•0 comments

Samsung announces FDA-cleared smart ring for sleep apnea risk

https://www.mobihealthnews.com/news/samsung-announces-fda-cleared-smart-ring-sleep-apnea-risk
2•brandonb•16m ago•0 comments

Lookup Tables Could Cut AI Energy Costs

https://spectrum.ieee.org/ai-energy-weightless-neural-networks
1•rbanffy•17m ago•0 comments

How Donald Trump Silenced the Voice of America

https://www.newyorker.com/news/annals-of-communications/how-donald-trump-silenced-the-voice-of-am...
1•firefax•17m ago•0 comments

Adam and AdamW: adaptive optimisation and weight decay

https://idlemachines.co.uk/essays/adam-adamw
1•smaddrellmander•18m ago•0 comments

F-16 thrust-vectoring nozzle now being used for an AI-piloted VTOL fighter

https://shield.ai/shield-ai-and-ge-aerospace-light-off-x-bat-engine-completing-thrust-vectoring-n...
1•r2sk5t•20m ago•0 comments

Big Tech Holds $2.4T of Spending Commitments for AI Boom

https://www.bloomberg.com/news/articles/2026-07-31/big-tech-holds-2-trillion-of-spending-commitme...
3•mapping365•20m ago•2 comments

I use AI on this blog

https://www.gilesthomas.com/2026/07/ai-use
1•gpjt•21m ago•1 comments

Nano Banana 2 removed from Google Earth

https://www.digitaldigging.org/p/nano-banana-2-removed-from-google
2•taubek•22m ago•0 comments

Metis: Memory Foundation Model

https://arxiv.org/abs/2607.26760
1•mfiguiere•22m ago•0 comments

Industrial Biomanufacturing

https://startupwiki.substack.com/p/analysis-industrial-biomanufacturing
1•skiski•23m ago•0 comments

MCP is going stateless: What the new spec means for AI agents

https://newrelic.com/blog/ai/mcp-is-going-stateless
2•inferhaven•23m ago•2 comments

AI Dominates the Microsoft Conversation, but Not the Company's Business

https://www.nextplatform.com/cloud/2026/07/31/ai-dominates-the-microsoft-conversation-but-not-the...
2•rbanffy•23m ago•0 comments

The story we don't tell about how this country was founded [audio]

https://www.npr.org/2026/07/03/nx-s1-5869798/the-story-we-dont-tell-about-how-this-country-was-fo...
1•nkzednan•23m ago•0 comments

Claude vs. ChatGPT: Which AI Security Incident Was Worse

https://industrycontents.com/claude-vs-chatgpt-ai-security-incident-worse/
2•ticust•23m ago•0 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.