frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: boringBar – a taskbar-style dock replacement for macOS

https://boringbar.app/
474•a-ve•1d ago•269 comments

Show HN: Bloomberg Terminal for LLM ops – free and open source

4•amans9712•1h ago•1 comments

Show HN: Oberon System 3 runs natively on Raspberry Pi 3 (with ready SD card)

https://github.com/rochus-keller/OberonSystem3Native/releases
229•Rochus•1d ago•78 comments

Show HN: I built a social media management tool in 3 weeks with Claude and Codex

https://github.com/brightbeanxyz/brightbean-studio
167•JanSchu•9h ago•111 comments

Show HN: 15 yrs of Django in prod: patterns I keep using (agent skills)

https://github.com/dvf/opinionated-django
5•vanflymen•3h ago•1 comments

Show HN: Crafto – AI carousel post generator for LinkedIn and Instagram

https://crafto.ai
4•xz_tie•3h ago•0 comments

Show HN: Equirect – a Rust VR video player

https://github.com/greggman/equirect
11•greggman65•10h ago•1 comments

Show HN: Claudraband – Claude Code for the Power User

https://github.com/halfwhey/claudraband
114•halfwhey•1d ago•42 comments

Show HN: The Infinite Tolkien – endless narration of Middle-earth

http://infinitetolkien.com/
3•Jarlakxen•6h ago•1 comments

Show HN: Turn your favorite YouTube channels into a streaming experience

https://minitube.tv
6•renatoworks•6h ago•9 comments

Show HN: Git-style branching for your Rails database

https://github.com/carldaws/activerecord-postgresql-branched
3•carldaws•6h ago•0 comments

Show HN: Pardonned.com – A searchable database of US Pardons

495•vidluther•2d ago•268 comments

Show HN: Real-Time, Streaming SQL Queries on Flight Data

https://dashboard.transcend.modolap.com/queries?mode=demo
4•ronfriedhaber•8h ago•0 comments

Show HN: Kyomu - 13 puzzles from math and physics that map your cognitive style

https://mostlykiguess.github.io/Kyomu/
4•mostlyk•8h ago•2 comments

Show HN: A social feed with no strangers

https://www.grateful.so/
8•rpatni•19h ago•5 comments

Show HN: FluidCAD – Parametric CAD with JavaScript

https://fluidcad.io/
155•maouida•2d ago•37 comments

Show HN: Bad Apple (Oscilloscope-Like) – one stroke per frame

https://bad-apple-on-oscilloscope.pages.dev/
5•araniwa•13h ago•1 comments

Show HN: A WYSIWYG word processor in Python

https://codeberg.org/chrisecker/miniword
87•chrisecker•2d ago•39 comments

Show HN: I built a Cargo-like build tool for C/C++

https://github.com/randerson112/craft
174•randerson_112•4d ago•166 comments

Show HN: Eve – Managed OpenClaw for work

https://eve.new/login
71•zachdive•3d ago•39 comments

Show HN: Narrate – Generate multi-voice long-form audio with one command

https://github.com/zackham/narrate
5•zackham•16h ago•2 comments

Show HN: Waffle – Native macOS terminal that auto-tiles sessions into a grid

https://waffle.baby
38•olleeolleeollee•2d ago•20 comments

Show HN: CSS Studio. Design by hand, code by agent

https://cssstudio.ai
172•SirHound•4d ago•107 comments

Show HN: Local LLM on a Pi 4 controlling hardware via tool calling

https://github.com/stfurkan/pi-llm
3•stfurkan•19h ago•3 comments

Show HN: Keeper – embedded secret store for Go (help me break it)

https://github.com/agberohq/keeper
63•babawere•3d ago•33 comments

Show HN: Rekal – Long-term memory for LLMs in a single SQLite file

https://github.com/janbjorge/rekal
3•jeeybee•21h ago•2 comments

Show HN: SnatchHub – An App That Solves The "who's using staging?" Problem

https://getsnatchhub.com
3•boothemoo•21h ago•0 comments

Show HN: Druids – Build your own software factory

https://github.com/fulcrumresearch/druids
64•etherio•4d ago•15 comments

Show HN: Stork – MCP server so Claude/Cursor can search 14k MCP servers AI tools

https://www.stork.ai
2•usestork•22h ago•0 comments

Show HN: A Better Internet

https://tomclancy.info/pages/abi-a-better-internet.html
10•tclancy•1d ago•3 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•11mo 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•11mo ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•11mo 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•11mo 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•11mo 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•11mo ago
Improvement deployed!
swaptr•11mo 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•11mo ago
It's my pleasure! :)
jayl-e-e•11mo ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?