frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Streambed – Stream Postgres to Iceberg on S3, Supports Postgres Wire

https://github.com/viggy28/streambed
48•vira28•5h ago•4 comments

Show HN: Atomic Editor – Obsidian-style live preview for CodeMirror 6

https://kenforthewin.github.io/atomic-editor/
54•kenforthewin•11h ago•12 comments

Show HN: Breathe CLI – Paced resonance breathing in the macOS terminal

https://github.com/marekkowalczyk/breathe-cli
111•marekkowalczyk•1d ago•33 comments

Show HN: Llmff v1.0 FFmpeg for Inference

https://github.com/syndicalt/llmff
3•syndicalt•2h ago•0 comments

Show HN: 500 years of Joseon court omens as an observability dashboard

https://ajin.im/is/building/omen.ops/
135•poppypetalmask•1d ago•23 comments

Show HN: Ouijit, an open-source task and terminal manager for coding agents

https://ouijit.com/
8•pbjerkeseth•7h ago•0 comments

Show HN: xxUTF – SIMD Unicode Normalization

https://github.com/dzfrias/xxUTF
9•dzfrias•7h ago•1 comments

Show HN: CakeML-based self-verifying, self-improving system

https://emberian.github.io/svenvs/
3•cmrx64•4h ago•0 comments

Show HN: Helios – what plug-in solar could generate for any address in Britain

https://helios.southlondonscientific.com/
120•ruaraidh•1d ago•44 comments

Show HN: Open Envelope – an open schema for defining AI agent teams

https://openenvelope.org/docs/schema/
46•ashconway•3d ago•7 comments

Show HN: Komi-learn – continuous memory and self-improvement for coding agents

https://github.com/kurikomi-labs/komi-learn
20•rainxchzed•18h ago•3 comments

Show HN: Agentpack – isolated config layers for Claude Code, Codex, and OpenCode

https://nexo.sh/posts/agentpack/
4•nexo-v1•9h ago•0 comments

Show HN: Tiny-vLLM – high performance LLM inference engine in C++ and CUDA

https://github.com/jmaczan/tiny-vllm
194•yu3zhou4•2d ago•17 comments

Show HN: Open-source private home security camera system (end-to-end encryption)

https://github.com/secluso/core
124•arrdalan•2d ago•29 comments

Show HN: Deliberate – log what your agent rejected, not just what it ran

https://www.deliberate.dev/
3•garysmith1234•6h ago•0 comments

Show HN: TV Explorer. Adding advanced UI to free online TV

https://tvexplorer.live
186•dtagames•2d ago•57 comments

Show HN: Entropic — information-driven variable-rate media playback

https://github.com/patrickxia/entropic
4•pxx•8h ago•1 comments

Show HN: FuguUX – science-backed, AI user testing to identify key web UX issues

https://www.fuguux.com
3•sdas7•9h ago•0 comments

Show HN: Zot – Yet another coding agent harness

https://www.zot.sh
101•patriceckhart•2d ago•78 comments

Show HN: Use Chrome DevTools Protocol to Control WinForm/MFC Apps

https://github.com/AIGCEra/Creator
3•tangramdev•9h ago•0 comments

Show HN: CPU-only fast OCR for screenshots, images, PDFs, webpages

https://github.com/kouhxp/textsnap
7•mrkn1•15h ago•4 comments

Show HN: Stable Audio 3 – one-shot sample generator (110gb download)

https://github.com/shiehn/sas-sample-generator
5•stevehiehn•10h ago•3 comments

Show HN: Graph-Based Firebase Alternative with Real-Time Sync

https://linkedrecords.com/getting-started/
3•WolfOliver•11h ago•0 comments

Show HN: Ktx – Open-source executable context layer for data agents

https://github.com/Kaelio/ktx
87•lucamrtl•3d ago•26 comments

Show HN: Cordium: FOSS sandbox platform that eliminates credential injection

https://github.com/octelium/cordium
3•geoctl•13h ago•0 comments

Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue

https://llmgame.scalex.dev
382•Wirbelwind•3d ago•159 comments

Show HN: Live, system-wide USB transfer sniffer in eBPF

https://github.com/yeet-src/usbsnoop
7•r3tr0•20h ago•0 comments

Show HN: Hallucinate – Massively Multiplayer Online Rave

https://hallucinate.site
438•stagas•3d ago•197 comments

Show HN: I built an Android OS in the browser

https://mobilegym.dev/
27•haozaz•1d ago•7 comments

Show HN: Open-Source AI Racing Harness

https://www.elodin.systems/post/elodin-ai-grand-prix-race-sim-harness
75•danAtElodin•4d ago•22 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?