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
973•arnemunthekaas•7h ago•129 comments

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

https://withcapsule.app/
219•bashtian•6h ago•105 comments

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

https://bkovac.github.io/modem-thing/
146•bobili1234•6h ago•23 comments

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

https://github.com/greentfrapp/panel
43•greentfrapp•5h ago•9 comments

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

https://github.com/ordewell/ordewell
41•ac-ciano•6h ago•29 comments

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

https://haveibeenproxied.com/
36•microcode•5h ago•26 comments

Show HN: SCIP MIP solver bindings for Go, ported from russcip

https://github.com/egoisutolabs/scipgo
6•generalist_dev•3h ago•0 comments

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

https://poltora.dev/redis
159•poltora•3d ago•25 comments

Show HN: Loss. a tiny satire about AI progress

https://workatloss.com/
20•pbobak•5h ago•6 comments

Show HN: DaiDocs, AI memory as a plain-text file format, not a service

https://github.com/Kerneta/daidocs
3•Amin_Rigi•2h ago•1 comments

Show HN: AirmailAI, a BYOK LLM chat app with a browser extension backend

https://airmailai.net/
3•blake__dev•2h ago•6 comments

Show HN: TrailVid – Cinematic Travel Animations

https://trailvid.com/
3•ShellfishMeme•2h ago•0 comments

Show HN: Omni – Open-source workplace agent, built on Postgres

2•prvnsmpth•2h ago•0 comments

Show HN: TabPFN-3.5, a Tabular Foundation Model for messy real-world tables

https://priorlabs.ai/technical-reports/tabpfn-3-5
8•onasta•2h ago•1 comments

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

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

Show HN: I ported COLMAP (photogrammetry) to the browser in WASM and WebGPU

https://offlinetools.io/colmap-landing/
2•rsp1984•3h ago•0 comments

Show HN: Open-source passive NFC tag that signs with ECDSA, verified on-chain

https://github.com/mwbpNFTechnology/toluTag/
7•boust16•6h ago•0 comments

Show HN: Extract original images from a PDF in the browser

https://imissfiles.com/extract-pdf-images/
4•theholygrail•3h ago•0 comments

Show HN: An open source safety layer for AI agent actions

https://github.com/CTRLRun/ctrlrun
4•arpanghoshal•3h ago•1 comments

Show HN: Claude Meter – a macOS menu-bar meter for Claude's usage limits

https://github.com/sanchitkd/claude-meter
3•sanchitkd•3h ago•0 comments

Show HN: Voice AI that runs on CPUs

https://lokutor.com/
4•lokutor•4h ago•0 comments

Show HN: I built a tiny camera that knows where it is

https://mightycamera.com/story
3•asadm•6h ago•4 comments

Show HN: Eulix - Code navigation for large codebases

4•Nurysso•4h ago•0 comments

Show HN: Async multi-agent coordination across physical environments

https://github.com/BlahBlah23406/agent-comms
3•BlahBlah23406•4h ago•1 comments

Show HN: A malicious NPM install reads your .env. On my Mac it reads a decoy

https://jitpass.com
2•bukershok•4h ago•0 comments

Show HN: Talk to Claude – voice agent designs, plans, builds across all projects

https://github.com/ethanplusai/jarvis
2•ethanplusai•4h ago•0 comments

Show HN: Replay the Python calls that failed while a dependency was down

https://github.com/baldurhq/baldur
2•mcbg1541•4h ago•0 comments

Show HN: Warp – Run DeepSeek v4.1 Flash with 5 GB of RAM at 3.77 tok/s

https://github.com/sqliteai/warp
3•marcobambini•4h ago•1 comments

Show HN: Pizza Bot – An inbox for AI agents that work in the background

https://github.com/pizza-bot-app/pizza-bot
3•jd_•4h ago•2 comments

Show HN: Pelican-bicycle alternatives

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

Show HN: Solidis – Tiny TS Redis client, no deps, for serverless

https://github.com/vcms-io/solidis
71•jayl-e-e•1y ago
Hey everyone!

Over the past two years I threw myself back into full-time engineering with a simple goal: write code that gives back to the community. After a lot of late-night FOMO (“AI will do it all for us, right?”) and some painful production incidents, I finally turned my weekend project into an open-source library.

[ What is Solidis? ]

- Super-light (< 30 KB) RESP2/RESP3 client with zero runtime deps and first-class ESM/CJS support.

- Fully tree-shakable – import only the commands you need.

- Written with SOLID principles & full TypeScript typings for every command.

- Designed for cold-start sensitive serverless platforms (small bundle + tiny memory footprint).

[ Why I built it ]

1. node-redis & ioredis pain

- ESM is still an after-thought.

- Hidden deadlocks on RST, vague error surfaces.

- Everything gets bundled, even commands you’ll never call.

2. I refuse to add a dependency I don’t fully understand – I literally read candidates 10× before `npm i`.

3. Serverless bills love to remind me that every KB and millisecond matters.

[ Key features ]

- Protocols: RESP2 and RESP3 (auto-negotiation)

- Bundle size: `<30 KB` (core) / `<105 KB` (full)

- Dependencies: 0

- Extensibility: Drop-in command plugins, custom transactions

- Reliability: Auto-reconnect, per-command timeouts, type-checked replies

[ Roadmap / Help wanted ]

- Benchmarks against `node-redis` & `ioredis` (PRs welcome!)

- More first-class Valkey love

- Fuzz-testing the parser

- Docs site – the README came first; I’d love help polishing full docs

This might be my last big OSS push for a while, so stars, issues, and PRs mean the world.

If Solidis saves you some cold-start time or just scratches a TypeScript itch, let me know!

Repo: https://github.com/vcms-io/solidis

License: MIT

Thanks for reading, and happy hacking!

(Feel free to AMA in the comments – I’m around.)

Comments

badmonster•1y ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•1y ago
Solidis isn’t necessarily aiming to outperform ioredis or node-redis in every way — its primary goal is to reduce bundle size rather than maximize raw performance. That said, it does offer some performance advantages in practice. Solidis is designed to handle pipelined commands more efficiently within a single event loop iteration and parses responses in a more event-loop-friendly manner.

As a result, in most real-world scenarios, Solidis tends to be about 2–3x faster than ioredis (even with auto-pipelining enabled). Compared to node-redis, the performance is generally on par or slightly behind.

One caveat: if the payloads being parsed are very large, Solidis can experience increased latency due to its parser being more CPU-intensive, which may introduce delays compared to other stacks.

swaptr•1y ago
Looks great! I tried plugging it into my setup that uses ioredis, but it doesn't seem to support loading the URI directly?
jayl-e-e•1y ago
Thank you very much. As you mentioned, connecting via URI is not currently supported, but it’s not difficult to implement, so I will consider adding it to the specification.
jayl-e-e•1y ago
Improvement deployed!
swaptr•1y ago
Thanks, really appreciate the quick resolution. Looks like a really cool project and the goals seem to be well defined. All the best.
jayl-e-e•1y ago
It's my pleasure! :)
jayl-e-e•1y ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?