frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I open-sourced a small library for drawing SVGs progressively

https://www.npmjs.com/package/@penwell/draw-on
1•Pratiksingh067•3m ago•0 comments

I run a production AI app for €60 a month. Here is the actual bill.

https://tailstory-app.com/en/blog/what-production-ai-actually-costs
1•Mohsentr•4m ago•0 comments

Show HN: WebMCP Registry of Websites That Agents Can Use

https://www.wmcp.ai/
1•jusquan•4m ago•0 comments

Show HN: Groupicorn directory of IOP group therapy programs

2•cs1996•4m ago•0 comments

Ancient DNA reveals pervasive directional selection across West Eurasia

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

Code similarity detection using Tree-sitter

https://github.com/dsummersl/treepeat
1•91awebsi•6m ago•1 comments

ES Archive – a new memory system for AI, running natively on Mac

https://github.com/apocryphx/ES-Archive
1•ApocryphX•7m ago•0 comments

Claude Opus 5.5: Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/claude-opus-5-5
1•theanonymousone•8m ago•0 comments

Barbara Mazzolai Wants to Build a New Field of Robotics

https://spectrum.ieee.org/sustainability-robotics-barbara-mazzolai
1•SamuraiLion•9m ago•0 comments

Siri AI Settlement Website Now Live

https://www.macrumors.com/2026/09/20/siri-ai-settlement-website-now-live/
1•JumpCrisscross•9m ago•0 comments

Xeno-Interpretability: Investigating the Alien Minds of LLMs

https://arxiv.org/abs/2609.20408
1•potent_latent•9m ago•0 comments

Aging may be a program, not a breakdown

https://www.quantamagazine.org/why-aging-may-be-a-program-not-a-breakdown-20260814/
7•elo2000•11m ago•0 comments

We Rebuilt Jev's API on an Open Model and Used It to Play Doom

https://blocks.ai/blog/jev-open-model-doom
2•stephenblum•12m ago•1 comments

How do you best protect against copycats?

1•thereisnotry•12m ago•0 comments

Tables and Strings in COBOL - Big Data like it's 1985

https://www.datagubbe.se/cobtab/
1•rbanffy•13m ago•0 comments

Show HN: graf (1000x faster graphify in Rust)

https://github.com/ctxrs/graf
1•ripped_britches•13m ago•0 comments

GameStop shares up 30% since earnings; CEO, other board members disclose buys

https://finance.yahoo.com/markets/article/gamestop-stock-jumps-as-ceo-ryan-cohen-buys-26-million-...
1•frmersdog•14m ago•0 comments

Armenia on track to become one of leading hubs for US AI infrastructure

https://armenpress.am/en/article/1261009
1•melicerte•15m ago•1 comments

Apple Developing New Fitness Tracker Aimed at Rivaling Whoop

https://www.bloomberg.com/news/articles/2026-09-22/apple-is-developing-new-fitness-tracker-aimed-...
2•elo2000•15m ago•0 comments

A framework for frontier AI and the dawning of a new age

https://institute.deepmind.com/essays/a-framework-for-frontier-ai-and-the-dawning-of-a-new-age/
2•LyalinDotCom•15m ago•0 comments

Ask HN: Did your side projects ever become something big enough to sustain you?

2•learner_yearner•16m ago•1 comments

18-year-old thought she'd take a gap year. Instead, she joined the S.F. Symphony

https://www.sfchronicle.com/entertainment/classical/article/sf-symphony-starla-breshears-22362042...
1•TMWNN•16m ago•0 comments

OpenRouter Batch API: half-price inference by bundling requests

https://openrouter.ai/blog/announcements/batch-api/
1•porridgeraisin•18m ago•0 comments

'Coding Kids' by Natasha Singer: An Education for the Future That Hasn't Worked

https://www.wsj.com/arts-culture/books/coding-kids-review-an-education-for-the-future-af7fa2a6
1•theanonymousone•18m ago•0 comments

The most difficult daily word game

https://un-scrabbled.com
1•jakespider•19m ago•0 comments

ProudSend – cold outreach drafts that cite the line they came from

https://proudsend.com
1•heypetar•19m ago•0 comments

Show HN: I gave Jev my forum database so he could find the most relevant

https://forumbacklinks.org/demo/setup
1•bigmuzzy•19m ago•0 comments

Go-System-One: Jev-Like Results in Pure Go and SIMD/PTX

https://github.com/rcarmo/go-system-one
1•rcarmo•20m ago•1 comments

Benchmarks are more broken than we could have imagined

https://www.horizonanalyticslabs.com/research/public-benchmark-dataset-audit
3•chillacy•20m ago•1 comments

AI Is Not the End of the World

https://www.everythingisbullshit.blog/p/ai-is-not-the-end-of-the-world
1•swolpers•20m 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.