frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Scott Aaronson's View of My View About Quantum Computing

https://gilkalai.wordpress.com/2026/03/10/scott-aaronsons-view-of-my-view-about-quantum-computing/
1•speckx•12s ago•0 comments

More tokens, less cost: why optimizing for token count is wrong

1•nicola_alessi•44s ago•0 comments

Meta acquires AI agent social network Moltbook

https://www.theguardian.com/technology/2026/mar/10/meta-acquires-moltbook-ai-agent-social-network
1•bookofjoe•3m ago•1 comments

Time Travel Has Been Done

1•johnnyVincento•4m ago•0 comments

Qt SQL Under LGPL Despite MariaDB Under GPL

https://www.smallstepsystems.com/qt-sql-under-lgpl-despite-mariadb-under-gpl/
1•jandeboevrie•4m ago•0 comments

Thinking Deeply About Theming and Color Naming

https://css-tricks.com/thinking-deeply-about-theming-and-color-naming/
1•PaulHoule•5m ago•0 comments

Codex Monitor

https://github.com/Dimillian/CodexMonitor
1•tosh•6m ago•0 comments

Show HN: VeilPhantom – Open-source on-device PII detection for AI pipelines

https://helloveil.com/sdk/
1•nakaiwilliams•8m ago•0 comments

10 years of AlphaGo: The turning point for AI [video]

https://www.youtube.com/watch?v=qoinGjj60Fo
1•simonpure•8m ago•0 comments

NASA and SpaceX disagree about manual controls for lunar lander

https://arstechnica.com/space/2026/03/nasa-and-spacex-disagree-about-manual-controls-for-lunar-la...
2•voxadam•8m ago•0 comments

Ask HN: Does automatic multilingual support make sense for a launch platform?

1•LeanVibe•8m ago•1 comments

Planning a multi-city trip without the spreadsheet nightmare

https://explorinder.com
1•pabloceg•8m ago•1 comments

Designing Interfaces for AI Agents Instead of Humans

https://twitter.com/rot13maxi/status/2031429866109710649
1•rot13maxi•10m ago•0 comments

The Clarity Act, Stablecoin Yield and the Chinese Crypto Bogeyman

https://toddhbaker.substack.com/p/the-clarity-act-stablecoin-yield
1•petethomas•10m ago•0 comments

Show HN: OpenMolt – A programmatic AI agent framework for Node.js

https://openmolt.dev
1•ybouane•11m ago•0 comments

AI, Human Cognition and Knowledge Collapse (NBER Working Paper)

https://www.nber.org/papers/w34910
1•imakwana•13m ago•0 comments

Agent API Spec Design: When API Callers Change from Application to AI Agent

https://github.com/tomsun28/agent-api-spec
1•tomsun28•17m ago•1 comments

Prioritizing energy intelligence for sustainable growth

https://www.technologyreview.com/2026/03/10/1133972/prioritizing-energy-intelligence-for-sustaina...
1•joozio•18m ago•0 comments

US added more solar than any other technology in 2025, but is down 14% from 2024

https://www.nytimes.com/2026/03/10/business/energy-environment/donald-trump-solar-energy-batterie...
6•epistasis•18m ago•0 comments

Cardiac side effects of RNA-based SARS-CoV-2 vaccines

https://bpspubs.onlinelibrary.wiley.com/doi/10.1111/bph.16262
3•blumomo•18m ago•1 comments

Epstein Fallout Tracker

https://epstein.observer
1•oldfuture•18m ago•0 comments

Why AI is both a curse and a blessing to open-source developers

https://www.zdnet.com/article/ai-curse-and-blessing-to-open-source-software-developers/
1•CrankyBear•18m ago•1 comments

Astro 6.0

https://astro.build/blog/astro-6/
2•todotask2•19m ago•0 comments

Fixing request smuggling vulnerabilities in Pingora OSS deployments

https://blog.cloudflare.com/pingora-oss-smuggling-vulnerabilities/
1•Tiberium•20m ago•0 comments

Using cookies to hack into a tech college's admission system

https://eaton-works.com/2026/03/09/skcet-hack/
1•nfriedly•21m ago•0 comments

StackOverflow Site Redesign Thread (2026)

https://meta.stackoverflow.com/questions/438177/new-site-design-and-philosophy-for-stack-overflow...
1•all2•21m ago•0 comments

Stay in the Loop: How I Use Claude Code

https://jola.dev/posts/stay-in-the-loop
1•shintoist•22m ago•0 comments

Flock Flocked up: How a license plate camera misread unraveled one man's life

https://www.businessinsider.com/flock-safety-alpr-cameras-misreads-2026-3
9•text0404•23m ago•0 comments

Rcarmo/PhotosExport: Export All Your Data from Apple Photos

https://github.com/rcarmo/PhotosExport
1•rcarmo•23m ago•0 comments

Paying without Google: New consortium wants to remove custom ROM hurdles

https://www.heise.de/en/news/Paying-without-Google-New-consortium-wants-to-remove-custom-ROM-hurd...
3•derbOac•24m ago•0 comments
Open in hackernews

Against SQL (2021)

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

Comments

rawgabbit•10mo 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.