frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Velyr – an AI agent that finds and fixes conversion leaks on your site

https://velyr.io/
2•flo_r•1h ago•0 comments

Show HN: I am building a map of people who lived in the Roman Empire

https://new.roman-names.com/
178•metiscus•3d ago•43 comments

Show HN: Paca – Lightweight Jira alternative for human-AI collaboration

https://github.com/Paca-AI/paca
154•pikann22•1d ago•55 comments

Show HN: Bastion – isolated Linux VMs for background coding agents

https://bastion.computer/
13•almostlit•8h ago•0 comments

Show HN: I run a vision model on every screenshot, locally, on a 4GB GPU

https://github.com/ayushh0110/ScreenMind
24•skye0110•12h ago•3 comments

Show HN: 2 Weeks of Hallucinate – The Photo Gallery

https://hallucinate.site/gallery
69•stagas•23h ago•24 comments

Show HN: Lightweight Task queue on Erlang/OTP, SQLite-backed, no overengineering

https://github.com/entGriff/ezra
72•ent1c3d•3d ago•11 comments

Show HN: Putt.day a daily mini golf game

https://putt.day/
303•ellg•1d ago•110 comments

Show HN: Homebrew 6.0.0

https://brew.sh/2026/06/11/homebrew-6.0.0/
1442•mikemcquaid•2d ago•353 comments

Show HN: Motplot is a crossword but it plays like Sudoku

https://motplot.app/
4•jamwise•6h ago•1 comments

Show HN: Quant Picker – which GGUF file fits your model and machine

https://vettedconsumer.com/quant-picker/
17•ermantrout•23h ago•0 comments

Show HN: StackScope – I crawled over 40k indie launches to see what they ship

https://stackscope.dev/
63•datafreak_•1d ago•17 comments

Show HN: FablePool – pool money behind a prompt, and Fable builds it in public

https://fablepool.com
518•matthewbarras•2d ago•273 comments

Show HN: Inkwash, a watercolor sketching app and explanation

https://johnowhitaker.github.io/inkwash/about
4•Yenrabbit•9h ago•3 comments

Show HN: Skill for your agent to visualize your gbrain and Obsidian

https://github.com/vladignatyev/brain-map-skill
20•v_ignatyev•1d ago•16 comments

Show HN: Lightweight C++23 S3 client with no extra deps (just curl and OpenSSL)

https://github.com/ggcr/s3cpp
5•ggcr•18h ago•4 comments

Show HN: Boo – Screen-style terminal multiplexer built on libghostty

https://github.com/coder/boo
93•kylecarbs•2d ago•28 comments

Show HN: Extend UI – open-source UI kit for modern document apps

https://www.extend.ai/ui
249•kbyatnal•3d ago•80 comments

Show HN: A bunch of Apache2/MIT log generators

https://github.com/expanso-io/log-simulators
4•TheIronYuppie•11h ago•0 comments

Show HN: Turn your name into a tree in an infinite procedural shanshui landscape

https://landscape.bairui.dev/
39•subairui•3d ago•20 comments

Show HN: Claw Patrol, a security firewall for agents

https://github.com/denoland/clawpatrol
108•rough-sea•4d ago•30 comments

Show HN: HelixDB – A graph database built on object storage

https://github.com/HelixDB/helix-db/tree/main
156•GeorgeCurtis•3d ago•42 comments

Show HN: I created a simple searchable list of abandoned WordPress Plugins

https://vimsy.io/plugin-graveyard
3•arximughal•7h ago•0 comments

Show HN: Script to bulk delete Claude chats from the web UI

https://github.com/MatteoLeonesi/bulk-delete-claude-chat
59•ML0037•1d ago•20 comments

Show HN: Gravity – Interactive solar-system simulator, from Newton to Einstein

https://qunabu.github.io/Gravity/
216•qunabu•4d ago•53 comments

Show HN: Slopsome – a VRAM fit calculator and tok/s database for local LLMs

https://slopsome.com
3•NexAIGuy•15h ago•0 comments

Show HN: Performative-UI – A react component library of design tropes

https://vorpus.github.io/performativeUI/
1173•lizhang•5d ago•212 comments

Show HN: Galdor – a Go LLM agent framework with built-in tracing and replay

https://github.com/YasserCR/galdor
6•yassros16•16h ago•1 comments

Show HN: GentleOS – A pair of hobby OSes for vintage 32-bit and 16-bit PCs

https://github.com/luke8086/gentleos32
129•luke8086•6d ago•104 comments

Show HN: LLMRender, a 10kb Markdown+LaTeX renderer for React

https://llmrender.com/
4•franciscop•1d 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•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?