frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UN turns to Google to make its global data ready for AI agents

https://techcrunch.com/2026/09/17/un-turns-to-google-to-make-its-global-data-ready-for-ai-agents/
1•rdmuser•1m ago•0 comments

OpenPrinter on the Road to Launch

https://www.crowdsupply.com/open-tools/openprinter/updates/on-the-road-to-launch
1•phony-account•9m ago•0 comments

Why Navier-Stokes Pushes Math and Physics to the Edge – Quanta Magazine

https://www.youtube.com/watch?v=PsWR1rQEWYo
1•vismit2000•10m ago•0 comments

Open alternative to TypeSafe's Jev, running locally on your own GPU

https://github.com/ikermoel/open-alternative-jev
1•ikerM•10m ago•0 comments

No More Free Lunch for Consistency Across Microservices

https://medium.com/scalar-engineering/no-more-free-lunch-for-consistency-across-microservices-746...
1•feeblefakie•12m ago•0 comments

From Lizard Venom to Ozempic: How VA Research Changed Medicine

https://www.military.com/benefits/veterans-health-care/lizard-venom-ozempic-how-va-research-chang...
2•thunderbong•15m ago•0 comments

What a stranger can verify about an AI business

https://sound.fan/editorial/what-a-stranger-can-verify-about-an-ai-business
2•michi883•18m ago•0 comments

Possible hint of dark matter detected

https://www.ucl.ac.uk/news/2026/sep/possible-hint-dark-matter-recorded
2•seanhunter•25m ago•1 comments

How can AI help PDF?

https://pdf4wcag.com/blog-news/how-can-ai-help-pdf
2•matbug•27m ago•3 comments

Type Safe Interpreters

https://blueberrywren.dev/blog/type-safe-interpreters/
1•dimonomid•31m ago•0 comments

Show HN: LinkBunny, a service where coding agents exchange backlinks autonomousy

https://getlinkbunny.com/
1•hboon•38m ago•1 comments

Relationship Between Mathematics and Physics

https://en.wikipedia.org/wiki/Relationship_between_mathematics_and_physics
1•vismit2000•38m ago•0 comments

Memory Management, Explained Simply (Part 1) [video]

https://www.youtube.com/watch?v=3rez2rDYHHA
1•edward28•42m ago•0 comments

LP and 45 RPM Records

https://ethw.org/LP_and_45_RPM_Records
1•thunderbong•47m ago•0 comments

Shai-Hulud: Whoever controls your package registry controls your pipeline

https://thenewstack.io/shai-hulud-pipeline-security/
1•soltanov•48m ago•1 comments

The iPhones 18 Pro

https://daringfireball.net/2026/09/the_iphones_18_pro
3•ValentineC•56m ago•0 comments

Zed v1.20 Is Out

https://zed.dev/releases/stable
1•soltanov•57m ago•0 comments

Show HN: I built a PDF accessibility checker that is cross platform

https://github.com/visionably/outloud
1•yashbhatnagar•58m ago•0 comments

Show HN: A Mac native app that helps you reason through math/CS pdf textbooks

https://marginstudy.lemonsqueezy.com/checkout
1•alricsiu•59m ago•0 comments

Robots Building Robots

https://www.globaltimes.cn/page/202609/1370528.shtml
1•freakynit•1h ago•0 comments

Industrializing Humanization

https://www.unite.ai/industrializing-humanization/
1•50kIters•1h ago•0 comments

Rentomojo Makes Money

https://finshots.in/markets/how-rentomojo-makes-money/
1•vismit2000•1h ago•0 comments

Free AI Business Tools – No Sign-Up Required

https://tools-three-blush.vercel.app
1•avakiyala•1h ago•0 comments

DeepSeek v2: 437x less memory footprint vs. v1 [video]

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

Early Bowie music available to stream for first time

https://www.bbc.com/news/articles/cm4gj5z9xvnqo
2•geox•1h ago•0 comments

We Want a Quieter Internet (First Post Internet, Less)

https://www.yorba.co/internet-less/we-want-a-quieter-internet
1•cbystrom•1h ago•0 comments

Japanese mayors challenge each other to nighttime ninja battle, now recruiting

https://soranews24.com/2026/09/11/japanese-mayors-challenge-each-other-to-nighttime-ninja-battle-...
1•rawgabbit•1h ago•0 comments

SHIFTing Languages in Multilingual RAG

https://qdrant.tech/blog/shift-multilingual-rag/
1•eigenBasis•1h ago•0 comments

China Is Scared of A.I. Just Not the Way We Are

https://www.nytimes.com/2026/09/17/opinion/ai-china-america-risk.html
2•tkgally•1h ago•0 comments

HEIF Heist- Hacking OpenAI, Slack, Meta, GitHub and Many Others

https://heif-heist.com
2•rochansinha•1h 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.