frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I simulated closing the Strait of Hormuz on real oil trade data

https://globaloilnetwork.staffinganalytics.io/
116•eliotho•1d ago•61 comments

Show HN: Max Studio Tools – C++ DSP Modules for Max and Ableton Live

https://github.com/apresta/max-studio-tools
26•apresta•6h ago•0 comments

Show HN: Lucen a Python compiler that parallelizes for-loops via comment pragmas

https://github.com/fcmv/lucen
8•soumik15630m•3d ago•0 comments

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

452•adam_rida•1d ago•215 comments

Show HN: How well do you use Claude Code?

7•Paarthmj•4h ago•3 comments

Show HN: Palmier Pro – Open-source macOS video editor built for AI

https://github.com/palmier-io/palmier-pro
185•harrisontin•1d ago•32 comments

Show HN: Open-weight OCR got so cheap I had to share it

https://www.openparser.dev/cheapest-ocr
7•TimurKramar•6h ago•2 comments

Show HN: OneCLI – OSS credential gateway that keeps secrets out of AI agents

https://github.com/onecli/onecli
103•Jonathanfishner•1d ago•31 comments

Show HN: Jixp, a Lisp DSL for describing Jax neural nets

https://github.com/baileywickham/jixp
5•baileywickham•11h ago•0 comments

Show HN: Proving Go 1.26's runtime/secret keeps secrets out of core dumps

https://towardsdev.com/runtime-secret-go-1-26s-answer-to-secrets-leaking-in-core-dumps-d884615e971f
2•cheikhdev•5h ago•0 comments

Show HN: Claude-thermos keeps your Claude session warm for you

https://github.com/izeigerman/claude-thermos
107•s0ck_r4w•1d ago•84 comments

Show HN: Remux – an open-source tmux workspace designed for iPhone

https://github.com/h3nock/remux
98•bitwise42•1d ago•35 comments

Show HN: X402vps – Docker containers for AI agents, paid per hour with USDC

https://x402vps.com
12•z1z2z3•15h ago•0 comments

Show HN: A gate for AI agents that ships a board of its own worst flaws

https://github.com/githubscum/lotor
2•hnscum•6h ago•1 comments

Show HN: Mboxreader – easily view your Gmail Takeouts

https://mboxreader.com
3•scottilee•6h ago•0 comments

Show HN: Best JSON Formatter

https://bestjsonformatter.org
2•surajkrajan•6h ago•0 comments

Show HN: Audio Player with "Binaural Beats" tuned to the same key as your music

https://github.com/henrygabriels/binaural-studio
18•gabriel666smith•17h ago•4 comments

Show HN: Trifle – Open-source analytics that stores answers, not events

https://trifle.io/
49•iluzone•2d ago•14 comments

Show HN: Bento - An entire PowerPoint in one HTML file (edit+view+data+collab)

https://bento.page/slides/
1007•starfallg•2d ago•234 comments

Show HN: Crisp – Open-source display manager for macOS (DDC, HiDPI, presets)

https://github.com/didriksg/Crisp
4•didriksg•11h ago•0 comments

Show HN: Twigg – open-source big-tech-like version control and software forge

https://github.com/twigg-vc/monorepo
17•andrebianchessi•8h ago•12 comments

Show HN: Whetuu – a zero-config cross-shell prompt written in Zig

https://yamafaktory.github.io/whetuu/
49•yamafaktory•1d ago•38 comments

Show HN: Uploads.sh – the missing upload command for coding agents (open-source)

https://uploads.sh/
9•zachdunn•15h ago•0 comments

Show HN: A representation of a chapter of your life through music

https://www.cuecard.live
3•alicoredi•9h ago•2 comments

Show HN: A factory simulator game built on Spreadsheets

https://www.logisheets.com/?craft=factory-simulator
17•JeremyHe•1d ago•3 comments

Show HN: Corv v1.1 is out! Solving SSH execution for AI agents

https://github.com/khalid-src/corv-client
2•khalid_0002•10h ago•0 comments

Show HN: PBasic is a modern BASIC interpreter with a retro vibe

https://apps.apple.com/ca/app/pbasic/id6789459761?mt=12
2•johnrpenner•10h ago•0 comments

Show HN: Sourceminder.org - token-efficient code search

https://sourceminder.org/
4•ebcode•10h ago•2 comments

Show HN: I made Rung a daily word/clue game of nerve

https://dailyrung.com/
4•amaanster•10h ago•3 comments

Show HN: Poddie – A local-first, text-based video and podcast editor

https://github.com/SinanTang/poddie
2•sinan_tang•10h 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?