frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Interactive, animated architecture of any HuggingFace models

https://modelmap.cc
40•lizhaoliu•3h ago•6 comments

Show HN: Openleetcode – Local LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode
54•therepanic•11h ago•16 comments

Show HN: Automatically detect and patch walking-dead states in Sierra games

https://github.com/katiahayati/lucasartsifier/
3•wkfauna•1h ago•1 comments

Show HN: Loft Day – a wedding invitation turned point-and-click game

https://marketa.behdad.org/loft-day
6•behdad•18h ago•4 comments

Show HN: Capto – alerts when a background job goes quiet, with breadcrumbs

https://capto.run
4•johndory80•6d ago•3 comments

Show HN: Saggar, a Mac terminal that keeps sessions and your attention organized

https://saggar.marginalutility.dev/
60•mcclowes•1d ago•56 comments

Show HN: macOS data protection keychain for Electron apps

https://github.com/biw/keychain-store
23•biwills•9h ago•3 comments

Show HN: Search inside podcast episodes and read transcript while listening

https://metapodcast.net
2•lamecoder•2h ago•0 comments

Show HN: Monity.ai – Get notified when any website changes

https://apps.apple.com/pl/app/monity-ai/id6761957823
2•kamilmm21•3h ago•0 comments

Show HN: Shoehorn – Quantize any model down to run on your machine

https://notactuallytreyanastasio.github.io/shoehorn/
40•rhgraysonii•12h ago•7 comments

Show HN: PantheonGPU – GPU health testing and AI workload benchmarking

https://pantheongpu.com/
12•saqibkhan1992•8h ago•0 comments

Show HN: Particle – Extract and save articles in a clean, self-hosted reader

https://particle.crnst8.com/try/
3•flowerpil•4h ago•0 comments

Show HN: ResumeSkip – automatically tailor your resume to jobs

https://resumeskip.com/
2•ghosts_•4h ago•0 comments

Show HN: Maritime, a platform for running AI agents for $1 a month

https://maritime.sh
7•mariagorskikh1•4h ago•2 comments

Show HN: ChatOSS – A Codex alternative for Open Source AI built on Ollama

https://chatoss.ai
5•thetjmccarty•6h ago•5 comments

Show HN: A sample dataset of computer-use tasks on professional software

https://cua.graderlabs.com/
15•parthmah•4h ago•3 comments

Show HN: Go CLI for website health checks, zero dependencies

https://github.com/atillalab/site-health
11•mehmetkose•12h ago•0 comments

Show HN: Clinch – Local-first Warp fork built for agent session management

https://clinch.sh/
4•ponchopunchy•4h ago•0 comments

Show HN: Crammed – turns lecture PDFs into spaced-repetition flashcards

https://crammed.study
2•avisolei•5h ago•0 comments

Show HN: Draw.city – geography game where you circle the target population [US]

https://draw.city/
3•NameError•5h ago•0 comments

Show HN: Roost – top for your Claude Code sessions

https://github.com/gmhoward9289-ops/roost
2•gmhoward9289•5h ago•0 comments

Show HN: Desktopcolors.com – A museum for solid background colors of classic OS

https://desktopcolors.com
161•vlowrian•1d ago•70 comments

Show HN: Keystroke Biometrics Demo

https://demo.behavlabs.com/
3•zrodiere•5h ago•0 comments

Show HN: RoamIQ – Travel and workation platform for digital nomads

https://nomads-travel-indol.vercel.app
2•pranav_tech26•5h ago•0 comments

Show HN: HashNotch – Premium AI Integrated Dynamic Island for the Mac OS

2•SeifHashish•5h ago•3 comments

Show HN: Extctl, a super simple systemd-sysext wrapper

https://github.com/OperatorProject/extctl
4•fluorocaster•5h ago•0 comments

Show HN: A local MitM proxy to control TLS fingerprints

https://github.com/ytkoka/impersonate-proxy
25•ytkoka•14h ago•5 comments

Show HN: Live 1v1 push-up battles with friends or random people

https://apps.apple.com/us/app/pushrank-push-up-counter-game/id6796676940
3•haruniriz•6h ago•2 comments

Show HN: BallGuessr – Football player guessing game

https://ballguessr.eu/
2•yaman071•6h ago•0 comments

Show HN: Runbook.v1 – governed workflow execution for MCP (fail-closed)

https://github.com/CorpusIQ/runbook-spec
2•corpusiq_io•6h 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?