frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Air pollution may reduce health benefits of excercise

https://medicalxpress.com/news/2025-11-air-pollution-health-benefits.html
1•fuzzythinker•8m ago•0 comments

Show HN: Swatchify – CLI to get a color palette from an image

https://james-see.github.io/swatchify/
1•jamescampbell•9m ago•0 comments

One-fifth of the jobs at your company could disappear as AI automation takes off

https://www.theregister.com/2025/11/27/ai_employee_overcapacity_report/
1•pjmlp•11m ago•0 comments

slbounce: DRTM Secure-Launch implementation for Qualcomm devices

https://github.com/TravMurav/slbounce
1•transpute•12m ago•0 comments

How a Data Model Dependency Nearly Derailed My Project

https://medium.com/@HobokenDays/the-fate-of-shared-data-model-cf8a3dc88ac9
1•steven-123•15m ago•0 comments

Show HN: Codex Swarm – Local ChatGPT swarm for coding with Git-tracked agents

https://github.com/basilisk-labs/codex-swarm
1•densmirnov•19m ago•0 comments

Show HN: I made a shell with AI suggestions – Caroushell

https://github.com/ubershmekel/caroushell
2•ubershmekel•21m ago•0 comments

Brendan Gregg on being copied as an 'AI Brendan'

https://www.brendangregg.com/blog//2025-11-28/ai-virtual-brendans.html
2•anitil•21m ago•1 comments

Show HN: Ray-BANNED, Glasses to detect smart-glasses that have cameras

https://github.com/NullPxl/banrays
1•nullpxl•25m ago•0 comments

Git-reabsorb: Reorganize Git commits with new structure using an LLM

https://github.com/AllyMarthaJ/git-reabsorb
1•benno128•25m ago•0 comments

Mission Critical Advanced Scheduling (ALAP/ASAP) System

https://github.com/rodmena-limited/scriptplan
1•rodmena•27m ago•0 comments

The China That the World Sees Is Not the One I Live In

https://www.nytimes.com/2025/11/13/opinion/china-politics-social-public-mood.html
1•kaycebasques•28m ago•1 comments

Generator Website

1•generatorsite•30m ago•0 comments

CSS inspiration is on the rise These are awesome tbh

https://twitter.com/BalintFerenczy/status/1946198804694245486
1•iamA_Austin•30m ago•0 comments

What's cooking on Sourcehut? Q4 2025

https://sourcehut.org/blog/2025-11-20-whats-cooking-q4-2025/
1•Kerrick•36m ago•0 comments

Around 500M PCs are holding off upgrading to Windows 11, says Dell

https://www.theverge.com/news/831364/dell-windows-11-upgrade-numbers-earnings-call-q3-2025
4•Fiveplus•38m ago•1 comments

More than 93% discount for Free Software on Black Friday;)

https://mastodon.social/@fsfe/115625326159147544
2•kirschner•41m ago•0 comments

The tech-debt death spiral

https://lindbakk.com/blog/the-tech-debt-death-spiral
3•Seb-C•41m ago•0 comments

Awesome Version Managers

https://github.com/bernardoduarte/awesome-version-managers
1•saikatsg•51m ago•0 comments

How to use Linux vsock for fast VM communication

https://popovicu.com/posts/how-to-use-linux-vsock-for-fast-vm-communication/
1•mfrw•57m ago•0 comments

Black Friday Deals for Developers and Tech Teams

https://github.com/Pimjo/black-friday-deals
1•vinishbhaskar•1h ago•1 comments

WhisperThunder – A New Fast, High-Quality Text-to-Video Model

https://www.whisperthunder.top/
2•RyanMu•1h ago•1 comments

Show HN: AI Agents for Customer Support

https://www.sparrowdesk.com/ref=hn
1•jgm22•1h ago•0 comments

Ask HN: As CTO, do you pick JavaScript/TS as the default stack?

2•sawirricardo•1h ago•5 comments

World War AI

https://www.epsilontheory.com/world-war-ai/
3•koolhead17•1h ago•1 comments

Are We Becoming Distilled Versions of AI?

2•3chinproblem•1h ago•2 comments

Show HN: I Am Building an Intuitive Database GUI for ClickHouse and Postgres

https://www.datacia.app
3•rwiteshbera•1h ago•1 comments

Lot Is Back

https://lot-systems.com
1•vadikmarmeladov•1h ago•0 comments

Billiard Fractals: The Infinite Patterns Hidden in a Rectangle

https://xcontcom.github.io/billiard-fractals/docs/article.html
3•grandpanda•1h ago•2 comments

TigerStyle: Coding philosophy focused on safety, performance, dev experience

https://tigerstyle.dev/
17•nateb2022•1h ago•4 comments
Open in hackernews

Against SQL (2021)

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

Comments

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