frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I wrote a C++ ray tracer from scratch without AI

https://github.com/themartiano/luz
28•martiano•2h ago•5 comments

Show HN: Kage – Shadow any website to a single binary for offline viewing

https://github.com/tamnd/kage
594•tamnd•19h ago•118 comments

Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call

https://traceapp.info
179•AG342•1d ago•65 comments

Show HN: Memorypad – A note editor for your daily notes, in Markdown

https://memorypad.io/
5•Malfunction92•1h ago•0 comments

Show HN: Discover Wikipedia articles popular on Hacker News

https://www.orangecrumbs.com/
125•octopus143•18h ago•27 comments

Show HN: 3D print Z reinforcement via injected loops

https://mgunlogson.github.io/magma/
62•mgunlogson•5d ago•34 comments

Show HN: X – A programming language with switchable memory modes

https://github.com/xdotxxx/x
2•x-xxx•4h ago•0 comments

Show HN: AwsmAudio – a WebAudio editor with native MCP

https://audio.awsm.fun
4•dakom•6h ago•0 comments

Show HN: I used Claude Mythos to build my startup in 1 day

https://www.brandlm.ai/
4•trungnx2605•6h ago•4 comments

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

https://new.roman-names.com/
202•metiscus•4d ago•46 comments

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

https://github.com/Paca-AI/paca
165•pikann22•2d ago•60 comments

Show HN: Prela – A Compositional and Controllable Query Language

https://prela-lang.org
3•remywang•8h ago•0 comments

Show HN: Philosophy for Kids

https://philosophy.ocaho.com/
12•rahimnathwani•18h ago•7 comments

Show HN: Homebrew 6.0.0

https://brew.sh/2026/06/11/homebrew-6.0.0/
1463•mikemcquaid•3d ago•360 comments

Show HN: Dream Server – Turn your PC, Mac, or Linux box into a private AI server

https://github.com/Light-Heart-Labs/DreamServer
6•dreamserver•9h ago•0 comments

Show HN: Dual YOLOv8n UAV Detection on RK3588S at 42 FPS Using NPU

https://github.com/alebal123bal/khadas_yolov8n_multithread
69•alebal123bal•21h ago•9 comments

Show HN: Putt.day a daily mini golf game

https://putt.day/
313•ellg•2d ago•110 comments

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

https://bastion.computer/
28•almostlit•1d ago•2 comments

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

https://github.com/entGriff/ezra
73•ent1c3d•4d ago•16 comments

Show HN: Coding agent with algebraic memory (VSA) instead of RAG

https://github.com/vitaliyfedotovpro-art/raidho
4•astrumverum•12h ago•1 comments

Show HN: Wtdb – give every Git worktree its own database

https://github.com/willhackett/wtdb
5•whh•12h ago•0 comments

Show HN: 2 Weeks of Hallucinate – The Photo Gallery

https://hallucinate.site/gallery
72•stagas•2d ago•24 comments

Show HN: A-C Coupling – Deterministic Data Decomposition in O(n) with No Search

https://zenodo.org/records/20693980
3•A19dammer91•13h ago•0 comments

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

https://github.com/ayushh0110/ScreenMind
34•skye0110•1d ago•5 comments

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

https://fablepool.com
522•matthewbarras•3d ago•275 comments

Show HN: Is Fable 5 available? (it is not)

https://isfable5available.com
5•bArmageddon•13h ago•0 comments

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

https://www.extend.ai/ui
252•kbyatnal•4d ago•81 comments

Show HN: Solaris the Thinking Ocean Simulator

https://solaris.franzai.com/
7•franze•15h ago•4 comments

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

https://stackscope.dev/
65•datafreak_•2d ago•18 comments

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

https://github.com/coder/boo
94•kylecarbs•3d ago•28 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?