frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: FluidCAD – Parametric CAD with JavaScript

https://fluidcad.io/
123•maouida•11h ago•28 comments

Show HN: Eve – Managed OpenClaw for work

https://eve.new/login
52•zachdive•13h ago•33 comments

Show HN: A WYSIWYG word processor in Python

https://codeberg.org/chrisecker/miniword
69•chrisecker•11h ago•27 comments

Show HN: HyperFlow – A self-improving agent framework built on LangGraph

4•lablnet•2h ago•0 comments

Show HN: Lmscan – Detect AI text and fingerprint which LLM wrote it (zero deps)

https://github.com/stef41/lmscan
3•zach22•3h ago•0 comments

Show HN: Marimo pair – Reactive Python notebooks as environments for agents

https://github.com/marimo-team/marimo-pair
127•manzt•3d ago•31 comments

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

https://github.com/agberohq/keeper
59•babawere•21h ago•32 comments

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

https://github.com/randerson112/craft
167•randerson_112•1d ago•160 comments

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

https://cssstudio.ai
162•SirHound•1d ago•99 comments

Show HN: Unlegacy – document everything, from COBOL to AI generated code

https://www.unlegacy.ai/
8•Absonsonson•13h ago•0 comments

Show HN: Druids – Build your own software factory

https://github.com/fulcrumresearch/druids
61•etherio•2d ago•13 comments

Show HN: Figma for Coding Agents

https://getdesign.md
11•omeraplak•15h ago•6 comments

Show HN: Sash – tiny macOS utility to reliably cycle through app windows

https://github.com/tacomanator/sash
3•dwg•7h ago•3 comments

Show HN: The Universe in One Chart

https://saminloes.com/one-chart/
6•atleastoptimal•7h ago•0 comments

Show HN: Moon simulator game, ray-casting

https://mooncraft2000.com
111•JKCalhoun•4d ago•25 comments

Show HN: Do All the Things

https://www.doallthethings.app/
13•brainbun•18h ago•5 comments

Show HN: Rust based eBook library for Python, with MIT license

https://github.com/arc53/fast-ebook
33•larry-the-agent•1d ago•3 comments

Show HN: QVAC SDK, a universal JavaScript SDK for building local AI applications

28•qvac•1d ago•9 comments

Show HN: Zeroclawed: Secure Agent Gateway

https://github.com/bglusman/zeroclawed
6•bglusman•17h ago•3 comments

Show HN: Steadcast – Free Mac podcast player for learning, not background noise

https://steadcast.co
6•steadcast•17h ago•1 comments

Show HN: I built a site that shows every world event you lived through

https://youdidntnotice.com/
6•lip404•10h ago•3 comments

Show HN: Guruka.com – free guided mediations. No signup, private, works offline

https://guruka.com/
33•eummm•1d ago•15 comments

Show HN: FeedSense – A private recommendation system built from your own sources

6•langtang1996•16h ago•1 comments

Show HN: Brutalist Concrete Laptop Stand (2024)

https://sam-burns.com/posts/concrete-laptop-stand/
784•sam-bee•3d ago•236 comments

Show HN: Orange Juice – Small UX improvements that make HN easier to read

http://oj-hn.com/
141•latchkey•2d ago•157 comments

Show HN: I pipe free sports streams into Jellyfin – no ads, just HLS

https://github.com/pcruz1905/hls-restream-proxy
114•pruz•2d ago•36 comments

Show HN: Unicode Steganography

https://steganography.patrickvuscan.com
56•PatrickVuscan•3d ago•14 comments

Show HN: We built a camera only robot vacuum for less than $300 (well almost)

https://indraneelpatil.github.io/blog/2026/robot-vacuum/
107•indraneelpatil•5d ago•55 comments

Show HN: I run AI background removal in the browser–no upload,no server

https://www.allplix.com/en/background-remover
5•shadoxise•12h ago•0 comments

Show HN: Is Hormuz open yet?

https://www.ishormuzopenyet.com/
476•anonfunction•2d ago•208 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•10mo 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•10mo ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•10mo 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•10mo 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•10mo 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•10mo ago
Improvement deployed!
swaptr•10mo 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•10mo ago
It's my pleasure! :)
jayl-e-e•10mo ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?