frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The UK plans to ban romantic AI chatbots for under-18s

https://blog.uehiro.ox.ac.uk/2026/06/the-uk-plans-to-ban-romantic-ai-chatbots-for-under-18s-young...
1•ilreb•1m ago•0 comments

Grok 4.5 Benchmark Results

https://artificialanalysis.ai/models/grok-4-5
1•theanonymousone•1m ago•0 comments

San Francisco homes sell for $1M above asking price amid AI boom

https://www.theguardian.com/us-news/2026/jul/07/san-francisco-home-sale-prices-ai
1•pseudolus•4m ago•0 comments

The Fediverse Grew Up. Its Sign-Up Page Didn't

https://casually.onl/article?slug=fediverse-grew-up-2026
1•doener•5m ago•0 comments

Questions for the Team During Onboarding

https://simonwillison.net/2026/Mar/6/ally-piechowski/
1•grepsedawk•5m ago•0 comments

My Thoughts on the Bun Rust Rewrite

https://andrewkelley.me/post/my-thoughts-bun-rust-rewrite.html
1•kristoff_it•5m ago•0 comments

Show HN: Humm – free, private realtime speech-to-text

https://humm.so/
1•welanes•6m ago•0 comments

M64 Controller Review

https://retrododo.com/m64-controller-review-the-n64-remote-perfected/
1•tosh•10m ago•0 comments

Show HN: Ved AI Voice Assistant

https://github.com/Krish6190/Ved-Test
1•Amigo112•11m ago•0 comments

If Microsoft sold off Xbox, who would even buy it?

https://www.theverge.com/games/962837/microsoft-xbox-spin-off-sell-divest-layoffs-asha-sharma
1•haunter•12m ago•0 comments

China Weighs Limits on the AI Models American Companies Love

https://www.wsj.com/tech/ai/china-weighs-limits-on-the-ai-models-american-companies-love-c3ad8f2b
1•JumpCrisscross•12m ago•0 comments

The Traverse of the GR20

https://mongr20.com/en/
1•altilunium•13m ago•0 comments

Bonnie Tyler latest: Legendary rock singer dies 'unexpectedly' in Portugal

https://news.sky.com/story/bonnie-tyler-latest-legendary-rock-singer-dies-in-portugal-13542742
1•Tomte•16m ago•0 comments

Show HN: Use MacBook Pro in outdoor sun by unlocking higher brightness

https://apps.apple.com/no/app/maxbrightness/id6787140590?mt=12
1•steinvakt2•17m ago•0 comments

Full-frame video stabilization through global 3D scene reconstruction

https://stabigs.github.io/
1•trueduke•18m ago•0 comments

Show HN: Rustify – Stripe and code-signing for native Rust desktop apps

https://rustify.yreh.com
1•ratsimihah•19m ago•0 comments

Talagrand's Convexity Conjecture proof proposal

https://arxiv.org/abs/2605.10908
1•hamburgererror•19m ago•1 comments

Show HN: Chat Privacy – hide AI chat history while screen sharing

https://chromewebstore.google.com/detail/chat-privacy/piakgcdlbcadfnhgmpfpfejfmmpmnmkp
1•jcwsw129•20m ago•0 comments

Opendray – run Claude Code/Codex agents on your own box, drive from anywhere

https://github.com/Opendray/opendray
1•navidrast•24m ago•0 comments

Roblox takes newly release Steam games and rips them off

https://old.reddit.com/r/dataisbeautiful/comments/1uogveo/oc_peak_daily_players_the_steam_game_me...
1•MrBuddyCasino•26m ago•0 comments

Ente's business metrics are open now

https://ente.com/blog/open/
2•Cider9986•28m ago•0 comments

Dev Jr Developer

2•edoschenone•29m ago•1 comments

1-Minute Chess Puzzles – A rapid tactics game I built for Android

https://play.google.com/store/apps/details?id=io.hackersway.oneminutechess&hl=en_US
1•amitgajbhare•33m ago•0 comments

Ask HN: What's the most life-changing blog post you've ever read?

2•chistev•33m ago•1 comments

Building a High-Performance C++ Backtesting Framework

https://dolphindb.com/blogs/46
2•CrazyTomato•34m ago•0 comments

Cloud Agent Lessons

https://cursor.com/blog/cloud-agent-lessons
2•shahargl•36m ago•0 comments

Best Training Management Software

https://www.qualityze.com/training-management
1•qualityze-inc•37m ago•0 comments

Show HN: OCR-grab: Flameshot clone that adds OCR

https://github.com/talalalrwas/ocr-grab
2•tgol•38m ago•0 comments

He Earns $33 an Hour as a Costco Cashier. Now He's a Millionaire

https://www.wsj.com/business/retail/he-earns-33-an-hour-as-a-costco-cashier-now-hes-a-millionaire...
3•JumpCrisscross•39m ago•0 comments

Grok 4.5 Release (Technical)

https://cursor.com/blog/grok-4-5
1•linzhangrun•41m 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.