frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Eigendrum - Draw any shape and hear what it sounds like as a drum

https://baselashraf81.github.io/eigendrum/
204•BaselAshraf81•5d ago•95 comments

Show HN: Mic Drop, a real-time multiplayer karaoke game

https://www.micdrop.gg/
2•johnsillings•52m ago•2 comments

Show HN: ThoughtDAG – An editable context graph for LLM conversations

https://chenxiachan.github.io/thoughtdag/
112•chatchan•20h ago•52 comments

Show HN: ElevenMusic Sounds, loop library that grows as other people generate

https://elevenmusic.io/sounds
3•sigvef•3h ago•1 comments

Show HN: Bribes.fyi – Compare bribes statistics department wise

https://bribes.fyi/compare
2•neverenderr•3h ago•0 comments

Show HN: Every MUNI, BART and Caltrain in SF on a Live Map

https://github.com/UtpalJayNadiger/wheres-my-muni
7•iacguy•6h ago•0 comments

Show HN: Silent Shark – tactical map-based WWII submarine sim

https://silentshark.app/
71•epaga•3d ago•35 comments

Show HN: Mole – Deep research agent for your terminal

https://github.com/lajosdeme/mole
92•lajosdeme•1d ago•13 comments

Show HN: Deltix – AI Driven Testing

https://app.deltix.ai
50•oneounceman•22h ago•11 comments

Show HN: Quasicrystals Animation Playground with WebXR

https://hypnagogic-quasicrystals.github.io/
37•r34•11h ago•9 comments

Show HN: Ember – Redshift safe color palettes

https://github.com/carpdiem/ember
108•carpdiem•6d ago•22 comments

Show HN: A website for exploring historical photographs of my city

https://yesterdays.maprva.org/
34•uneekname•3d ago•12 comments

Show HN: LuaCAD – Parametric CAD Scripted in Lua

https://luacad.ad-si.com
101•adius•1d ago•22 comments

Show HN: C# Game Engine with its own scripting language and IDE

https://github.com/ArcadeMakerSources/ArcadeMaker
116•am-gm•4d ago•62 comments

Show HN: I evaluated file, vector, graph and RL based memory frameworks

https://www.pinglin.tw/blog/the-shapes-of-agent-memory
13•pinglin•11h ago•1 comments

Show HN: Self-hosted monitoring for AI recommendations (MIT License)

https://lettertrace.com
7•mathewpregasen•8h ago•0 comments

Show HN: Mocktail – Free, open-source mock API server with a built-in dashboard

https://getmocktail.com/
20•hhaluk•1d ago•1 comments

Show HN: Between Tokens – an interactive piece where you are the language model

https://chrisjz.github.io/between-tokens/
6•chrisjz•10h ago•2 comments

Show HN: Lumabri – Run Moe Models on a P2P Swarm with Colibri

https://github.com/JustVugg/lumabri
47•vforno•2d ago•19 comments

Show HN: Visually Precise AI Tutoring on iOS

https://useknowable.ai/
9•samuelzxu•11h ago•1 comments

Show HN: Feature-packed 6MB Rust+Tauri free bookmarking app

11•freakynit•12h ago•2 comments

Show HN: MCP Memory – Fast Agent Memory Using Google's OKF and SQLite FTS5

https://github.com/fellowgeek/mcp-memory
66•pcbmaker20•2d ago•35 comments

Show HN: Rdio – an open-source internet radio control suite

https://rdio-docs.vercel.app
25•taqibrahim•1d ago•4 comments

Show HN: Back In Time 2.0.0 – Release Candidate 1

https://github.com/bit-team/backintime/releases/tag/v2.0.0-rc1
6•buhtz•12h ago•1 comments

Show HN: I serve my website with a swarm of ESP32 microcontrollers on a shelf

https://github.com/Novotarskyi/ivan-bohun
9•disco_jack•22h ago•5 comments

Show HN: Is AI Dumber Today? An index of AI model experience from user's opinion

https://isaidumber.today/
15•schafberg•1d ago•6 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
7•xenodium•13h ago•1 comments

Show HN: Lambdock – Wayland-native GTK4 dock with a live Lisp REPL

https://codeberg.org/jjba23/lambdock
39•jjba23•4d ago•1 comments

Show HN: Online SNMP MIB database - upload/view your own MIBs

https://mib-viewer.com/
13•beefstew123•1d ago•0 comments

Show HN: OJCP – an open protocol for agent-consumable job data

https://ojcp.dev/
37•fraywing•3d ago•10 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?