frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Yap – OSS on-device voice dictation for macOS with no model to download

https://github.com/FrigadeHQ/yap
66•pancomplex•14h ago•24 comments

Show HN: FeyNoBg – Automatic background removal model and training library

https://usefeyn.com/blog/feynobg/
106•snyy•16h ago•25 comments

Show HN: Trylle – The Next-Gen Git Platform for Modern Teams

https://trylle.com/home
13•Xlab•9h ago•7 comments

Show HN: Let's Seal – Let's Encrypt for document signing, free and self-hosted

https://github.com/letsseal/letsseal
86•nsokin•17h ago•30 comments

Show HN: Drever – AI-first MDX presentations with expressive motion

https://github.com/Zhangdroid/drever
3•zhangdroid•3h ago•0 comments

Show HN: SeaTicket – AI agent that resolve GitHub and Discord issues

6•Daniel-Pan•6h ago•2 comments

Show HN: My First OSS as a Teen

https://openotp.app
3•jeninh•4h ago•2 comments

Show HN: Orchard – Let AI agents set up your app's back end with one prompt

https://orchard-dashboard.pages.dev/landing
2•asd000hh•4h ago•0 comments

Show HN: Physically accurate black hole you can put in your room

https://blackhole.plav.in
470•aplavin•4d ago•181 comments

Show HN: Etymology Database from Wiktionary

https://etymologue.com/
2•jlauf•4h ago•0 comments

Show HN: Call Me, your AI agents ring you with no extra carrier costs

https://github.com/radres/call-me
6•radres•10h ago•2 comments

Show HN: A macOS Port of Ventoy2disk

https://github.com/fcjr/ventoy-mac
2•fcjr•5h ago•0 comments

Show HN: Coast – Turn an iPhone into a control surface for a Mac

https://coast.masn.studio
2•MasonChen•6h ago•2 comments

Show HN: Edge Drop – The clipboard manager Windows 11 should have shipped with

https://github.com/Deepender25/Edge-Drop
3•Deepender25•7h ago•1 comments

Show HN: Gemma 4 26B A4B running on an iPhone 17 Pro via model paging

https://noemaai.com/
3•armin976•7h ago•0 comments

Show HN: RL bandits pick coding agent's context,Grok 4.5 out-fixes Fable 5

https://github.com/VinvAI/VinvAI
3•sohamac•7h ago•0 comments

Show HN: multiaes – hardware-accelerated, constant-time AES, two-file drop-in

https://github.com/ttarvis/multiaes
9•lemaudit•18h ago•2 comments

Show HN: _done – Expanding AI Capabilities

https://underscoredone.com/
2•onescales•7h ago•1 comments

Show HN: A 538-style dashboard for upcoming Knesset elections

https://theelectiondashboard.com/
4•AzariaK•14h ago•0 comments

Show HN: Infrawrench – A tool to manage cloud and svcs with workflows and chat

https://infrawrench.com
19•astrid__•16h ago•0 comments

Show HN: I mapped every US golf course

https://golfcoursebrowser.com/
216•rickmf•2d ago•166 comments

Show HN: Building a new game everyday with AI. Day #106 Zombie Survival Training

https://gamevibe.us/106-zombie-survival-training
3•pzxc•8h ago•1 comments

Show HN: Reverse Minesweeper

https://sunflowersgame.com/
255•pompomsheep•1d ago•87 comments

Show HN: PromptTrace – Free hands-on labs to practice hacking LLMs

https://prompttrace.airedlab.com
3•k4r1it0•9h ago•0 comments

Show HN: CheapSecurity – Lightweight, Self-Hosted CCTV for Linux SBCs

https://github.com/gmrandazzo/CheapSecurity
137•zeldone•1d ago•36 comments

Show HN: Echo – Fable-level results at 1/3 the cost using open-weight models

482•adam_rida•4d ago•227 comments

Show HN: Watch 14-Byte AI "brains" attempt to solve a 2D maze (Its hard)

https://con-dog.github.io/MINIMIO-PUBLIC-FRONTEND/
23•purple-leafy•1d ago•7 comments

Show HN: AlgoDeploy – Python algo trading you run yourself (Alpaca and IBKR)

https://algo-deploy.com/
2•Qnt_Algo_Trader•9h ago•0 comments

Show HN: Bike ride planning tool with weather

https://theinstant.cc/ride
3•Gshaheen•9h ago•0 comments

Show HN: 1,250 SwiftUI components, and an MCP that writes them into your app

https://nibware.dev/
8•leonickson•18h ago•4 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?