frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GitHub Copilot reviews cost creep

https://github.blog/changelog/2026-08-28-upcoming-changes-to-github-copilot-policies-and-billing/
1•whirlwin•3m ago•1 comments

Innovation Doesn't Happen on Schedule

https://www.thesignalist.io/s/innovation-doesnt-happen-on-schedule/
1•cirio•3m ago•0 comments

The Age of Average

https://www.alexmurrell.co.uk/articles/the-age-of-average
1•dwrodri•8m ago•0 comments

Show HN: Schist – the open source photo editor that feels nice to use

https://schist.app/
1•astrid__•8m ago•0 comments

Study: Blue light impairs the eye's ability to distinguish fine detail most

https://research.uga.edu/news/blue-light-has-a-surprising-effect-on-your-eyes-study-finds/
1•giuliomagnifico•9m ago•0 comments

Advanced AI threatens global financial stability, says Bank of England boss

https://www.theguardian.com/business/2026/aug/31/advanced-frontier-ai-financial-stability-andrew-...
2•theanonymousone•13m ago•0 comments

How to Build Open Source for AI Agents

https://agentledco.substack.com/p/how-to-build-open-source-for-ai-agents
1•hsantana8•14m ago•0 comments

How an MIT research project became a global programming language

https://news.mit.edu/2026/how-mit-research-project-became-global-programming-language-0831
1•theanonymousone•15m ago•0 comments

The Hedgehog and the Fox

https://en.wikipedia.org/wiki/The_Hedgehog_and_the_Fox
1•dcminter•17m ago•0 comments

Sampling hard [quantum] circuits with verifiably high fidelity

https://arxiv.org/abs/2607.25941
1•thebeardisred•17m ago•0 comments

Peekl: An Alternative to Puppet and Ansible

https://peekl.dev/
1•redat00•18m ago•1 comments

If you work in software company, then you must be making Windows, Mouse Keyboard

https://medium.com/@gurvinder372/if-you-work-in-a-software-company-then-you-must-be-making-window...
1•gps372•20m ago•0 comments

Show HN: Sonde, a local code graph for AI agents that refuses to guess

https://github.com/anishmoncivarghese/sonde
1•anishvarghese•20m ago•0 comments

Soundwise.ai: Free AI Transcription That Respects Your Privacy

https://soundwise.ai
1•ShawnaWang•22m ago•0 comments

Ask HN: Are Prompt Injections "Malware"?

1•razorbeamz•25m ago•4 comments

KDE for Digital Sovereignty

https://kde.org/for/digital-sovereignty/
1•ognarb•26m ago•0 comments

ReactOS 0.4.16

https://reactos.org/project-news/reactos-0416-released/
1•marttt•28m ago•0 comments

IST as common time reference across the country

https://www.pib.gov.in/PressReleasePage.aspx?PRID=2304613&reg=48&lang=2
1•cyb0rg0•30m ago•0 comments

Attestation-Gated Key Release for Confidential Computing Workloads

https://confidential.ai/blog/attested-key-release
1•h0h0h0h0111•31m ago•1 comments

Two More Things

https://medium.com/@caseyspain/two-more-things-3cae579acaac
1•beauregardener•32m ago•0 comments

South Korea's 'AI for All' Push Gives Free Access to Every Citizen

https://www.wsj.com/tech/ai/south-koreas-ai-for-all-push-gives-free-access-to-every-citizen-451f6b2c
1•BearBest•32m ago•0 comments

Show HN: Live, step-through diagram embeds for Confluence

https://flostep.dev/blog/documentation-diagrams-already-out-of-date
1•pandurang90•34m ago•0 comments

Sliding-window beats linear attention

https://arxiv.org/abs/2608.28444
1•sbulaev•34m ago•0 comments

I built a local citation checker and caught papers citing wrong ArXiv IDs

https://strictcite.com/
1•Tughan•35m ago•0 comments

Why We're Teaching Programming Wrong: A Haskell Perspective [video]

https://www.youtube.com/watch?v=iV9UMNOTvN0
1•markusschlegel•35m ago•0 comments

Planetary prediction engine: Automating global models via Earth AI

https://research.google/blog/planetary-prediction-engine-automating-global-models-via-earth-ai/
1•geox•36m ago•0 comments

I was wrong about MCPs

https://mega.dev/wrong-about-mcps
3•overment•37m ago•0 comments

Photo-to-anime tools still feel stuck between"filterapps"and"prompt engineering"

https://animephotogen.com/
1•LumisYY•42m ago•0 comments

Anybuild

https://www.anybuild.run
1•jedisct1•42m ago•0 comments

The Starfish and the Spider [pdf]

https://earthprayer.net/library/Starfish-and-Spider-Ori-Brafman-Summary.pdf
1•rzk•44m 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.