frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open Source and Local Code Mode MCP in Deno Sandboxes

https://portofcontext.com
1•pmkelly4444•1m ago•0 comments

OpenAI Tries to Shift Responsibility to Users

https://buttondown.com/maiht3k/archive/openai-tries-to-shift-responsibility-to-users/
1•cratermoon•2m ago•0 comments

Ask HN: Would you use an app that helps you collect and revisit favorite quotes?

1•relaxy•3m ago•2 comments

Junior Developers Are Turning Productivity Gains to Career Security with AI

https://practicalsecurity.substack.com/p/the-ai-anxiety-antidote-how-junior
1•atilla_bilgic•3m ago•1 comments

On Hack Club: reflections on community, union organizing and authoritarianism

https://place.reeseric.ci/writings/2024-05-05/
1•reesericci•3m ago•0 comments

Chad is a new Y Combinator-backed product so wild, people thought it was fake

https://techcrunch.com/2025/11/12/chad-the-brainrot-ide-is-a-new-y-combinator-backed-product-so-w...
2•gpi•4m ago•0 comments

Claude Code for Web Ruined My Brain (Paul Ford)

https://aboard.com/claude-code-for-web-ruined-my-brain/
1•gbseventeen3331•5m ago•0 comments

DgVoodoo 2

https://dege.freeweb.hu/dgVoodoo2/
1•BruceEel•5m ago•0 comments

Washington Post data breach impacts nearly 10K employees, contractors

https://www.bleepingcomputer.com/news/security/washington-post-data-breach-impacts-nearly-10k-emp...
2•WaitWaitWha•6m ago•0 comments

I've created a website to track the team's activity

https://clickhouse.com/blog/velocity
1•samaysharma•6m ago•0 comments

A Master Table of Truth: Lawyers Using AI

https://craigball.net/2025/11/04/a-master-table-of-truth/
2•WaitWaitWha•8m ago•0 comments

Redmine 6.1 is now available

https://www.redmine.org/news/156
1•mariuz•9m ago•0 comments

Brooks' Law

https://en.wikipedia.org/wiki/Brooks%27s_law
1•hashim•11m ago•0 comments

Turn Off and Journal Instead

https://basic.bearblog.dev/turn-off-and-journal-instead/
2•speckx•12m ago•0 comments

Claude can identify its 'intrusive thoughts'

https://www.transformernews.ai/p/claude-can-identify-its-intrusive-ai-introspection
1•shakeelhashim•12m ago•0 comments

LLM Chat Platform for iOS, Android, Mac, Windows, and Linux

https://github.com/Chevey339/kelivo
1•james2doyle•12m ago•0 comments

South Korean loan sharks target teen gamblers

https://sigma.world/news/south-korea-loan-sharks-teen-gamblers
2•rawgabbit•15m ago•0 comments

Pequliar is a QR code based compact puzzle sequence

https://pequliar.besttof.nl/
1•gregsadetsky•15m ago•0 comments

Show HN: AI-built tools with security by default

1•zvonimirs•17m ago•0 comments

Proton Launches 8th Annual Lifetime Account Charity Fundraiser

https://proton.me/blog/lifetime-fundraiser-survey-2025
2•PrivacyDingus•17m ago•0 comments

Animalcules and Their Motors

https://press.asimov.com/articles/flagella
1•mailyk•17m ago•0 comments

All Intel GPUs Run on Raspberry Pi and RISC-V

https://www.jeffgeerling.com/blog/2025/all-intel-gpus-run-on-raspberry-pi-and-risc-v
1•mikece•18m ago•0 comments

Show HN: Open-Source NotebookLM Alternative

https://www.noodleflow.ai/notebook
2•nazar_ilamanov•18m ago•0 comments

PDF to TXT Converter Online

https://pdf-to-txt.com
2•Nancy1230•20m ago•0 comments

Robinhood Offers to Bring Cash to Your Doorstep, for a Fee

https://www.wsj.com/finance/investing/robinhood-offers-to-bring-cash-to-your-doorstep-for-a-fee-7...
1•bookofjoe•20m ago•1 comments

Todo iOS app as simple as paper

https://apps.apple.com/dk/app/nauu/id6754856167
1•stoumann•20m ago•0 comments

Canada in the running to headquarter new defence bank

https://www.theglobeandmail.com/business/economy/article-canada-gdp-nato-defence-spending-defence...
1•Teever•22m ago•0 comments

Show HN: Compute CLI – A universal sandbox SDK with direct browser access

https://www.computesdk.com/blog/november-2025-update/
1•heygarrison•23m ago•0 comments

A Hermetic, Transparent Soft Growing Vine Robot System for Pipe Inspection

https://arxiv.org/abs/2510.27010
1•PaulHoule•23m ago•0 comments

Automated PDF Generation with Typst

https://typst.app/blog/2025/automated-generation/
1•leephillips•23m 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•6mo ago

Comments

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