frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Needle: We Distilled Gemini Tool Calling into a 26M Model

https://github.com/cactus-compute/needle
419•HenryNdubuaku•13h ago•144 comments

Show HN: Agentic interface for mainframes and COBOL

https://www.hypercubic.ai/hopper
69•sai18•14h ago•39 comments

Show HN: Gigacatalyst – Extend your SaaS with an embedded AI builder

47•namanyayg•15h ago•19 comments

Show HN: Statewright – Visual state machines that make AI agents reliable

https://github.com/statewright/statewright
91•azurewraith•17h ago•33 comments

Show HN: TikTok but for scientific papers

https://andreaturchet.github.io/website/index.html
178•ciwrl•1d ago•69 comments

Show HN: I spent $100 in Claude tokens and 1k battles training my AI tank

https://agentank.ai/history/mat_8v9fSEZE8295dcZ8U
2•mazzystar•5h ago•0 comments

Show HN: A modern Music Player Daemon based on Rockbox firmware

https://github.com/tsirysndr/rockbox-zig
116•tsiry•3d ago•25 comments

Show HN: OpenGravity – A zero-install, BYOK vanilla JS clone of Antigravity

https://github.com/ab-613/opengravity
102•ab613•1d ago•30 comments

Show HN: Tmux-palette – Raycast-style command palette for tmux

https://www.eduwass.com/blog/tmux-palette/
2•eduwass•7h ago•3 comments

Show HN: E2a – Open-source email gateway for AI agents

https://github.com/Mnexa-AI/e2a
45•mnexa•1d ago•3 comments

Show HN: Duckflix, an open-source self-hosted media streaming platform

https://github.com/duckflixapp/duckflix
2•patakxd•10h ago•0 comments

Show HN: GIF Pile. a site to make piles of GIFs

https://gifpile.com/
2•FatCat1979•10h ago•0 comments

Show HN: An index of indie web/blog indexes

https://theindex.fyi
146•rocketpastsix•2d ago•39 comments

Show HN: Doomscroll the Goverment's UFO Files as One Gigantic Microfilm

https://hypergrid.systems/war.gov-ufo-viewer/microfilm2?page=2
19•keepamovin•1d ago•12 comments

Show HN: I made a Clojure-like language in Go, boots in 7ms

https://github.com/nooga/let-go
273•marcingas•3d ago•83 comments

Show HN: Rust but Lisp

https://github.com/ThatXliner/rust-but-lisp
207•thatxliner•3d ago•72 comments

Show HN: Countries where you can leave your MacBook at a random coffee shop

https://vouchatlas.com
72•canergl•3d ago•88 comments

Show HN: Cook a Django project well, the agent-skill take on cookiecutter

https://github.com/RobustaRush/seedkit
2•kmmbvnr_•13h ago•0 comments

Show HN: OpenClaw OS – OSS Claude Cowork Built on Top of OpenClaw

https://github.com/thesysdev/openclaw-os
3•zahlekhan•13h ago•0 comments

Show HN: Building a web server in assembly to give my life (a lack of) meaning

https://github.com/imtomt/ymawky
423•imtomt•3d ago•224 comments

Show HN: One-shot NAT traversal library

https://warpgate.io/
5•Uptrenda•14h ago•1 comments

Show HN: Profine - Profile and rewrite your PyTorch training loop on real GPUs

https://github.com/ProfineAI/profine-cli
4•aisinghal•14h ago•0 comments

Show HN: adamsreview – better multi-agent PR reviews for Claude Code

https://github.com/adamjgmiller/adamsreview
82•adamthegoalie•2d ago•55 comments

Show HN: TRUST – Coding Rust like it's 1989

https://github.com/wojtczyk/trust
170•wojtczyk•6d ago•87 comments

Show HN: Grunden – Frontier AI inference hosted in Sweden, OpenAI-compatible

https://grunden.ai
7•fsrc•16h ago•4 comments

Show HN: Safe-install – safer NPM installs with trusted build dependencies

https://www.npmjs.com/package/@gkiely/safe-install
17•gkiely•1d ago•5 comments

Show HN: Formal Verification with Lean

https://www.daniellowengrub.com/blog/2026/04/30/lean
3•lowdanie•18h ago•0 comments

Show HN: Is Github Online?

https://isgithub.online/
6•vednig•18h ago•2 comments

Show HN: Outpainting Avatar: The Last Airbender from 4:3 to 16:9

https://bsky.app/profile/markjgx.bsky.social/post/3mlotqveddc2i
2•markjgx•7h ago•0 comments

Show HN: How Scaleway brought the first RISC-V servers to the cloud

https://www.scaleway.com/en/blog/risc-v-servers-in-the-cloud/
5•enthusaist•19h 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•12mo 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•12mo ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•12mo 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•12mo 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•12mo 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•12mo ago
Improvement deployed!
swaptr•12mo 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•12mo ago
It's my pleasure! :)
jayl-e-e•12mo ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?