frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Host Infinite Python Services

https://phemeral.dev/docs
1•cshjoshi•1m ago•0 comments

AI-Driven Demand for Gas Turbines Risks a New Energy Crunch

https://www.bloomberg.com/features/2025-bottlenecks-gas-turbines/
1•sethbannon•1m ago•0 comments

Built a tool that simulates company-specific interviewers

https://portlumeai.com
1•portlumeai•2m ago•0 comments

A Learning a Day: Daily Posts Since May 2008

https://alearningaday.blog/archives/
1•Olshansky•2m ago•0 comments

Show HN: OpenMix, open-source computational framework for formulation science

https://github.com/vijayvkrishnan/openmix
1•vijayvkrishnan•3m ago•0 comments

With Cox V. Sony The Supreme Court Provides Another Internet-Protecting Decision

https://www.techdirt.com/2026/04/07/with-cox-v-sony-the-supreme-court-provides-yet-another-intern...
2•hn_acker•3m ago•1 comments

What Is Ghost Murmur? Secretive CIA Tool Linked to Iran Airman Rescue

https://www.newsweek.com/ghost-murmur-secretive-cia-tool-iran-airman-rescue-11797688
2•petethomas•3m ago•0 comments

Upgrading MacBook Neo to 1 TB using iPhone parts [video]

https://www.youtube.com/watch?v=bIeEGeTd5DE
1•burnt-resistor•3m ago•0 comments

Why LLMs Can't Play Chess

https://www.nicowesterdale.com/blog/why-llms-cant-play-chess
1•osrec•3m ago•0 comments

Understanding the Kalman Filter with a Simple Radar Example

https://kalmanfilter.net
2•alex_be•4m ago•0 comments

Tesla can play music from a floppy drive

https://twitter.com/olegkutkov/status/2041925827416277460
1•stefan_•4m ago•0 comments

RenderDraw Lens – Give AI coding tools visual context from the browser

https://renderdraw.com/tools/lens
1•eshivers•5m ago•0 comments

Do DMCA Takedown Notices Need to Expressly Refer to the Lack of Fair Use?

https://blog.ericgoldman.org/archives/2026/03/do-dmca-takedown-notices-need-to-expressly-refer-to...
2•hn_acker•5m ago•1 comments

Show HN: Canvora – describe what you want, get a branded visual in any language

https://canvora.ai
1•vivekalogics•6m ago•0 comments

Greece to ban social media for under-15s from next year

https://www.bbc.com/news/articles/ckgx1x742x5o
3•Brajeshwar•8m ago•0 comments

The reason your Fort Lauderdale competitor is ranking above you

https://fortauderdaleseo.substack.com/p/the-reason-your-fort-lauderdale-competitor
1•auditnews•8m ago•1 comments

How Pakistan managed to get the US and Iran to a ceasefire

https://www.aljazeera.com/features/2026/4/8/how-pakistan-managed-to-get-the-us-and-iran-to-a-ceas...
1•rkp8000•8m ago•0 comments

Scaling Managed Agents: Decoupling the brain from the hands

https://www.anthropic.com/engineering/managed-agents
1•meetpateltech•9m ago•0 comments

Claude Managed Agents

https://claude.com/blog/claude-managed-agents
4•adocomplete•11m ago•1 comments

The Download: water threats in Iran and AI's impact on what entrepreneurs make

https://www.technologyreview.com/2026/04/08/1135405/the-download-water-threats-iran-ais-impact-on...
1•joozio•11m ago•0 comments

Rust for CPython Progress Update April 2026

https://blog.python.org/2026/04/rust-for-cpython-2026-04/
1•rented_mule•11m ago•0 comments

Mustafa Suleyman: AI development won't hit a wall anytime soon–here's why

https://www.technologyreview.com/2026/04/08/1135398/mustafa-suleyman-ai-future/
2•joozio•12m ago•0 comments

Coding Agents for Old People

https://blog.tasuki.org/coding-agents/
1•speckx•13m ago•0 comments

A friend got fired from Coinbase for his side project he worked on for 5 years

https://nexustrade.io/blog/i-was-fired-from-coinbase-for-building-an-ai-trading-platform-20260408
5•eranation•13m ago•2 comments

Worldwide Semiconductor Revenue to Exceed $1.3T in 2026

https://www.gartner.com/en/newsroom/press-releases/2026-04-08-gartner-forecasts-worldwide-semicon...
1•layer8•13m ago•1 comments

We built a VS Code extension for reproducible SQL workflows

https://marketplace.visualstudio.com/items?itemName=Exasol.exasol-vscode
1•one-random-geek•14m ago•1 comments

Show HN: Prompt injection detector beats ProtectAI by 19% accuracy, 8.9x smaller

https://huggingface.co/hlyn/prompt-injection-judge-deberta-70m
1•Karan047•17m ago•0 comments

The Downfall and Enshittification of Microsoft in 2026

https://caio.ca/blog/the-downfall-and-enshittification-of-microsoft.html
3•birdculture•17m ago•1 comments

Nuclear Energy Heresy with Daniel Chen [video]

https://www.youtube.com/watch?v=HZq_V-UKLj0
1•leonidasrup•19m ago•1 comments

Show HN: Access OpenClaw's workspace files from anywhere and any device

https://github.com/RageDotNet/openclaw-webdav
1•gregatragenet3•19m 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•11mo ago

Comments

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