frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The State of the AI Economy

https://www.exponentialview.co/p/the-state-of-the-ai-economy
1•hunglee2•51s ago•0 comments

Updated Xbox Console Prices

https://news.xbox.com/en-us/2026/06/25/xbox-console-price-update/
1•0xedb•59s ago•0 comments

Cellebrite said it cut off Russia, but Russia used its tools anyway

https://techcrunch.com/2026/06/25/cellebrite-said-it-cut-off-russia-but-russia-used-is-tools-anyway/
1•Brajeshwar•1m ago•0 comments

Show HN: Better PDF Presentations (+Typst)

https://presio.xyz
1•armstrongb•3m ago•0 comments

How we made WINDOW JOIN parallel and vectorized

https://questdb.com/blog/window-join-parallel-vectorized/
1•tosh•4m ago•0 comments

AOL was down (1996) (2026)

https://ngrok.com/blog/aol-was-down-1996
1•birdculture•5m ago•0 comments

Carl de Marcken: Inside Orbitz (2001)

https://www.paulgraham.com/carl.html
1•wglb•5m ago•0 comments

Genetic diversity of late Neanderthals in northwestern Europe

https://www.nature.com/articles/s41586-026-10625-1
1•Jimmc414•5m ago•0 comments

The AI Memory Problem Nobody Is Incentivized to Solve

https://www.indiehackers.com/post/the-ai-memory-problem-nobody-is-incentivized-to-solve-9c294bdcaa
1•metaopai•7m ago•0 comments

Every Homo Naledi we know of is female, and the implications are fascinating

https://arstechnica.com/science/2026/06/every-homo-naledi-we-know-of-is-female-and-the-implicatio...
1•Jimmc414•7m ago•0 comments

New credit card sized tracking label could help solve rising cargo theft

https://techcrunch.com/2026/06/24/this-new-tracking-label-could-help-solve-cargo-theft/
1•Vaslo•8m ago•0 comments

The U.S. Strongarms Polestar Out of the American EV Market

https://insideevs.com/news/799796/polestar-exits-us-market-authorization-denied/
1•testing22321•8m ago•1 comments

Show HN: Engineer AI system full DataIQ pipeline choice u model Start training

https://zunagen.com/
1•Ouasif•9m ago•0 comments

LAUSD bans screen time before second grade

https://www.latimes.com/california/story/2026-06-23/lausd-strict-school-screen-time-limits
1•cfowles•10m ago•0 comments

First-ever Code Red alert issued for heat in the Netherlands

https://nltimes.nl/2026/06/25/first-ever-code-red-alert-issued-heat-netherlands-40degc-tomorrow
2•bill38•12m ago•0 comments

DuckDB isn't just fast (2024)

https://csvbase.com/blog/6
2•tosh•12m ago•0 comments

Frankenstein Was a Warning, Not a Blueprint for AI

https://ideatrash.net/2026/04/frankenstein-was-a-warning-not-a-blueprint-for-ai.html
2•speckx•13m ago•0 comments

Framework's 10G Ethernet module exposes USB-C's complexity

https://www.jeffgeerling.com/blog/2026/framework-10g-ethernet-module-usb-c-complexity/
1•Brajeshwar•13m ago•0 comments

Show HN: TreasuryBench – an open benchmark for personal-finance AI advice

https://github.com/Treasury-Technologies-Inc/treasurybench
1•juneadkhan•17m ago•0 comments

Codex Security Plugin Quickstart

https://developers.openai.com/codex/security/plugin
3•vantareed•17m ago•0 comments

Goalkeepers beware: Trionda World Cup ball hits 'crisis' point at certain speed

https://www.theguardian.com/football/2026/jun/25/goalkeepers-beware-trionda-world-cup-ball-hits-c...
1•prmph•17m ago•1 comments

Bankruptcy Capitals of America: Where US Small Businesses Are Closing Fastest

https://samslist.com/blog/bankruptcy-capitals-of-america
2•eatonphil•18m ago•0 comments

Of Cats and Women

https://anthrozoology.acadiasi.org/wp-content/uploads/2022/11/Anthrozoology.pdf#page=159
1•jruohonen•18m ago•0 comments

The KIDS Act Would Require Age Checks to Get Online

https://www.eff.org/deeplinks/2026/06/kids-act-would-require-age-checks-get-online
1•iamnothere•19m ago•0 comments

British Police Built a Sprawling Crime-Prediction Machine

https://www.wired.com/story/british-police-built-a-sprawling-crime-prediction-machine-some-result...
3•g0xA52A2A•19m ago•1 comments

24 years today: "Dilemma" and the Nokia 9210 Communicator

https://hollawhenyougetthis.com/
1•jgrahamc•19m ago•0 comments

Dwarf Fortress might reach version 1.0 on approximately May 8, 2055

https://old.reddit.com/r/dwarffortress/comments/1ufa97q/dwarf_fortress_might_finally_reach_100_fe...
1•danso•19m ago•0 comments

Find out which university degrees could earn you most across your lifetime (UK)

https://www.bbc.com/news/articles/c892dv0qy2jo
1•BeetleB•21m ago•1 comments

Incident review for TanStack NPM supply chain ransom incident

https://grafana.com/blog/post-incident-review-for-tanstack-npm-supply-chain-ransom-incident/
1•dboreham•22m ago•0 comments

Show HN: CI-medic – open-source AI triage for failed CI runs (any CI, any model)

https://github.com/alitariq4589/ci-medic
1•alitariq4589•22m 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.