frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: Fahmatrix – A Lightweight, Pandas-Like DataFrame Library for Java

https://github.com/moustafa-nasr/fahmatrix
8•mousomashakel•46m ago•1 comments

Show HN: KVSplit – Run 2-3x longer contexts on Apple Silicon

https://github.com/dipampaul17/KVSplit
219•dipampaul17•9h ago•33 comments

Show HN: Merliot – plugging physical devices into LLMs

https://github.com/merliot/hub
27•sfeldma•4h ago•6 comments

Show HN: Visual flow-based programming for Erlang, inspired by Node-RED

https://github.com/gorenje/erlang-red
208•Towaway69•14h ago•91 comments

Show HN: Solidis – Tiny TS Redis client, no deps, for serverless

https://github.com/vcms-io/solidis
43•jayl-e-e•8h ago•4 comments

Show HN: Workflow Use – Deterministic, self-healing browser automation (RPA 2.0)

https://github.com/browser-use/workflow-use
61•gregpr07•13h ago•16 comments

Show HN: SQL-tString a t-string SQL builder in Python

https://github.com/pgjones/sql-tstring
75•pgjones•16h ago•30 comments

Show HN: Rv, a Package Manager for R

https://github.com/A2-ai/rv
67•Keats•13h ago•29 comments

Show HN: Self-Funded Game with Homemade Engine – Play Online, Steam Coming

https://bereprobate.com
12•delduca•7h ago•7 comments

Show HN: Real-Time Gaussian Splatting

https://github.com/axbycc/LiveSplat
139•markisus•1d ago•51 comments

Show HN: Easel – Code multiplayer games like singleplayer

https://easel.games/about
84•BSTRhino•2d ago•43 comments

Show HN: Muscle-Mem, a behavior cache for AI agents

https://github.com/pig-dot-dev/muscle-mem
214•edunteman•2d ago•51 comments

Show HN: Undetectag, track stolen items with AirTag

https://undetectag.com/
109•pompidoo•1d ago•97 comments

Show HN: I’ve built an IoT device to let my family know when I’m in a meeting

https://nullonerror.org/2025/05/11/i-have-built-an-iot-device-to-let-my-family-know-when-i-am-in-a-meeting/
118•delduca•5d ago•77 comments

Show HN: A free AI risk assessment tool for LLM applications

https://www.gettavo.com/app
35•percyding99•1d ago•12 comments

Show HN: Making #regions actually useful in VSCode

https://github.com/alythobani/vscode-region-helper
10•alyt•15h ago•3 comments

Show HN: Min.js style compression of tech docs for LLM context

https://github.com/marv1nnnnn/llm-min.txt
175•marv1nnnnn•1d ago•52 comments

Show HN: HelixDB – Open-source vector-graph database for AI applications (Rust)

https://github.com/HelixDB/helix-db/
232•GeorgeCurtis•3d ago•107 comments

Show HN: I vibe coded an open-source Go app to back up DBs using Docker labels

https://github.com/resulgg/label-backup
5•standardresul•15h ago•1 comments

Show HN: Airweave – Let agents search any app

https://github.com/airweave-ai/airweave
174•lennertjansen•4d ago•39 comments

Show HN: Samurai Interview – a mock interview simulator

https://www.samuraiinterview.com/
5•fairAndBased•12h ago•2 comments

Show HN: Lumier – Run macOS VMs in a Docker

https://github.com/trycua/cua/tree/main/libs/lumier
154•GreenGames•2d ago•52 comments

Show HN: wghttp – An HTTP server for managing WireGuard devices

https://github.com/brsyuksel/wghttp
4•brsyuksel•13h ago•1 comments

Show HN: Semantic Calculator (king-man+woman=?)

https://calc.datova.ai
172•nxa•2d ago•172 comments

Show HN: Heygem AI – An Open Source, Free Alternative to Heygen AI

https://github.com/duixcom/Duix.Heygem/blob/main/README.md
24•heygem-ai-new•1d ago•3 comments

Show HN: CSV GB+ by Data.olllo – Open and Process CSVs Locally

https://apps.microsoft.com/detail/9pfcrwp46v22?hl=en-US&gl=US
51•olllo•2d ago•22 comments

Show HN: Inconveniently operating my computer with voice and hand gestures

https://twitter.com/measure_plan/status/1923452731248795856
5•getToTheChopin•10h ago•0 comments

Show HN: I made a platform to debug Puppeteer (JS) crashes visually

https://buglesstack.com/
17•ivanalemunioz•3d ago•2 comments

Show HN: Convert JSON Schema to SQL DDL

https://github.com/VasilVelikov00/json-schema-to-sql
10•vjv•1d ago•0 comments

Show HN: Kudos.wiki – Discover the best movies on Wikipedia

https://kudos.wiki
17•kilgarenone•1d ago•6 comments
Open in hackernews

Show HN: Solidis – Tiny TS Redis client, no deps, for serverless

https://github.com/vcms-io/solidis
43•jayl-e-e•8h 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•7h ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•58m 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•3h 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•1h 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.