frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: FrontStep v0.5.1

https://github.com/GiovanniCst/frontstep
1•J_cst•1m ago•0 comments

Dual Battery Automation in Home Assistant (Part 2)

https://du.nkel.dev/blog/2026-07-26_dual_battery_automation/
1•Helmut10001•1m ago•0 comments

Verifying Your FIDO2 Hardware Security Key: What a Browser Can Confirm

https://capytoolkit.com/blog/security-privacy/verifying-your-fido2-hardware-security-key-what-a-b...
1•ChillyCapy•2m ago•0 comments

Shove – a CLI tactics game Claude Fable 5 designed, built, and played

https://github.com/robss2020/claude-fable-5-having-fun
1•Bluestein•3m ago•0 comments

Show HN: Website Font Usage Explorer

https://explorer.withfudge.com
1•sim04ful•11m ago•0 comments

Title: Show HN: Gitoro – European Git Hosting, CI/CD and Collaboration Platform

https://gitoro.com/
1•steffenrudk•12m ago•1 comments

Hard to wake up for Fajr prayer so Ive developped an impossible to snooze alarm

https://play.google.com/apps/testing/com.appforfajr.app;https://groups.google.com/g/betatesters-f...
1•luckylokman•14m ago•1 comments

Title: DeepSeek V4 Is Live on ClawBox, and the Agentic Coding Jump Is Real

https://clawbox.com/blog/2026-08-14-deepseek-v4-is-live-on-clawbox-agentic-coding-jump
1•PeturID•14m ago•0 comments

Europe is stuck between "rock and a hard place" on launch costs & rocket reuse

https://arstechnica.com/space/2026/08/policy-experts-europe-stuck-between-rock-and-a-hard-place-o...
1•bell-cot•15m ago•1 comments

Writing and Reading Practices Revisited

https://www.laviniamarin.eu/writing-and-reading-practices-revisited/
1•plastic-enjoyer•20m ago•0 comments

Show HN: Agent-shell – vendor-neutral chat with AI agents in Emacs

https://xenodium.com/agent-shell-0-73-updates#agent-shell-enters-the-chat
1•xenodium•20m ago•1 comments

Build Airbnb on WordPress – Steem WP Plugin Generator

https://steem.dev/signin?next=%2Fapp%3Fproject%3D4e4419f5-0fbd-4371-9bec-0e4334a46388
1•startuphubai•20m ago•0 comments

STL Studio – a free, self-hosted library manager for 3D print files

https://github.com/RBStephenson/STL-Studio
1•azulrathas•22m ago•0 comments

Show HN: A Control Panel for Electronics Prototypes

https://blog.oxplot.com/electronics-prototype-control-panel/
2•oxplot•26m ago•0 comments

Double limits (in Calculus) Understood Visually [pdf]

https://projecteuclid.org/journals/bulletin-of-the-american-mathematical-society/volume-3/issue-2...
1•srean•29m ago•0 comments

Show HN: Build SaaS Applications Without Writing Back End Code [video]

https://www.youtube.com/watch?v=qdGSEJaJS78
1•WolfOliver•30m ago•0 comments

New YouTube changes target automated content farms [video]

https://www.youtube.com/watch?v=bB3WUap3aSM
2•Gecko4072•30m ago•0 comments

Predicting delivery times without asking devs for a single estimate

https://tyle-brown.vercel.app/about
1•byronical•30m ago•0 comments

Lilo – A tiny Markdown notes widget with a knowledge graph

https://github.com/HellterEnjoy/Lilo
1•HellterEnjoy•34m ago•2 comments

Lazy loading YouTube embeds in Hugo

https://eternodevir.com/palimpsests/logs/lazy-loading-youtube-embeds/
1•sedboyz•37m ago•0 comments

Ask HN: Have you worked or collaborated with anyone from HackerNews?

1•miroljub-petrov•38m ago•0 comments

Map: 5.2-Magnitude Earthquake Strikes Southern Spain

https://www.nytimes.com/interactive/2026/08/14/world/europe/spain-quake-tracker.html
2•Bluestein•43m ago•0 comments

Agentic Reasoning for Large Language Models

https://arxiv.org/abs/2601.12538
1•Anon84•47m ago•0 comments

A community for ideas that haven't earned their place yet

https://articles.ideaorbits.org/a/ideaorbits-design-guide/
1•yannana•50m ago•0 comments

Instagram's New Logo

https://www.theverge.com/tech/979583/this-is-instagrams-new-logo
2•embedding-shape•54m ago•2 comments

Minnesota Senate Primary: The Growing Partisan Divide over Israel

https://medium.com/freedomofthought/minnesotas-senate-primary-and-the-growing-partisan-divide-ove...
1•raynchad•55m ago•0 comments

OpenAI slows release of Astra model citing cyber capabilities

https://www.axios.com/2026/08/07/openai-astra-model-delay-cybersecurity-risks
2•Bluestein•55m ago•0 comments

The Download: Flock's new rules, cloning's future, and children's cells

https://www.technologyreview.com/2026/08/14/1142033/the-download-flock-new-rules-cloning-future/
1•joozio•1h ago•0 comments

Reliance on Vision Drove Varied Brain Development in Primates

https://trinity.duke.edu/news/brain-development-primates-research
2•wjSgoWPm5bWAhXB•1h ago•0 comments

Anthropic sees AI risks rising, no plan to release stronger "Model 2"

https://www.axios.com/2026/08/14/anthropic-model-2-ai-risk
2•ironyman•1h 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.