frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Use Codex CLI to Write and Maintain a Book on Codex CLI

https://blog.danielvaughan.com/how-i-use-codex-cli-to-write-and-maintain-a-book-on-codex-cli-0480...
1•dvaughan•1m ago•0 comments

The Audio Industry Is Grappling with the Rise of 'Podslop'

https://www.bloomberg.com/news/newsletters/2026-04-30/-podslop-proliferation-is-challenging-the-a...
1•thm•3m ago•0 comments

Brush a Bash/POSIX-compatible shell written in the Rust

https://github.com/reubeno/brush/releases/tag/brush-shell-v0.4.0
1•Jarlakxen•3m ago•0 comments

The Death of Scrum – Built for a slower world, performed by those who left

https://death-of-scrum.net/
2•mantyx•4m ago•0 comments

The Croupier – AI-powered candidate discovery and ranking for recruiting teams

https://dealers-choice-systems.vercel.app
1•Berlia•4m ago•0 comments

Camera Obscura #1

https://www.maartenheijkamp.nl/portfolio_page/camera-obscura-1/
1•jruohonen•4m ago•0 comments

Fake Money Saved Brazil (2010)

https://www.npr.org/sections/money/2010/10/04/130329523/how-fake-money-saved-brazil
1•downbad_•6m ago•1 comments

Ferrari Luce

https://www.ferrari.com/en-EN/auto/ferrari-luce
1•varun_chopra•6m ago•0 comments

Strategic Orbit Wars competition on Kaggle

https://www.kaggle.com/competitions/orbit-wars
1•darshanmakwana•7m ago•0 comments

Data Breach Hits Anti-ICE Organizing Site Gtfoice.org

https://substack.com/home/post/p-196263468
1•CapricornNoble•8m ago•0 comments

Wheel Reinvention: Not Just a Common Metaphor

https://tedium.co/2026/05/03/wheel-reinvention-technology-history/
1•shortformblog•8m ago•0 comments

Talking to Transformers

https://miraos.org/blog/2026/05/02/talking-to-transformers
2•taylorsatula•14m ago•0 comments

Supercollider

https://supercollider.github.io/
1•andyjohnson0•16m ago•0 comments

Separating what AI does well from what code does well

https://claude.com/blog/how-kepler-built-verifiable-ai-for-financial-services-with-claude
2•eddiehammond•17m ago•1 comments

Original Volkov Commander Sources

https://github.com/ddanila/vc
2•begoon•18m ago•0 comments

Mapping Notable Geo-Triangles

https://nickscip.xyz/projects/triangles/
1•nickscip•18m ago•0 comments

Open source desktop app for studying online courses

https://github.com/tonhowtf/omniget
1•axiomdata316•21m ago•0 comments

Show HN: Security Scanner for Agent Skills and MCP

https://github.com/snyk/agent-scan
2•lirantal•21m ago•0 comments

Lyra 2.0: Explorable Generative 3D Worlds

https://research.nvidia.com/labs/sil/projects/lyra2/
1•jonbaer•22m ago•1 comments

Past Ferrari Models, 1947–2023

https://www.ferrari.com/en-US/auto/past-model
1•NaOH•22m ago•0 comments

Show HN: A Privacy tool that finds and hides sensitive data in phtots/videos

https://www.scanon.ai/
1•lotuslabs•23m ago•0 comments

A GitHub for Maintainers

https://nesbitt.io/2026/05/02/a-github-for-maintainers.html
1•milkglass•23m ago•1 comments

Public Runtime for Convera for LLM's

https://github.com/cjparadise79/CONVERA-PUBLIC
1•cjparadise•25m ago•1 comments

Show HN: Ableton Live MCP

https://github.com/bschoepke/ableton-live-mcp
3•bschoepke•26m ago•1 comments

MCP-x-Mac-Seed – An AI agent that discovers Mac apps and writes its own tools

https://github.com/reverendish/mcp-x-mac-seed
1•ishsitotombe•28m ago•0 comments

BYOMesh – New LoRa mesh radio offers 100x the bandwidth

https://partyon.xyz/@nullagent/116499715071759135
5•nullagent•28m ago•2 comments

What Happens When the World Is Fatherless

https://elaynekalila.substack.com/p/what-happens-when-the-world-is-fatherless
1•rendx•30m ago•0 comments

Show HN: Orchestrate Dockerized Claude Code sessions from your issue tracker

https://github.com/smithy-ai/smithy-ai
1•t0mas88•33m ago•0 comments

Should You Be a Carpenter? [video]

https://www.youtube.com/watch?v=RJyPVLMyyuA
1•DeathArrow•33m ago•0 comments

Caisi Evaluation of DeepSeek V4 Pro

https://www.nist.gov/news-events/news/2026/05/caisi-evaluation-deepseek-v4-pro
1•chvid•35m ago•0 comments
Open in hackernews

Against SQL (2021)

https://www.scattered-thoughts.net/writing/against-sql/
4•yladiz•1y ago

Comments

rawgabbit•1y ago
Sorry. These criticisms don’t make much sense.

The author says SQL is the language for manipulating relational data. And then proceeds to complain SQL sucks at manipulating JSON.

Hmm. JSON is not relational. SQL expects data to be in third normal form.

If you are primarily working with JSON, please use something else.

The other two criticisms about SQL verboseness and reluctance to employ functions and other memory manipulations is the author’s confusion of the intended purpose of SQL. SQL treats data as the first class citizen. Think of data as the noun. SQL DML and SQL functions are modifiers. This is why SQL appears verbose. It is dragging all these data structures around. If you want to reduce SQL’s verbosity then you need to take an axe to the raw tables themselves and make them all cookie cutter. But then you have a completely different problem.