frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: zkGolf – Competitive optimization of formally verified circuits

https://zk.golf/
57•rot256•16h ago•9 comments

Show HN: Inkwell – An RSS reader for e-ink devices

https://kendal.codeberg.page/inkwell/
52•imkendal•16h ago•5 comments

Show HN: Gitstock–Transform you GitHub commit history into K-line and animations

https://gitstock.org/
21•dares2573•3d ago•3 comments

Show HN: I made a tool that prevents websites from tracking you

https://github.com/alex-w-developer/GetBlocked
17•sudo_cowsay•8h ago•5 comments

Show HN: Imagent – agentic image/video/speech generation

https://github.com/unliftedq/imagent
4•unliftedq•5h ago•0 comments

Show HN: CLI tool for detecting non-exact code duplication with embedding models

https://github.com/rafal-qa/slopo
82•rkochanowski•18h ago•36 comments

Show HN: CLI that helps AI agents avoid vulnerable dependencies

https://github.com/clidey/deptrust
12•modelorona•1d ago•1 comments

Show HN: A graph paper generator that renders vector PDFs in the browser

https://freegraphpaper.net/
98•lam_hg94•19h ago•23 comments

Show HN: ZeroFS – A log-structured filesystem for S3

https://www.zerofs.net/
124•Eikon•18h ago•52 comments

Show HN: I measured the half-life of 41,301 Show HN launches. It's 7 hours

https://jonno.nz/posts/your-show-hn-dies-in-7-hours/
25•jonnonz•20h ago•5 comments

Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline

https://github.com/emson/claudoro
46•emson•1d ago•33 comments

Show HN: ctx – Search the coding agent history already on your machine

https://github.com/ctxrs/ctx
33•luca-ctx•16h ago•9 comments

Show HN: Bramble – Local-first password manager

https://github.com/flythenimbus/bramble
59•MegagramEnjoyer•13h ago•9 comments

Show HN: I built an open-source alternative to Claude Cowork

https://github.com/valmishq/valmis
30•wayneshng•19h ago•7 comments

Show HN: GeoSpoof – your VPN hides your IP, but the browser leaks your location

https://geospoof.com/
11•sgro•9h ago•0 comments

Show HN: Bedtimeforkids let kids learn while entertain

https://bedtimeforkids.vercel.app
2•dutay05•4h ago•0 comments

Show HN: I built a declarative layout engine for SVG, Canvas, WebGL

https://github.com/carnworkstudios/boxwood
3•bonzai2carn•4h ago•0 comments

Show HN: Dabs spawns dumb agents in boxes for free

https://github.com/jjmerino/dabs
2•jjmerino•4h ago•0 comments

Show HN: PriceProbe – zero-dependency competitor price tracker in Python

https://github.com/willylam2222-bot/priceprobe
4•l2602591158•7h ago•0 comments

Show HN: Qwicut – A Desktop App to Turn Any Selection into Intelligence

https://www.qwicut.com
2•yukidkwlbn•5h ago•0 comments

Show HN: Capcat – CLI/TUI to Archive Articles as Markdown and HTML (FOSS)

https://capcat.org/
5•stayux•9h ago•0 comments

Show HN: Mirrors – test AI agent changes by replaying production traces

https://www.runmirrors.com/
7•aisinghal•10h ago•0 comments

Show HN: Declaw Arena – a CTF-style challenge to break an AI agent in a microVM

https://declaw.ai/arena
7•ShivamNayak11•10h ago•0 comments

Show HN: Pieces – Social network for people

https://try.piecesof.me/
42•domo__knows•1d ago•40 comments

Show HN: Cyclearchive.com – search vintage cycling magazines

https://cyclearchive.com/search/
21•alastairr•6d ago•6 comments

Show HN: GolemUI – Declarative Form Engine

https://golemui.com
52•wtfdeveloper•1d ago•68 comments

Show HN: Mail Memories – A desktop app to rescue photos from Gmail

https://mailmemories.com
101•ltiger•18h ago•48 comments

Show HN: Salt – a systems language with Z3 theorem proving in the compiler

https://salt-lang.dev
43•bneb-dev•1d ago•42 comments

Show HN: Drop Flap Boards for All

https://dropflapboard.com
2•PaybackTony•7h ago•0 comments

Show HN: 4isX – A game to make the target from four digits

https://4isx.akhdan.dev/
3•akhdanfadh•8h ago•0 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?