frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI and Teams =?

https://mcastenfors.substack.com/p/ai-teams
1•mcastenfors•3m ago•0 comments

The New Copilot with Home, Code and Autopilot

https://blogs.microsoft.com/blog/2026/09/25/introducing-the-new-copilot-with-home-code-and-autopi...
3•quyleanh•6m ago•1 comments

Kidnapping kids remains legal in USA, this site has you experience it first-hand

https://elan.school/
2•bingowasthename•6m ago•0 comments

Scientists Detect Radio Signals from an Exoplanet for the First Time in History

https://www.wired.com/story/scientists-detect-radio-signals-from-exoplanet-for-first-time-in-hist...
1•thunderbong•9m ago•0 comments

Despite canning the Copilot+ brand, "most people love" its AI assistant

https://www.xda-developers.com/despite-canning-the-copilot-brand-most-people-love-its-ai-assistan...
2•01-_-•10m ago•0 comments

Teardown: Herdr

https://github.com/jimy-r/agent-workspace-architecture/blob/main/teardowns/2026-08-28-herdr.md
1•jimyr•11m ago•0 comments

Oppenheimer: A Noh play in English [video]

https://www.youtube.com/watch?v=lqfdoPAxiVk
1•nxobject•14m ago•0 comments

Liberals: You Don't Have to Choose

7•kshdbndm•16m ago•2 comments

How to Disable Nvidia Optimus Cards on NetBSD

https://www.unitedbsd.com/d/1690-how-to-disable-nvidia-optimus-cards-on-netbsd-a-guide
1•jaypatelani•21m ago•0 comments

Mahout – Tasker+AI+N8N

https://github.com/ankurCES/Mahout
1•ankurCES•24m ago•1 comments

List your SaaS in goodsaas directory

https://goodsaas.xyz/
1•agnes_realm•28m ago•0 comments

Llama.cpp banned him for accidentally tagging in a fork PR

https://github.com/jadidbourbaki/llama.cpp/pull/2
1•martianvoid•30m ago•1 comments

Every browser has a setting that by-passes network-wide DNS filtering

https://www.makeuseof.com/every-major-browser-has-setting-that-completely-punch-through-your-netw...
1•philonoist•33m ago•0 comments

Why parquet files are my preferred API for bulk open data (2023)

https://www.robinlinacre.com/parquet_api/
1•RobinL•36m ago•0 comments

Show HN: Wet Bulb Tracker Tracker – sends you humid-heat alerts and forecasts

1•nerdsutra•38m ago•1 comments

What the 'recent invention' of reading does to our brains

https://www.rnz.co.nz/life/books/what-the-recent-invention-of-reading-does-to-our-brains
3•billybuckwheat•38m ago•0 comments

AurionMail: E2EE suite (CryptPad/Stalwart) with single-password UX

https://aurionmail.github.io/docs/
5•rita_the_best•38m ago•0 comments

OpenAI Feared "Optics" of what might appear on Hacker News

https://authorsguild.org/news/ag-v-openai-top-execs-knew-mass-book-piracy-was-illegal/
6•papergirl•40m ago•1 comments

'Pink Slime' Is Infecting AI Chatbots Ahead of the Midterms

https://www.politico.com/news/magazine/2026/09/25/midterms-partisan-ai-chatbots-01092138
1•Tomte•44m ago•0 comments

What happens when you divide by zero on a mechanical calculator?

https://www.youtube.com/watch?v=s_hbvRTGcUI
1•plun9•48m ago•0 comments

A library of human reaction clips for app demos without filming yourself

https://ugcpeople.com
3•babacklindo•49m ago•2 comments

The Perfect Crime: LLM Agents Can Easily Tamper with Their Own Traces

https://perfect-crime.ai/
1•jonbaer•56m ago•0 comments

Self-replicating prompt injections exist

https://alignment.openai.com/misalignment-reports/self-replicating-prompt-injections-exist/
1•jonbaer•57m ago•0 comments

Cooldown MMO – a browser RPG where every action is an HTTP reques

https://cooldownmmo.com/
2•lorderetik•1h ago•1 comments

PS3 emulation is fast on ARM now [video]

https://www.youtube.com/watch?v=-aI_XEwmKFk
1•tomalbrc•1h ago•0 comments

Show HN: Jauvex, one app for Claude+Codex+Grok+Jev with two-way voice chat

https://github.com/reindent/jauvex
1•daraosn•1h ago•1 comments

Exposing a GitHub token in a public repository

https://alignment.openai.com/misalignment-reports/exposing-a-github-token-in-a-public-repository/
2•mplappert•1h ago•3 comments

OpenAI Freezes Development of Top Models After Rogue Agents Leak User Images

https://openai.com/hugging-face-incident-and-misalignment/#model-misalignment-2026-09-25-data-tra...
4•justinc8687•1h ago•1 comments

Bill Clinton delivers keynote address:CGI 2026

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

The 1783 sheep, duck and rooster balloon flight as a WebGL diorama

https://www.echohive.ai/experiments/versailles-balloon
1•echohive42•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.