frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built an interactive HN Simulator

https://news.ysimulator.run/news
290•johnsillings•15h ago•146 comments

Show HN: OCR Arena – A playground for OCR models

https://www.ocrarena.ai/battle
127•kbyatnal•3d ago•47 comments

Show HN: Datamorph – A clean JSON ⇄ CSV converter with auto-detect

https://datamorphio.vercel.app
10•sumit_entr42•4d ago•3 comments

Show HN: We cut RAG latency ~2× by switching embedding model

https://www.myclone.is/blog/voyage-embedding-migration/
2•vira28•1h ago•0 comments

Show HN: Search London StreetView panoramas by text

https://london.publicinsights.uk
35•dfworks•4d ago•13 comments

Show HN: The Wiki Game - reach target Wikipedia page by clicking hyperlinks only

https://apps.apple.com/us/app/the-wiki-game-wikipedia-game/id6755500017
3•frayo44•2h ago•1 comments

Show HN: Cynthia – Reliably play MIDI music files – MIT / Portable / Windows

https://www.blaizenterprises.com/cynthia.html
84•blaiz2025•19h ago•28 comments

Show HN: Hypercamera – a browser-based 4D camera simulator

https://dugas.ch/4d_creatures/4d_camera.html
13•chronolitus•5d ago•3 comments

Show HN: 1-of-1 AES Encryption Objects (Not-Cross-Decryptable)

https://github.com/0north-eth/zero-north-vault/releases/tag/v1.0-demo
2•0north•58m ago•1 comments

Show HN: I wrote my lecture notes in Typst

https://github.com/zhengnanli/ss-notes
3•subtlemuffins•3h ago•0 comments

Show HN: Stun LLMs with thousands of invisible Unicode characters

https://gibberifier.com
188•wdpatti•1d ago•103 comments

Show HN: Supabase-Test – Fast Isolated Postgres DBs for Testing Supabase RLS

https://www.npmjs.com/package/supabase-test
28•pyramation•4d ago•9 comments

Show HN: I wrote a minimal memory allocator in C

https://github.com/t9nzin/memory
130•t9nzin•1d ago•30 comments

Show HN: Radius.today – Local-first personal CRM

https://radius.today/
3•Xiaoyao6•5h ago•1 comments

Show HN: Virtual SLURM HPC cluster in a Docker Compose

https://github.com/exactlab/vhpc
53•ciclotrone•5d ago•11 comments

Show HN: Kibun (気分) – a decentralized status.cafe alternative I made

https://www.kibun.social/
4•lakshikag•6h ago•0 comments

Show HN: I built an interactive map of jobs at top AI companies

https://map.stapply.ai
12•kalil0321•14h ago•2 comments

Show HN: Axe - A Systems Programming Language with Builtin Parallelism and No GC

https://axelang.org/
10•death_eternal•14h ago•0 comments

Show HN: Image to STL – Free AI-powered image to 3D printable model converter

https://imagetostl.org
3•Ethanya•6h ago•0 comments

Show HN: TX-2 ECS – A web framework that treats your app as a world

https://www.tx-2.dev/
4•iregaddr•8h ago•0 comments

Show HN: My first published app – track contraception ring cycle

https://apps.apple.com/us/app/lunella/id6755366887
2•matsucks•9h ago•0 comments

Show HN: Build the habit of writing meaningful commit messages

https://github.com/arpxspace/smartcommit
109•Aplikethewatch•2d ago•131 comments

Show HN: Forty.News – Daily news, but on a 40-year delay

https://forty.news
434•foxbarrington•2d ago•174 comments

Show HN: Wealthfolio 2.0- Open source investment tracker. Now Mobile and Docker

https://wealthfolio.app/?v=2.0
670•a-fadil•3d ago•213 comments

Show HN: Runbooks – Shareable Claude Code Sessions

https://www.aviator.co/runbooks
4•ankitdce•14h ago•0 comments

Show HN: Built a tool solve the nightmare of chunking tables in PDF vs. Markdown

https://github.com/2dogsandanerd/smart-ingest-kit
13•2dogsanerd•1d ago•0 comments

Show HN: A decision making framework for DevRel resource allocation

https://drim.pages.dev/
2•implabinash•16h ago•0 comments

Show HN: Sphere-Base-One– A Python Kernel for Integer-Based Physics Optimization

https://github.com/universal-steward/hahn-optimization-core
3•zakthehahn•16h ago•1 comments

Show HN: I built a wizard to turn ideas into AI coding agent-ready specs

https://vibescaffold.dev/
69•straydusk•2d ago•37 comments

Show HN: Pg-aiguide – Write better PostgreSQL code with AI

https://github.com/timescale/pg-aiguide
3•cevian•17h 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•6mo 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•6mo ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•6mo 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•6mo 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•6mo 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•6mo ago
Improvement deployed!
swaptr•6mo 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•6mo ago
It's my pleasure! :)
jayl-e-e•6mo ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?