frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
327•arnemunthekaas•2h ago•68 comments

Show HN: Hacking a $20 4G wireless hotspot into a texting device

https://bkovac.github.io/modem-thing/
44•bobili1234•1h ago•3 comments

Show HN: Capsule – Single-file web apps that save their data into SQLite

https://withcapsule.app/
54•bashtian•1h ago•18 comments

Show HN: Panel – A research workspace where the agent can build its own panes

https://github.com/greentfrapp/panel
11•greentfrapp•59m ago•2 comments

Show HN: Jexxa: High Speed on Device Dictation

https://jexxa.org
6•sankde•52m ago•10 comments

Show HN: Ordewell – turn one goal into an ordered plan of coding-agent tasks

https://github.com/ordewell/ordewell
10•ac-ciano•1h ago•4 comments

Show HN: Check if your IP has appeared in a residential proxy network

https://haveibeenproxied.com/
5•microcode•32m ago•3 comments

Show HN: Loss. a tiny satire about AI progress

https://workatloss.com/
6•pbobak•40m ago•0 comments

Show HN: Redis City – Explore how Redis works in an interactive 3D model

https://poltora.dev/redis
142•poltora•2d ago•22 comments

Show HN: Lume – an open-source terminal you can drive from your phone

https://uselume.dev/
2•hugomyb•1h ago•0 comments

Show HN: Bulkgrid – Search websites and GitHub repositories from your AI agent

https://bulkgrid.com
2•ceglh•1h ago•0 comments

Show HN: A live Git diff view cli to stay on top of what agents are doing

https://github.com/stagas/livediff
4•stagas•1h ago•1 comments

Show HN: Infinite Shaders

https://shaderfrog.com/infinite
2•andrewray•1h ago•0 comments

Show HN: Prokop – Open-source AI coding workspace with cross-project memory

https://github.com/capek-dev/prokop
3•danielbilekq•1h ago•3 comments

Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS

https://github.com/JamesRyanATX/fcbnerd
82•fretlessjazz•15h ago•20 comments

Show HN: ScaleUp City Simulator

https://city.scaleupcto.com/
4•robotrobot•2h ago•5 comments

Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost

https://narilabs.com/blog/nari-labs-leads-coval-voice-ai-benchmarks/
88•toebee•22h ago•29 comments

Show HN: Pelican-bicycle alternatives

https://gally.net/temp/20260914pelican-alternatives/index.html
126•tkgally•1d ago•45 comments

Show HN: Neobrutalism.dev – Just added Base UI support and added new color theme

https://www.neobrutalism.dev/
157•samke-•22h ago•74 comments

Show HN: A Zoomable Equal-Area Map Projection that interpolates to Mercator

https://www.benjoffe.com/map
2•benjoffe•4h ago•0 comments

Show HN: Kinesis – Control your Mac with the Meta Neural Band

https://github.com/callbacked/kinesis
117•callbacked•1d ago•43 comments

Show HN: Jinfer – AI inference engine for the JVM. AI in a jar

https://qxotic.ai/
3•mukel•8h ago•0 comments

Show HN: Pushie – Get notified with a simple webhook

https://pushie.net
21•vasanthv•1d ago•13 comments

Show HN: Fly.exe – An EON systems like virtual fruit fly uploaded to computer

https://github.com/Ibtisam-Mohammad/Fly.exe
23•Ibti_sam•23h ago•4 comments

Show HN: Analyzed 400 routes and driving a Tesla beats flying 65% of the time

https://flyortesla.com/insights
3•drewlem•10h ago•4 comments

Show HN: I built Otis, a minimal AI agent that runs local models out of the box

https://triangllabs.ai/otis
19•petrenk0n•1d ago•4 comments

Show HN: What Just Pinged Me?

https://whatjustpingedme.com
24•furyofantares•1d ago•0 comments

Show HN: Bodily Oddities

https://vester.si/bodily-oddities/
340•vesterde•4d ago•214 comments

Show HN: 1080p is 920px tall – 1k real browser viewports

https://screensize.net/reports/viewport-stats
41•zenpe•1d ago•20 comments

Show HN: Hazzel – a tiny coding agent, Bring your own keys

https://github.com/mukundzha/hazzel
6•mukundzha6•14h ago•0 comments
Open in hackernews

Show HN: Capsule – Single-file web apps that save their data into SQLite

