frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Privibe – LLM CLI Local first+privacy focus+llama.cpp cache branch and Qwen3.x

https://github.com/alainnothere/privibe/tree/main
1•xlayn•14m ago•1 comments

Trump administration Announces New "Hacking Back" Program

https://reason.com/volokh/2026/08/17/trump-administration-announces-new-hacking-back-program/
1•anonymousiam•15m ago•0 comments

The Loss of Innocence

https://medium.com/freedomofthought/the-loss-of-innocence-a-timeline-of-growing-up-as-a-girl-ce62...
1•raynchad•16m ago•0 comments

Every Forward Deployed Engineer Just Got Promoted

https://www.furtherai.com/blog/every-forward-deployed-engineer-just-got-promoted
1•sgondala_ycapp•18m ago•0 comments

Laser mosquito zapper promises precision strikes as backers itch for answers

https://www.theregister.com/offbeat/2026/08/17/1k-laser-mosquito-zapper-promises-precision-strike...
2•mdp2021•18m ago•1 comments

Google wins bankruptcy auction for Spirit Airlines emails, chats, documents

https://www.axios.com/2026/08/17/google-spirit-airlines-bankruptcy
5•sgustard•24m ago•0 comments

PM Carney announces largest clean energy investment in North American history

https://www.pm.gc.ca/en/news/news-releases/2026/08/17/prime-minister-carney-announces-largest-cle...
8•garbawarb•28m ago•2 comments

70 Strategies/Moats on How Things Win

https://stephango.com/moats
1•momentmaker•29m ago•0 comments

CRTC allows Canadian carriers to lock phones again, with a catch

https://mobilesyrup.com/2026/08/17/crtc-brings-back-phone-locking/
3•jethronethro•29m ago•0 comments

AMD Working on a New Back End for Improving ROCm Compute in QEMU/VMs

https://www.phoronix.com/news/AMD-ROCm-Better-QEMU-VM
1•mdp2021•29m ago•0 comments

Show HN: Cogni: MCP memory for LLMs, with no LLM in the retrieval path

https://getcogni.io/
2•ihamilton7•32m ago•0 comments

Consumers Prefer AI Music Until They're Told It's AI

https://www.promarket.org/2026/05/04/consumers-prefer-ai-music-until-theyre-told-its-ai/
3•a2ff6eeb0•38m ago•0 comments

Statement Regarding Loongson Vulnerabilities Presented at USENIX26

https://www.loongson.cn/news/show?id=850
1•csmantle•39m ago•0 comments

Voluntary attention regulates acute immune responses in humans

https://www.nature.com/articles/s41562-026-02541-1
4•bookofjoe•40m ago•0 comments

Germany Just Banned Windows to Save €15M

https://www.youtube.com/watch?v=iaz32kiBbaA
3•cable2600•46m ago•2 comments

Whose doctor does the AI recommend? An algorithm audit of LLMs in physician

https://arxiv.org/abs/2608.14399
1•sbulaev•46m ago•0 comments

Prime Agent: A Self-Improving RLM Agent

https://github.com/PrimeIntellect-ai/prime-agent
1•rzk•48m ago•0 comments

Connecting to an Azure/Entra Joined Windows Machine from Linux

https://github.com/themew2/FreeRDP-to-Entra-Connected-Windows-Device
1•themew2•49m ago•0 comments

Cursor Origin

https://cursor.com/docs/origin
45•peterspath•55m ago•20 comments

Supreme Court Rejects Verizon Bid for $47M Refund of FCC Fine

https://arstechnica.com/tech-policy/2026/08/supreme-court-rejects-verizon-bid-for-47-million-refu...
3•m463•56m ago•0 comments

Un-AI Your Internet

https://un-ai.digitalprophet.online/
7•ErenayDev•56m ago•3 comments

LongHorizon-Harness: Advancing Long-Horizon Agents for Real-World Tasks

https://github.com/AMAP-ML/LongHorizon-Harness
1•tingletech•1h ago•1 comments

Building Scalable Control Planes

https://www.allthingsdistributed.com/2026/08/on-building-scalable-control-planes.html
1•smn1234•1h ago•0 comments

Show HN: FlashFrame-Free Browser-Based Fast Multiplayer Movie Guessing Game

https://playflashframe.com/
1•jsturgill•1h ago•0 comments

DuckDuckGo Sunglasses

https://knockaround.com/products/duckduckgo-paso-robles
2•brianborn•1h ago•0 comments

Saying Goodbye to SMS Mode

https://groupme.com/blog/goodbye-sms-mode
3•tech234a•1h ago•0 comments

Show HN: Particle – Extract and save articles in a clean, self-hosted reader

https://particle.crnst8.com/try/
1•flowerpil•1h ago•0 comments

New API integer overflow: one request turned a $0.10 balance into $16.9T

https://hellorecon.com/blog/cve-2026-71479-new-api-quota-integer-overflow
1•slvnx•1h ago•1 comments

Scalable watermarking for identifying large language model outputs

https://www.nature.com/articles/s41586-024-08025-4
1•Anon84•1h ago•0 comments

Show HN: A multiplayer coding environment for dev teams and agents

https://forklane.ai
1•akshayl284•1h ago•1 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.