frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OnePlus Settled

https://finshots.in/archive/how-oneplus-settled/
1•vismit2000•5m ago•0 comments

I tried the new Fairphone, a phone designed to be repaired

https://www.fastcompany.com/91608879/i-tried-the-new-fairphone-a-phone-designed-to-be-repaired
1•vismit2000•7m ago•0 comments

Laser Your Way into Debug Mode on the RP2350

https://hackaday.com/2026/09/19/laser-your-way-into-debug-mode-on-the-rp2350/
1•mdp2021•11m ago•0 comments

Show HN: ChatGPT to Word – export a thread to a readable .docx

https://chatgpt2word.com
1•leiships•12m ago•0 comments

Show HN: Website Auditor –> Test your brand's AI visibility, get growth plan

https://website-auditor.io/
1•SpikeyCoder•14m ago•0 comments

Show HN: Web Tools List – browser tools grouped by the job, not the format

https://webtoolslist.com
1•leiships•14m ago•0 comments

Dropbox's Jan 1st 2027 terms of service

https://www.dropbox.com/terms2026
2•simonebrunozzi•16m ago•0 comments

My Dad Died by Suicide. He Left Me with 694 Video Diaries to Explain Why – NYT

https://www.youtube.com/watch?v=Kimur4jkJT8
1•johntfella•19m ago•0 comments

Show HN: Morse Code Translator – real-time text-to-Morse with audio

https://morsetranslator.me/
2•shaliji•20m ago•0 comments

RunMyWealth

https://runmywealth.com/
1•Thecompunder•24m ago•0 comments

Unit tests mark territory more than squash bugs

https://yosefk.com/blog/unit-tests-mark-territory-more-than-squash-bugs.html
1•luu•28m ago•0 comments

Spain Orders Blocks on Archive.today and Its Mirrors

https://reclaimthenet.org/spain-blocks-archive-today-and-mirrors
10•latein•42m ago•3 comments

Free scanner for exposed Supabase data in AI-built apps (Lovable, Bolt, Base44)

https://api.trustboost.dev/free-scan
3•Teocrispin•45m ago•0 comments

Dancing Mania

https://en.wikipedia.org/wiki/Dancing_mania
2•hypnot•45m ago•0 comments

Office Open XML

https://en.wikipedia.org/wiki/Office_Open_XML
2•azhenley•47m ago•0 comments

Here’s How an AI Slowdown An AI Slowdown Could Be Enforced

https://www.wired.com/story/heres-how-an-ai-slowdown-could-actually-work/
3•ent101•49m ago•0 comments

Some Thoughts on the Economics of UPI and MDR

2•pyeri•49m ago•0 comments

AgentSec Audit

https://github.com/hicklax13/agentsec-audit
2•ConnorBHickey13•51m ago•0 comments

OpenAI retiring GPT-5.5 on October 14

https://www.gizmochina.com/2026/09/16/openai-retiring-gpt-5-5-on-october-14-you-may-need-to-updat...
2•f055•53m ago•0 comments

SpriteIt – Feature Rich, Re-designed 2D/3D SpriteSheet Maker

https://ssstand.itch.io/spriteit
2•ssstand•58m ago•1 comments

Seven, Forever

https://github.com/02zerocool/truth-benchmark
2•o2zer0cool•1h ago•0 comments

AI art is theft – on artists, mathematicians impact on AI

https://twitter.com/wordgrammer/status/2101429761528455669
3•diginova•1h ago•0 comments

Show HN: ScoreTail, Browser-based sheet music editor with live collaboration

https://scoretail.com
2•tan-z-tan•1h ago•0 comments

Orchestrating Claude Code Agents: The Chief of Staff Pattern

https://asyncdot.com/blog/chief-of-staff-pattern-orchestrating-claude-code-sessions/
3•octalpixel•1h ago•0 comments

Best Websites to Generate Theme for PowerBi

2•AnasKhalid•1h ago•0 comments

Dark Age

https://artagnon.com/art/dark-age
6•artagnon•1h ago•2 comments

Built the first open source Python library – converting Word, Excel to PDF

https://github.com/mini-software/MiniPdf
3•shps951002•1h ago•0 comments

Phylo brings frontier AI to more scientists with open models on Fireworks

https://fireworks.ai/blog/phylo-brings-frontier-ai-to-more-scientists-with-open-models-on-fireworks
3•measurablefunc•1h ago•0 comments

Observations on LLMs for Privacy Work

https://desfontain.es/blog/llms-for-privacy.html
3•luu•1h ago•0 comments

VoltGrid AI: Mitigating GPU cluster dI/dt power surges in software

https://zenodo.org/records/22824778
4•samganyx•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•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.