frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Steep population declines in most countries are expected to have negative impact

https://www.nature.com/articles/d41586-025-02615-6
1•rntn•1m ago•0 comments

CVify – AI-powered CV and resume builder

https://cvify.lovable.app
1•pitchpalfounder•4m ago•0 comments

Porn censorship is going to destroy the internet

https://mashable.com/article/age-verification-is-going-to-destroy-the-entire-internet
7•Teever•5m ago•1 comments

Forklifts Require Training

https://www.zacsweers.dev/forklifts-require-training/
3•pandanomic•7m ago•0 comments

How to Give Your RTX 4090 Nearly Infinite Memory for LLM Inference

https://medium.com/data-science-collective/how-to-give-your-rtx-gpu-nearly-infinite-memory-for-llm-inference-de2c57af1e82
1•dikobraz•7m ago•1 comments

Why AI chatbots make bad teachers – and how teachers can exploit that weakness

https://www.zdnet.com/article/why-ai-chatbots-make-bad-teachers-and-how-teachers-can-exploit-that-weakness/
1•warrenm•8m ago•0 comments

Specification Grounding: The Missing Link in Vibe Coding

https://unstract.com/blog/specification-grounding-vibe-coding/
1•naren87•8m ago•0 comments

Show HN: Free privacy-focused PDF tracking with analytics

https://pdftrackr.com
1•olehtsyupa•9m ago•1 comments

Aulico – Track all markets with AI

https://www.aulico.com/
1•vasilepeste•10m ago•0 comments

Air Canada strike: Flight attendants reach tentative agreement

https://www.thestar.com/business/air-canada-strike-union-reaches-tentative-agreement-return-to-full-service-could-take-a-week/article_2ae018ef-696a-495e-8cff-e056d04f6d06.html
2•ryandv•11m ago•1 comments

Eric Schmidt: Silicon Valley Needs to Stop Obsessing over Superhuman A.I

https://www.nytimes.com/2025/08/19/opinion/artificial-general-intelligence-superintelligence.html
2•ryan_j_naughton•11m ago•0 comments

Small Objects, Big Gains: Benchmarking Tigris Against AWS S3 and Cloudflare R2

https://www.tigrisdata.com/blog/benchmark-small-objects/
2•nethunters•12m ago•0 comments

Meta Restructures AI Group Again in Pursuit of Superintelligence

https://www.bloomberg.com/news/articles/2025-08-19/meta-restructures-ai-group-again-in-pursuit-of-superintelligence
2•makaimc•14m ago•0 comments

Government must stop children using VPNs to dodge age checks on porn sites

https://www.independent.co.uk/news/uk/politics/vpns-porn-online-safety-act-childrens-commissioner-b2810092.html
2•LorenzoGood•15m ago•0 comments

Zed for Windows: What's Taking So Long?

https://zed.dev/blog/windows-progress-report
1•meetpateltech•15m ago•0 comments

Show HN: I built a app to find your first users by listening to Reddit community

https://www.redditgeniusai.xyz/
1•cosmosfr•16m ago•0 comments

Scientists Create Tool That Realistically Relights Photos in 3D

https://petapixel.com/2025/08/18/scientists-create-incredible-tool-that-realistically-relights-photos-in-3d/
2•warrenm•19m ago•0 comments

Why success is hard to crack

https://medium.com/@khalilliouane/why-success-is-hard-to-crack-32fc206abe97
2•liouanos•19m ago•0 comments

5G Sniffing and Exploit via Software Defined Radio

https://github.com/asset-group/Sni5Gect-5GNR-sniffing-and-exploitation
2•nwhacker•21m ago•0 comments

Ask HN: Which LLM service has the fairest pricing for students?

1•sonderotis•21m ago•6 comments

Why nurturing the gut microbiota could resolve depression and anxiety

https://www.nature.com/articles/d41586-025-02633-4
2•bookofjoe•22m ago•1 comments

Filen.io: Next Generation End-to-End Encrypted Cloud Storage

https://filen.io
2•rpgbr•27m ago•0 comments

Product Managers would you use this tool

https://www.resyncbase.com
1•ifeoluwak•27m ago•1 comments

Optimizing Ourselves to Death

https://ofdollarsanddata.com/optimizing-ourselves-to-death/
1•warrenm•27m ago•0 comments

V9.2-3 Update v2.0 ECO Kit for VSI OpenVMS x86-64

https://docs.vmssoftware.com/v9-2-3-update-v2-eco-kit-for-openvms-x-86-64-release-notes/
1•gjvc•27m ago•0 comments

RTX Remix Mod Contest Winners

https://www.nvidia.com/en-us/geforce/news/rtx-remix-mod-contest-winners/
1•mfro•30m ago•0 comments

