frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Safety Farce

https://seanpedersen.github.io/posts/ai-safety-farce/
1•sean_pedersen•2m ago•0 comments

Show HN: SkillFortify, Formal verification for AI agents (auto-discovers)

https://github.com/varun369/skillfortify
1•varunpratap369•2m ago•1 comments

What breaks when you vote on specific claims instead of whole posts?

1•flyblackbox•2m ago•0 comments

Community-powered blocklist for removing slop from HN comments

https://github.com/supriyo-biswas/hn_slopblock
1•supriyo-biswas•4m ago•0 comments

What Hackers Consider Essential (1991)

1•validatori•8m ago•0 comments

Still Ours To Lose – almost all LLMs share one remarkable behavioral trait

https://ctsmyth.substack.com/p/still-ours-to-lose
2•K0balt•11m ago•1 comments

Textadept

https://orbitalquark.github.io/textadept/
2•giancarlostoro•16m ago•0 comments

Show HN: I built a desktop app combining Claude, GPT, Gemini with local Ollama

https://github.com/tsunamayo7/helix-ai-studio
1•tsunamayo•23m ago•0 comments

TrueSize: Compare Real Country and Region Sizes

https://truesize.net/#ts~N4IgbiBcDaCMCcA6eB2AzGgrAGgAyNhUxQA5sAmAXWxAEsppQBrKEAWlgBYSS0SQaABwagAx...
1•thunderbong•27m ago•0 comments

Claude Code is a great Dad side project environment

https://www.bitlog.com/2026/02/28/claude-code-is-a-great-dad-side-project-environment/
1•jakevoytko•27m ago•1 comments

Why some Americans who make a lot of money feel so poor

https://www.cnn.com/2026/01/06/economy/housing-childcare-availability-affordability-economy
2•paulpauper•27m ago•0 comments

Students are skipping the hardest part of growing up

https://www.omanobserver.om/article/1183600/opinion/students-are-skipping-the-hardest-part-of-gro...
2•paulpauper•28m ago•0 comments

The Great Unraveling Has Begun

https://www.nytimes.com/2026/01/06/opinion/peace-conflict-war.html
1•abdelhousni•29m ago•0 comments

Iranian Supreme Leader Ayatollah Khamenei Dies

https://www.wsj.com/world/middle-east/iranian-supreme-leader-ayatollah-khamenei-dies-94e0aa4c
2•LopRabbit•29m ago•0 comments

Show HN: Iosef, an iOS simulator CLI designed for agents

https://github.com/riwsky/iosef
1•riwsky•33m ago•0 comments

Signal vs. Noise in the Skills Ecosystem

https://olshansky.info/posts/2026-02-28-signal-vs-noise-in-the-skills-ecosystem
1•Olshansky•38m ago•0 comments

He wanted to use ChatGPT to create sustainable housing. Then it took his life

https://www.theguardian.com/technology/ng-interactive/2026/feb/28/chatgpt-ai-chatbot-mental-health
2•october8140•41m ago•1 comments

You think unemployed, I think retired

https://jesseduffield.com/You-Think-Unemployed-I-Think-Retired/
2•brandon_bot•43m ago•1 comments

US tech supplied Israel with AI models, tech's role in warfare – AP News

https://apnews.com/article/israel-palestinians-ai-weapons-430f6f15aab420806163558732726ad9
2•abdelhousni•47m ago•1 comments

Show HN: Analyze employee survey data in 60 seconds (no signup)

https://getdistill.tech/landing
1•khnfrhn•50m ago•1 comments

A pretty looking web for a quantum mechanics tool

https://github.com/Jamessfks/mace
1•Jamessfks123•52m ago•0 comments

The Atlantic AI Watchdog

https://www.theatlantic.com/category/ai-watchdog/
1•fortran77•55m ago•0 comments

Poll: How do you think LLMs will affect the job market for software developers?

1•bwestergard•56m ago•4 comments

Show HN: Engram – Memory for AI coding agents (2.5K installs, 80% on LOCOMO)

https://www.engram.fyi
1•tstockham•58m ago•0 comments

Show HN: Openpista – AI Agent for OS Control via Telegram/CLI in Rust

https://github.com/openpista/openpista
1•pista_chio•59m ago•0 comments

Show HN: I put Claude Code inside a Telegram bot for voice memos

https://github.com/baryhuang/ai-meeting-notes-agent
1•buryhuang•1h ago•0 comments

We Built a Video Rendering Engine by Lying to the Browser About What Time It Is

https://blog.replit.com/browsers-dont-want-to-be-cameras
4•darshkpatel•1h ago•0 comments

Show HN: Userscript to Display Age/Karma of HN Users

https://gist.github.com/m4chinations/f6d58711a94077d96cf4157665b0bab3
3•linksbro•1h ago•1 comments

Show HN: A POST only back end framework

https://nile-js.github.io/nile/
1•HusseinKizz•1h ago•0 comments

Anthropic and Palantir Bring Claude to U.S. Intelligence and Defense (2024)

https://investors.palantir.com/news-details/2024/Anthropic-and-Palantir-Partner-to-Bring-Claude-A...
1•notRobot•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•10mo ago

Comments

uticus•10mo 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.