frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Stun LLMs with thousands of invisible Unicode characters

https://gibberifier.com
131•wdpatti•10h ago•54 comments

Show HN: WireMD – Design Wireframes in Markdown

https://wiremd.dev/
3•akonan•47m ago•0 comments

Show HN: I built an LLM powered receptionist for website chats

https://receptionst.com/
6•teemingdev•58m ago•2 comments

Show HN: I wrote a minimal memory allocator in C

https://github.com/t9nzin/memory
107•t9nzin•14h ago•27 comments

Show HN: Gitlogue – A terminal tool that replays your Git commits with animation

https://github.com/unhappychoice/gitlogue
139•unhappychoice•6d ago•17 comments

Show HN: Flag Waver, create and simulate realistic waving flags online

https://flagwaver.org
3•star98•3h ago•1 comments

Show HN: I built a CLI tool to map your codebase for LLMs

https://github.com/JordanCoin/codemap
3•jordancj•4h ago•1 comments

Show HN: Build the habit of writing meaningful commit messages

https://github.com/arpxspace/smartcommit
105•Aplikethewatch•1d ago•127 comments

Show HN: Simulating the vacuum as a superfluid to derive Alpha = 1/137

https://github.com/moseszhu999/geometric-vacuum-sim
4•moseszhu•6h ago•1 comments

Show HN: WeatherOrNot a maximal weather app in the terminal

https://james-see.github.io/weatherornot/
5•jamescampbell•6h ago•0 comments

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

https://forty.news
424•foxbarrington•1d ago•168 comments

Show HN: I built a free kids coloring site with AI

https://happykidscoloring.com/en
4•daimajia•7h ago•9 comments

Show HN: SitStand – Control your standing desk from the command line

https://gregraiz.com/blog/sitstand-bluetooth-desk-controller/
6•graiz•8h ago•0 comments

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

https://wealthfolio.app/?v=2.0
666•a-fadil•2d ago•212 comments

Show HN: 3M km interferometer concept using Saturn moons

https://zenodo.org/records/17665935
2•kurtswendson•10h 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
6•2dogsanerd•18h ago•0 comments

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

https://vibescaffold.dev/
65•straydusk•1d ago•37 comments

Show HN: Revisit – Session recording analysis that "watches" the video

https://revisit.pro/
2•egykettoharo•13h ago•0 comments

Show HN: PolyGPT – ChatGPT, Claude, Gemini, Perplexity responses side-by-side

https://polygpt.app
24•ncvgl•2d ago•22 comments

Show HN: Real-time freelancer marketplace with per-second billing

https://gigs.quest/
4•ufvy•16h ago•5 comments

Show HN: Search London StreetView panoramas by text

https://london.publicinsights.uk
25•dfworks•3d ago•11 comments

Show HN: I made a down detector for down detector

https://downdetectorsdowndetector.com
587•gusowen•5d ago•169 comments

Show HN: I just fixed .env once and for all – better-env

https://better-env.dev
8•harish3304•18h ago•4 comments

Show HN: Dank-AI – Ship production AI agents 10x faster

https://www.dank-ai.xyz/
6•deltadarkly•1d ago•5 comments

Show HN: OhNiceRepo – Easily discover trending GitHub gems and repos

https://ohnicerepo.pages.dev
3•behnamazimi•18h ago•0 comments

Show HN: Genesis DB now provides a full gRPC API alongside HTTP

https://www.genesisdb.io/blog/posts/2025-11-23/grpc-endpoint
4•patriceckhart•19h ago•0 comments

Show HN: Vibe Prolog

https://github.com/nlothian/Vibe-Prolog
44•nl•4d ago•10 comments

Show HN: F32 – An Extremely Small ESP32 Board

https://github.com/PegorK/f32
300•pegor•4d ago•51 comments

Show HN: Search tool for "Ask HN: What Are You Working On?"

https://nthesis.ai/public/hn-working-on
6•osigurdson•19h ago•0 comments

Show HN: Makefiles, Metalanguages, Matrioshka Automata

https://robot-wranglers.github.io/compose.mk/
2•robot-wrangler•20h 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?