frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Async Python client for private DeepSeek API

https://github.com/boykopovar/aiodeepseek
1•boykopovar•2m ago•0 comments

Lessons I Learned from Creating Searx

https://hister.org/posts/lessons-i-learned-from-creating-searx
3•mstef•4m ago•1 comments

Built a live multi-agent AI operations workspace for software engineering teams

https://realtechsolutions.work.gd/
1•MunangiwaR•7m ago•0 comments

QuickSilver Pro – OpenAI-Compatible Platform for DeepSeek V4 and Qwen

https://quicksilverpro.io/
1•charlei•7m ago•1 comments

Book on Truth in the Age of A.I. Contains Quotes Made Up by A.I

https://www.nytimes.com/2026/05/19/business/media/future-of-truth-ai-quotes.html
1•andsoitis•7m ago•0 comments

Pi creator removed from OpenClaw's GitHub organization

https://twitter.com/badlogicgames/status/2057391656379269272
1•rob•8m ago•0 comments

Gillette's Metropolis. A Razor Dystopia

https://passingstrangeness.wordpress.com/2026/05/12/gillettes-metropolis/
1•nephihaha•11m ago•0 comments

KiroGraph: Local code knowledge graph for AI, optimized for token efficiency

https://github.com/davide-desio-eleva/kirograph
1•ddesio•12m ago•0 comments

The three layers: browser, index, AI – what happens when you own all three

https://github.com/the-ai-coop/open-letter
1•the-ai-coop•13m ago•0 comments

Imaging hidden objects with consumer Lidar via motion-induced sampling

https://www.nature.com/articles/s41586-026-10502-x
1•sbulaev•14m ago•0 comments

What Google, Yahoo, Microsoft, and Apple are doing to your email

https://www.jacquescorbytuech.com/writing/what-google-yahoo-microsoft-and-apple-are-doing-your-email
1•iamacyborg•14m ago•0 comments

After 2 years of building, TubeHunt is live

https://tubehunt.io/en/
2•guezth•15m ago•1 comments

Intelligent eyewear is coming this fall

https://blog.google/products-and-platforms/platforms/android/android-xr-io-2026/
1•andsoitis•17m ago•0 comments

Intuit CEO says company's 17% workforce cut had 'nothing to do with AI'

https://www.cnbc.com/2026/05/20/intuit-ceo-says-companys-17percent-workforce-cut-had-nothing-to-d...
2•yacin•20m ago•2 comments

Investors fear another surge in inflation

https://www.economist.com/finance-and-economics/2026/05/19/investors-fear-another-surge-in-inflation
1•andsoitis•21m ago•0 comments

Gixy: Nginx Configuration Static Analyzer

https://github.com/dvershinin/gixy
5•petecooper•31m ago•0 comments

Staged Publishing for NPM Packages

https://docs.npmjs.com/staged-publishing/
2•pimterry•31m ago•0 comments

MPs call out Rockstar Games over alleged union-busting

https://www.computerweekly.com/news/366643401/MPs-call-out-Rockstar-Games-over-alleged-Union-busting
1•beardyw•32m ago•0 comments

Edu-committee wants social media ban to save mental health

https://www.theregister.com/personal-tech/2026/05/21/edu-committee-wants-social-media-ban-to-save...
1•ColinWright•33m ago•0 comments

Paragon Knives – No-frills EDC knives focused on pure utility

https://www.paragon-knives.com/
1•bgzlsxaz•34m ago•0 comments

Why domain valuation metrics fail in voice-first and agentic environments

https://domainalot.substack.com/p/how-to-correctly-value-a-domain-and
1•sonofmarzipan•34m ago•0 comments

I built a HoneyBook alternative after they raised prices 89%

https://quotesign.vercel.app
1•kevoIA•37m ago•0 comments

Auditing Apple's DifferentialPrivacy.framework: Bugs, Misconfig, Practical Risks

https://arxiv.org/abs/2605.21378
1•sbulaev•42m ago•0 comments

Been running Claude Code on Bun Rust port for a few days, can't tell difference

https://twitter.com/jarredsumner/status/2057280896231936258
2•tosh•42m ago•0 comments

Yet another Rust re-write: FalkorDB

https://github.com/FalkorDB/falkordb-rs-next-gen
1•fithisux•44m ago•1 comments

Google officially announces that ads will be included in AI Mode search results

https://blog.google/products/ads-commerce/google-marketing-live-search-ads/
4•sofumel•45m ago•0 comments

Micro GPT written in Excel formulas

https://github.com/pyxll/excel-gpt
1•pyxll•47m ago•0 comments

How's Linear so fast? A technical breakdown

https://performance.dev/how-is-linear-so-fast-a-technical-breakdown
1•SouravInsights•49m ago•0 comments

TextIndex

https://mattgemmell.scot/textindex/
1•Tomte•50m ago•0 comments

The Surprising Divide over What Counts as True

https://reason.com/2026/05/15/the-surprising-divide-over-what-counts-as-true/
2•stared•51m 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.