frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Debian votes to allow "responsible use of generative AI"

https://lwn.net/Articles/1091231/
153•pluc•1h ago•89 comments

Indirect Calling of Nested Functions on GCC Without Executable Stack

https://uecker.codeberg.page/2026-08-29.html
11•uecker•1h ago•0 comments

Samsung's Processing-in-Memory (PIM)

https://chipsandcheese.com/p/hot-chips-2026-samsungs-processing
175•ingve•9h ago•57 comments

Creating the Aetheryte Radio

https://haz.ee/posts/aetheryte-radio.html
22•wonger_•1d ago•3 comments

Show HN: Typebase – A single-folder back end you write in TypeScript

https://typebase.io
20•andrewww-dev•3d ago•1 comments

GUIs should be fully keyboard-driven

https://ckardaris.com/blog/2026/08/28/keyboard-driven-guis.html
930•ckardaris•1d ago•457 comments

Glacier Mice

https://en.wikipedia.org/wiki/Glacier_mice
107•ostacke•4d ago•19 comments

Boot a Virtual iPhone via Apple's Virtualization.framework

https://github.com/Lakr233/vphone-cli
336•hentrep•16h ago•86 comments

Show HN: Galaxium, an experimental WebGPU space explorer

https://galaxium.app
49•guillaumec•5d ago•17 comments

SQLite as a Document Database (2020)

https://dgl.cx/2020/06/sqlite-json-support
5•lioeters•4d ago•0 comments

Htmx 4.0

https://four.htmx.org/announcements/2026-08-28-htmx-4.0.0-is-released
740•rmsaksida•1d ago•183 comments

Hunting Down a Go Runtime Bug on 32-Bit Embedded Systems

https://sigma-star.at/blog/2026/08/go-runtime-netpoll-bug/
69•birdculture•3d ago•6 comments

EVE Online moves to Python 3

https://www.eveonline.com/news/view/the-move-to-python-3-begins
112•TylerJaacks•4d ago•56 comments

Europe's last regular standard-gauge steam passenger service

https://parowozowniawolsztyn.pl/?page_id=2141
78•GungulSurm•2d ago•19 comments

U.S. sanctions against the A/I Collective

https://www.inventati.org/
657•exiguus•1d ago•647 comments

StemDeck, a free, open-source and local AI stem separator

https://github.com/stemdeckapp/stemdeck
162•thclpr•13h ago•45 comments

Time complexity of operations on Python's built-in types

https://docs.python.org/3.16/library/time-complexity.html
43•theanonymousone•4d ago•7 comments

I accidentally turned LLM memory into program analysis

https://pwning.systems/posts/llm-memory-program-analysis/
207•matt_d•15h ago•61 comments

Inception-style curved map for turn-by-turn directions

https://www.orbify.eu/demo/
561•smoser•1d ago•182 comments

TurboKV: Insanely fast Rust key-value store

https://github.com/kingroryg/turbokv
147•rgbimbochamp•12h ago•68 comments

Just the rumour of a bug is enough to find an exploit these days

https://anil.recoil.org/notes/rumour-is-the-exploit
357•avsm•23h ago•115 comments

Iceland votes on whether to restart talks on joining EU

https://www.bbc.com/news/articles/cn45vdxyvvlo
243•tosh•3h ago•289 comments

Queen Caroline turned King Arthur into an 18C royal PR strategy

https://theconversation.com/how-queen-caroline-turned-king-arthur-into-an-18th-century-royal-pr-s...
34•samizdis•4d ago•7 comments

Monzo Stand-In

https://monzo.com/blog/tolerating-full-cloud-outages-with-monzo-stand-in
104•coffeefuel•5d ago•46 comments

Our decision on Cursor following its acquisition by SpaceX

https://openai.com/index/our-decision-on-cursor-following-its-acquisition-by-spacex/
671•meetpateltech•13h ago•399 comments

Experiments with Plotter Art

https://sometimes.digital/posts/experiments-with-plotter-art/
81•surprisetalk•5d ago•7 comments

Does the Sumerian King List Align with Paleoclimate Events?

https://www.vectorian.be/articles/2026-06-07/sumerian-king-list-paleoclimate-alignment-explorer/
120•dev_l1x_be•15h ago•69 comments

Attimet (YC F24) Is Hiring Members of Technical Staff – Engineering and Research

https://www.ycombinator.com/companies/attimet/jobs/6btZFDg-member-of-technical-staff-engineering
1•kbanothu•22h ago

SteamOS 3.9.0 Preview

https://store.steampowered.com/news/app/1675200/view/689767056035283412
12•EspadaV9•1h ago•4 comments

Curvature Beziers: Improving on a timeless recipe

https://acko.net/blog/curvature-beziers/
139•leephillips•4d ago•20 comments
Open in hackernews

Show HN: Typebase – A single-folder back end you write in TypeScript

https://typebase.io
18•andrewww-dev•3d ago
Hey HN!

I built Typebase, a library that gives you Convex's DX with Supabase's openness.

After trying Supabase I liked how fast it is to spin up a DB and auth, but really didn't like using RLS and SQL for authorization. With Convex I loved how your server "lives" in your code, but disliked the DB model and the realtime-first defaults.

With Typebase you just write TS files inside a typebase/ folder in your existing repo. You can define your DB tables inside a schema.ts file and export server functions that your frontend calls like local functions, fully typed. Auth is built in.

Then one CLI command uploads your server to any of the available providers (Vercel, Cloudflare Workers or Deno Deploy for the servera and Neon for the DB), or generates the code so you can deploy it wherever you want.

Built on top of oRPC, Drizzle, and better-auth.

Happy to answer any questions or feedback!

Comments

xixixao•13m ago
Very cool!

Note that you can run Convex on top of your own Postgres, and we do this for our internal apps, with very nice performance (plenty for our internal use cases).