https://withcapsule.app/
53•bashtian•1h ago
Hey HN,

I always had the problem that building HTML pages is really simple now, but trying to save data required hosting it somewhere, and sharing it afterwards was not easy. Over the last few months, I've been building an app called Capsule (it’s also the file extension name) written in Rust with Tauri 2.0 that allows packing an HTML app and its data into a single SQLite file.

The HTML file and any related assets are directly embedded in the database. User data can either be saved as a localStorage key/value store or via a MongoDB-inspired collections API as documents, saved in a table in the file. You can also save other assets, like PDF files or images, directly in the database to keep different documents together. All data can be easily exported to CSV or JSON if needed.

Privacy and security were a big priority for me, so documents cannot do anything out of the box. They don’t have direct access to the file system and they require permission to access the internet. The permission model is still something I’m working to improve. Capsule documents can also use local or remote AI models for document specific AI features.

One downside with this approach is that multiple people working on it will create different copies. To make it possible to merge different copies of the same file, each data entry has a unique UUID and timestamp.

I’m planning to open up the file format specification for the 1.0 version of the app so other apps can read or write Capsule files.

You can try it out in the web preview at https://withcapsule.app/preview with pre-built templates or use any AI provider of your choice to create a custom, Capsule-optimized app by using the following prompt:

"Please read the app wizard instructions at https://withcapsule.app/prompt.txt and help me design an app.“

I’m still working on the file format but there are migrations for each new version, so data should never be lost when using newer versions of the app in the future. Please let me know if you have any ideas or use cases where this might make sense or does not work.

Comments

andai•52m ago
That's pretty cool. But who is this for? What problem does it actually solve?

How would I know if I need this, vs something else?

bashtian•39m ago
If try to do data management in Excel or need to download an app just to save some recipes, this could be an alternative. For example you can track time and billing with a nice UI without requiring a SaaS subscription. You can try some examples in https://withcapsule.app/preview
lewisjoe•51m ago
This is great. Curious: this requires users to have a host app installed on their machine that can read .capsule file right? Won't that be a point of friction for distribution?

Isn't html/css a better distribution mechanism as most computers already have the tech to run them?

bashtian•45m ago
The problem is that you can't save the user data in way that you can click a single file, similar to a Word or Excel file. I you think a about it, a Excel spreadsheet is also just UI + data in a single file.
paweladamczuk•6m ago
This is a frustration of mine as well, but I vaguely remember someone showing something on HN where the file could essentially save itself, I think they were using some file APIs for that... sadly I can't find the details anymore. But I keep running into the "HTML file opened locally can't update itself" issue repeatedly now that I build tools for myself with LLM agents.
Dwedit•44m ago
You'd think so, but web browsers are downright lobotomizing the ability for local HTML files to run any meaningful javascript code. Want to run a JS file from the same directory? CORS ERROR!!!!

Hence 200MB applications that are complete copies of the Chromium browser to run under 1MB of actual web code.

lukasbm•14m ago
I imagined the capsule website would be able to either convert or directly run/open them
pmkary•50m ago
Really really nice
eleventen•40m ago
You can get a cheap approximation of this with chromium browsers + Filesystem API and a PWA manifest for that native-ish feel. AI has reignited my interest in building based 100% on browser native features.

https://developer.mozilla.org/en-US/docs/Web/API/File_System...

bashtian•31m ago
If you want to distribute apps to many users this would probably be a better solution. The main benefit of Capsule is the personal document like app. You create a capsule, move it to an USB stick, save it in your cloud storage and it's still the same document. Nothing has changed, not the UI, not the data. The document will stay the same.
zackify•38m ago
love this idea!
gadders•28m ago
>>Capsule packs your entire app — UI, data, and everything — into a single portable .capsule file.

I'm having Lotus Notes flashbacks.

dgf18•21m ago
Many big companies are starting now to test agentic coding to automate business processes. This could be a nice tool to distribute apps for workflows that aren't big enough to justify the operational overhed of maintaining a traditional web app backend. Nice!
lolakutty•19m ago
What is wrong with using IndexedDB?
fdeth•12m ago
So, let’s do Visual Basic again, but this time with LLMs and web stuff.
blamestross•6m ago
Seems very "packable into a standalone binary" but doesn't seem like that is a planned use case.
tonymet•5m ago
is the idea this would be hosted or run locally (like Electron)?