frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Sdfs

1•hari_vardhan•1m ago•0 comments

Ask HN: Are there any developers prefer writing code manually?

1•trowa159•5m ago•0 comments

Roundup of July 2026 Bootstrapper Events

https://bootstrappersbreakfast.com/2026/06/23/roundup-of-july-2026-bootstrapper-events/
1•skmurphy•6m ago•1 comments

Fake Windows: highly realistic LED screens that simulates sunlight into a room

https://twitter.com/iPaulCanada/status/2070560999300559283
4•aurenvale•9m ago•0 comments

The Real Cost of Using AI in 2026

https://adlrocha.substack.com/p/adlrocha-the-real-cost-of-using-ai
1•adlrocha•11m ago•0 comments

Hungary holds first post-Orban Budapest Pride march

https://www.dw.com/en/hungary-holds-first-post-orban-budapest-pride-march/a-77736596
2•bushwart•12m ago•0 comments

I-Regexp: An Interoperable Regular Expression Format

https://datatracker.ietf.org/doc/html/rfc9485
1•tonyg•13m ago•0 comments

Can we create a shield to protect Earth from solar storms?

https://physicsworld.com/a/can-we-create-a-shield-to-protect-earth-from-solar-storms/
1•visha1v•13m ago•0 comments

You have violated the rules of our community [Humor]

https://www.mangialardi.it/you-have-violated-the-rules-of-our-community/
1•rm30•18m ago•1 comments

Itcss: Scalable and Maintainable CSS Architecture (2021)

https://www.xfive.co/blog/itcss-scalable-maintainable-css-architecture
1•toilet•20m ago•0 comments

The US Lock of the Web

https://ache.one/notes/the-us-lock-of-the-web
1•enz•20m ago•0 comments

Flick – Self-hostable file sharing with human-friendly codes (Go/Next.js)

https://github.com/Flick-Corp/flick
1•dellixou•20m ago•0 comments

Show HN: CCA-F Gotchas – exam pitfalls turned into an earworm playlist

https://suno.com/playlist/8ee4368a-294e-4369-8896-c9eba40768ce
1•dvaughan•20m ago•0 comments

Chinese tech hub's shift into robotaxis leaves drivers by the wayside

https://www.ft.com/content/b1445598-e5e3-4530-9e82-e0155c44106b
1•bazzmt•21m ago•1 comments

A Transformer Becomes an LLM

https://bharad.dev/blog/from-transformer-to-llm
1•bharadwajp•21m ago•0 comments

6 Facts About Europe and Air Conditioning

https://heatmap.news/daily/europe-air-conditioning
1•salonium_•24m ago•0 comments

Policymakers can prep for a potential AI job apocalypse

https://www.wordsinsearchlight.org/p/how-policymakers-can-prep-for-a-potential
1•m-hodges•24m ago•0 comments

Show HN: Hikaru Labs – A private, 100% local alternative to iLoveIMG

https://hikarulabs.xyz
2•CFBL•24m ago•1 comments

Can China build its own ASML?

https://nikkei.shorthandstories.com/can-china-build-its-own-asml/
3•pieterr•40m ago•0 comments

China's CXMT Is Set to Challenge DRAM Incumbents

https://newsletter.semianalysis.com/p/chinas-cxmt-is-set-to-challenge-dram
5•pieterr•45m ago•0 comments

Authority is the degenerate case: what else propagates through the link graph?

https://zenodo.org/records/20981883
1•JasonDuke•46m ago•0 comments

Why growth harder to find: good ideas aren't becoming rare, but hard to share

https://www.nber.org/papers/w35182
1•oliculipolicula•51m ago•0 comments

Wouter van Oortmerssen on Surviving in Early Access and Escaping Minecraft

https://report.wand.com/interviews/voxray-voxile-interview
1•mikelabatt•53m ago•0 comments

Inference, Diffusion, World Models, and More – YC Paper Club [video]

https://www.youtube.com/watch?v=wE1ZgJdt4uM
2•frenchmajesty•53m ago•0 comments

Guess what, lawmakers? The Runtime Is the Regulator

https://www.mikehyland.com/blog/ai-governance-zero-trust-runtime
1•mjhyl•54m ago•1 comments

Ask HN: Which Induction Cooktops Have the Best User Experience (UI/UX)?

1•evolve2k•55m ago•1 comments

Be the First to Test It

1•carlostkd•56m ago•0 comments

AI Is the Best Thing to Happen to Security

https://badshah.io/blog/ai-is-the-best-thing-to-happen-to-security/
2•ilreb•57m ago•0 comments

Ask HN: Who here would agree to replace parliaments with LLMs?

3•julienreszka•57m ago•4 comments

A new metadata engine for high performance Object Storage (not LSM, not B+ tree)

https://fractalbits.com/blog/metadata-engine-for-our-object-storage-from-lsm-tree-to-fractal-art/
6•rustshellscript•59m 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.