frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Public Muscriptor Instance (latest, most powerful Audio-to-MIDI model)

https://www.pianoify.net/
27•jardy•1d ago•7 comments

Show HN: One portal for all your MCP servers

https://onemcp.dev/
2•ddoronin•1h ago•0 comments

Show HN: OzBrain, a shared brain for knowledge between agents and your team

https://ozbrain.com
82•dariusmonsef•1d ago•48 comments

Show HN: Dictata – Local Whisper dictation with LLM cleanup

https://github.com/AntoineChatry/Dictata
2•AntoineC_•1h ago•0 comments

Show HN: terminal-code – VS Code inside the terminal

https://terminal-code.com
87•robpruzan•3d ago•20 comments

Show HN: Make your logo extra bright on HDR screens

https://www.soverybright.com/
56•telecuda•10h ago•66 comments

Show HN: LayoutLens: AI-Powered Visual UI Testing

https://github.com/gojiplus/layoutlens
2•neehao•3h ago•0 comments

Show HN: Anonymous age verification with passkey-powered encryption

https://loginwithone.com/
39•mikeysight•3d ago•18 comments

Show HN: Rotation via Double Reflection

https://static.laszlokorte.de/rotor-reflect/
55•laszlokorte•1d ago•11 comments

Show HN: CtrlTool – 132 free online tools for developers and everyday tasks

https://ctrltool.wtf
2•jetroni•3h ago•0 comments

Show HN: Zcomplete – Shell Typo Correction

https://github.com/omarfakih1/zcomplete
16•omarfakih•1d ago•2 comments

Show HN: Hands-Rust MCP/CLI that sees the Windows desktop and clicks real Chrome

3•ryan-b•4h ago•0 comments

Show HN: Agent2Creator – a video social network whose members are AI agents

https://agent2creator.vidmoat.com
3•abilafredkb•4h ago•3 comments

Show HN: Nice Licence – An anti-copyleft permissive licence

https://github.com/Jamedjo/git-hunk/commit/240ac0f7e986fbe783a7de1c220fc047771ee059
2•jamedjo•4h ago•1 comments

Show HN: Active Source of Truth for Your Coding Agents

https://meetless.ai
3•anphamthanh•4h ago•2 comments

Show HN: A comic and manga viewer component for React

https://react-comic-viewer.kkweb.io
3•piro0919•5h ago•0 comments

Show HN: Lens AI – generate your JSON-LD files and keep them up-to-date

https://knowledgelens.ai/
2•k7vin•5h ago•0 comments

Show HN: A2G (Agent to Agent) Marketplace – Beta Test

https://www.a2gmarketplace.com
2•egbert87•5h ago•0 comments

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

https://notactuallytreyanastasio.github.io/shoehorn/
96•rhgraysonii•4d ago•16 comments

Show HN: Rex, a parallel functional language for scientific workflows

https://github.com/peterkelly/rex
28•peterkelly•6d ago•6 comments

Show HN: Huzzah – a novel approach to coding with AI

https://www.danielvaughn.dev/posts/huzzah/
378•danielvaughn•2d ago•209 comments

Show HN: Built a CLI to find and disable telemetry for package.json dependencies

https://github.com/apvarun/no-telemetry
2•apvarun•9h ago•0 comments

Show HN: I trained a 125M model to autocomplete piano on-device

https://simedw.com/2026/08/20/midi-autocomplete/
588•simedw•2d ago•117 comments

Show HN: 3D Engine for Rust Programs

https://github.com/David-OConnor/graphics
4•the__alchemist•15h ago•0 comments

Show HN: Rackast, a screen recorder with a built in editor, made with Tauri

https://rackast.com/
2•SzegiRoli•11h ago•0 comments

Show HN: Open-source Stripe Connect alternative

https://zoneless.com
82•tinyprojects•2d ago•36 comments

Show HN: Check if any of the $656M in unclaimed royalties at The MLC is yours

https://pub.doub.ly/
76•knaught•2d ago•37 comments

Show HN: Proliferate- open-source, self-hostable Codex for any coding agent

https://github.com/proliferate-ai/proliferate
44•pablo24602•1d ago•16 comments

Show HN: Get Your IP Address

https://ip.ysebie.be/
4•whizzx•15h ago•0 comments

Show HN: Forst – migrate TypeScript back ends to Go incrementally

https://forst-lang.org/docs
3•haveyaseen•16h 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?