frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Optimal Journaling Book Choice?

1•herodoturtle•27s ago•0 comments

DRAM Price Fixing Scandal

https://en.wikipedia.org/wiki/DRAM_price_fixing_scandal
2•kamranjon•8m ago•0 comments

With crossplanes, Helm is all you need

https://medium.com/zencity-engineering/now-the-infrastructure-is-boring-too-and-thats-still-a-com...
1•alonisser•10m ago•1 comments

Cogent France: « perform an orderly shutdown of your equipment »

https://www.mail-archive.com/frnog@frnog.org/msg80526.html
1•southerntofu•12m ago•0 comments

Did AI write this article?

https://www.economist.com/graphic-detail/2026/06/16/did-ai-write-this-article
2•ijidak•18m ago•0 comments

Is AI Coming for Our Jobs?

https://jacobin.com/2026/02/ai-technology-productivity-growth-job-loss
2•one33seven•23m ago•0 comments

VSCode Blogs

https://code.visualstudio.com/blogs
2•saikatsg•24m ago•0 comments

The Tokenpocalypse:Companies Are Scrambling to Stop Spending So Much on AI

https://www.404media.co/the-tokenpocalypse-is-here-companies-are-scrambling-to-stop-spending-so-m...
2•Gedxx•24m ago•0 comments

Show HN:Another alternative against Codex Record and Replay

https://www.visualbuild.me
2•visualbuildme•25m ago•0 comments

Wikipedia advocacy shapes LLM values

https://arxiv.org/abs/2606.24890
1•50kIters•26m ago•0 comments

Make AI Boring Again

https://charitydotwtf.substack.com/p/make-ai-boring-again
2•BerislavLopac•35m ago•0 comments

Robert Schiller: This Doommaxxing Has Got to Stop

https://www.nytimes.com/2026/06/22/opinion/ai-doom-jobs-economy.html
1•benwen•35m ago•1 comments

Questions

https://forms.cloud.microsoft/r/PZDe3Z3Nzdhttps://forms.cloud.microsoft/r/PZDe3Z3Nzd
3•InjiChoe•40m ago•1 comments

Show HN: Japanese Language AI Tutor in 3D classroom

https://unihongo.com
3•trinhngocdieu•48m ago•0 comments

The Empty Field That Wasn't: GPS, OTAD and Two Decades of Encrypted Broadcasts

https://sjmurdoch.github.io/gps-special-messages/
1•fratellobigio•48m ago•0 comments

Measuring Is Not Enough Anymore

https://fi-le.net/evals/
2•fi-le•49m ago•0 comments

Vibecoded app giving you the vibes

https://wristbreak.app
3•qtl•52m ago•0 comments

AI-website-cloner-template: Clone any website using AI coding agents

https://github.com/JCodesMore/ai-website-cloner-template
4•vantareed•58m ago•0 comments

Half-Life 2 in a Browser

https://hl2.slqnt.dev/
67•panza•58m ago•14 comments

Show HN: LoveInvoice – a free invoice tool for freelancers and small businesses

https://loveinvoice.com
1•rkn7•58m ago•0 comments

Bad Epoll: The bug Mythos missed

https://compsec.snu.ac.kr/blog/badepoll
8•j-jaeyoung•59m ago•1 comments

How Big Tech Hides the True Cost of the AI Buildout [video]

https://www.youtube.com/watch?v=YrJzjC4kKCY
1•AbbeFaria•1h ago•0 comments

Ask HN: What do you do to save tokens?

3•bonigv•1h ago•0 comments

India trades over four-fifths of the equity options. Nine in ten lose

https://indiadispatch.com/p/nse-ipo
3•bahularora•1h ago•0 comments

Ask HN: What was the biggest contributor to your happiness in the past year?

3•chistev•1h ago•2 comments

Faster KNN search in Manticore: 2-pass HNSW, batched distances, and AVX-512

https://manticoresearch.com/blog/knn-hnsw-performance/
1•snikolaev•1h ago•0 comments

A 25-Year-Old Blog Looks Back at 40 Years of Computing

https://www.markround.com/blog/2026/06/17/25-its-only-when-you-look-back/
3•damethos•1h ago•0 comments

Nakba Exhibition in Canadian Museum of Human Rights

https://humanrights.ca/exhibition/palestine-uprooted-nakba-past-and-present
2•xg15•1h ago•0 comments

Treat the Context Window as a Data Assembly Problem

https://klr-pattern.github.io/pydantic-resolve/blog_context_assembly_for_llm/
2•tank-34•1h ago•0 comments

Americans are inundated with suspected scams

https://apnews.com/article/poll-scams-law-enforcement-social-media-389f8d824b89fa434c297729f2aaf56d
3•rawgabbit•1h ago•3 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.