frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bluetooth High Data Throughput

https://www.bluetooth.com/blog/bluetooth-le-will-soon-get-a-major-boost-in-speed-introducing-blue...
1•ledoge•1m ago•0 comments

The Catherine Project

https://catherineproject.org/
1•taylorlapeyre•1m ago•0 comments

Show HN: Captionrich – Edit your video with one click

https://captionrich.com
1•techtasium•2m ago•0 comments

Launch HN: EdotEnv (YC S26) – Quant Trading RL Envs to Teach LLMs Research

https://edotenv.com/
4•Mzzzzz•6m ago•0 comments

Six months prior to the September 11 attacks, The Lone Gunmen

https://en.wikipedia.org/wiki/The_Lone_Gunmen_(TV_series)
3•xkcd1963•7m ago•0 comments

LLM Arena

https://arena.ai/
2•simonebrunozzi•8m ago•0 comments

Bending Spoons acquires Airtable for $1.25B

https://www.businesswire.com/news/home/20260730994716/en/Bending-Spoons-has-entered-into-a-defini...
4•TWDan•8m ago•0 comments

I Became the Honest Broker

https://www.honest-broker.com/p/how-i-became-the-honest-broker-c04
2•paulpauper•9m ago•0 comments

Creating, Copying, and Remixing in the Age of AI

https://molochinations.substack.com/p/creating-copying-and-remixing-in
3•domhudson•10m ago•1 comments

Why Sheep Need Pigs in Sheepdog's Clothing

https://www.overcomingbias.com/p/why-sheep-need-pigs-in-sheepdogs
2•paulpauper•10m ago•0 comments

Indirect Lessons from Human Alignment

https://dynomight.substack.com/p/human-alignment
2•paulpauper•10m ago•0 comments

AI data-centre race builds $1T lease burden for Big Tech

https://www.reuters.com/business/retail-consumer/ai-data-centre-race-builds-1-trillion-lease-burd...
3•mapping365•11m ago•0 comments

Waymo – Dallas Open to All

https://waymo.com/blog/shorts/dallas-open-to-all/
4•xnx•12m ago•0 comments

Security Is Hard, Y'all

https://textslashplain.com/2026/08/04/security-is-hard-yall/
8•kevincox•12m ago•0 comments

Pachube – a detailed history of the early years

https://pachube.haque.co.uk/about/
2•adunk•14m ago•0 comments

Drug Discovery Has No Magic Wands

https://deepphenotype.substack.com/p/drug-discovery-has-no-magic-wands
2•geneticdrifts•16m ago•0 comments

The Golden Age of British Ice Cream

https://www.vittlesmagazine.com/p/the-golden-age-of-british-ice-cream
2•bryanrasmussen•17m ago•0 comments

Choose by Probability, Not by Expectation

https://win-vector.com/2026/08/04/choose-by-probability-not-by-expectation/
2•jmount•17m ago•0 comments

Unpacking ChatGPT Work

https://www.latent.space/p/unpacking-chatgpt-work
2•shloked•19m ago•0 comments

Establishing a Career Framework

https://www.jw.pe/blog/establishing-a-career-framework/
2•jwpe•19m ago•0 comments

Cloud computing giant Oracle Corp is on the cusp of a junk-grade credit rating

https://www.reuters.com/business/oracle-corp-goes-high-stakes-ratings-gamble-ai-strategy-2026-08-04/
2•mapping365•21m ago•0 comments

Elon Musk: In 36 months, the cheapest place to put AI will be space [video]

https://www.youtube.com/watch?v=BYXbuik3dgA
3•simonebrunozzi•23m ago•3 comments

iMessage-Exporter: Reverse Engineering Apple's Typedstream Format

https://chrissardegna.com/blog/reverse-engineering-apples-typedstream-format/
2•devy•24m ago•0 comments

Mathematicians Need to Act

https://tasmin.substack.com/p/mathematicians-need-to-act
4•reasonableklout•27m ago•1 comments

Artificial Analysis Endpoint Accuracy Index

https://twitter.com/ArtificialAnlys/status/2084702191466725669
2•tosh•28m ago•0 comments

Why coding agents belong in remote sandboxes

https://www.superconductor.com/blog/remote-sandboxes-agent-security
6•sergeyk•29m ago•0 comments

The Sound of Inevitability

https://www.panoptica.com/the-sound-of-inevitability/
2•WaitWaitWha•30m ago•1 comments

Blackmail Fail (2013)

https://gwern.net/blackmail
3•simonebrunozzi•31m ago•0 comments

Find Your Erdős Number

https://www.underleaf.ai/tools/erdos-number
2•gjuggler•31m ago•0 comments

PgColumnar: A Columnar database extension for Postgres 15

https://commandprompt.github.io/pgcolumnar/
3•linuxhiker•34m 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.