MCP for Cisco Meraki API

https://github.com/selent-ai/selent-mcp
1•psoto•33m ago•0 comments

Tile-Based Image Compression (2014)

https://pointersgonewild.com/2014/01/02/tile-based-image-compression/
2•ikeashark•33m ago•0 comments

TextMeWhenItHappens – Get one text when an event occurs

https://TextMeWhenItHappens.com
1•sammartin•34m ago•0 comments

Build vs. Buy in the Age of AI

https://www.svpg.com/article-build-vs-buy-in-the-age-of-ai/
1•xnx•34m ago•0 comments
Open in hackernews

Tell HN: The case for CRUD apps in the age of AI

3•prmph•2h ago
I hear this denigration of CRUD apps all the time, especially nowadays as folks (even here on HN) think AI will erase the need for this kind of development

But, people forget that CRUD apps can be as complex or simple as they need to be. A CRUD app is identified as such by its purpose, not the sophistication of it.

Right now I'm wring a web app that's basically manages some domain data in a central db, but guess the kinds of things I have had to deal with. Here a a few (there are many more), in no particular order:

- Caching and load balancing infrastructure.

- Crafting an ORM that handles caching, transactions, and, well, CRUD, but in a consistent, well-typed, and IO-provider-agnostic manner (IO providers could be: DBs like Postgres, S3-compatible object stores, Redis, Sqlite, Localstorage, Filesystems, etc. Yes, I need all those).

- Concurrent user access in manner that is performant and avoids conflicts.

- Db performance for huge datasets (so consideration of indexes, execution plans, performant queries, performant app architecture, etc, etc)

- Defining fluent types for defining the abstract API methods that form the core of the system

- Defining types to provide strong typing for routes that fulfill each abstract API method.

- Defining types to provide strongly-typed client wrappers for each abstract API method

- How to choose the best option for application- and API security (Cookies?, JWT?, API keys? Oauth?)

- Choosing the best UI framework for the requirements of the app. I actually had to write a custom react-like library for this.

- Media storage strategy (what variants of each media to generate on the server, how to generate good storage keys, etc.

- Writing tooling scripts that are sophisticated enough to help me type-check, build, text, and deploy the app just in the way I want

- Figuring out effective UI designs for CRUD pages, with sorting, filtering, paging, etc built in . This is far from simple. For just one example, naive paging is not performant, I need to use keyset pagination.

- Doing all the above with robust, maintainable, and performant code

- Writing effective specs and docs for all my decisions and design for the the above

And many many more! I've been working on this "CRUD" app for years as a greenfield project that will be the flagship product of my startup. The techniques I have to evolve to solve various challenges could easily fill entire books.

Comments

WASDAai•2h ago
A lot of people dismiss CRUD apps because they only picture a simple todo list or blog engine. But the moment you actually try to build something production grade you run into all the things you listed: concurrency, caching, type safety across layers, indexing strategies, keyset pagination, auth tradeoffs, UI ergonomics, etc. The funny part is most businesses still run on what boil down to CRUD apps. Accounting systems, ERPs, logistics dashboards, CRMs they are “just CRUD,” but they move billions of dollars. AI can help with parts of this (maybe codegen for boilerplate or smarter query planning), but it does not erase the problem space. If anything it makes consistency, reliability, and security even more critical. To me the interesting angle isn’t “AI replaces CRUD,” it’s “CRUD is the substrate that everything, including AI apps, has to sit on.”
ben_w•1h ago
What WASDAai says is entirely fair (though caveat: a shockingly large number of production apps have really mediocre implementations from the war stories I've heard).

But:

This description sounds less like "I am making a CRUD app" and more like "I am making a generic CRUD app framework/dev tool".

Which is fine, and yes LLMs are not yet good enough to vibe their way at that scale, but it's not the same thing as any specific, concrete, CRUD app that such a tool may or many not also produce.

Actually, it gets worse:

> - Choosing the best UI framework for the requirements of the app. I actually had to write a custom react-like library for this.

Danger, Will Robinson, danger!

UI frameworks sure are fun to write. Done it loads of times myself. But one of those times was before jQuery existed, and was because it was before jQuery existed. Another was before Cocos2d existed, and because it was before Cocos2d existed.

If this was a fun side project then sure, have at it, but as a startup? I've seen people want to reinvent every part of their stack, as you are doing, and it took them 14 years to ship as Early Access.

Unless you're literally one of the FAANG companies, then devs — including ones you may need to hire, even if I'm reading the wrong thing between the lines and this isn't a CRUD-maker, you'll probably need to hire people at some point — aren't going to want to learn yet another UI framework to customise the output of your product.