frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Oberon System 3 runs natively on Raspberry Pi 3 (with ready SD card)

https://github.com/rochus-keller/OberonSystem3Native/releases
92•Rochus•4h ago•10 comments

Show HN: boringBar – a taskbar-style dock replacement for macOS

https://boringbar.app/
2•a-ve•17m ago•0 comments

Show HN: T4 – a versioned datastore with branching and time-travel (S3-backed)

https://github.com/t4db/t4
3•amakhov•20m ago•0 comments

Show HN: Pardonned.com – A searchable database of US Pardons

475•vidluther•1d ago•257 comments

Show HN: ReverseYC

https://rocketplace.org/reverseyc
2•remarketme•3h ago•1 comments

Show HN: Formal – Formal verification for AI-generated code using Lean 4

https://github.com/yamafaktory/formal
4•yamafaktory•3h ago•4 comments

Show HN: ApplePy – Embed and Call Swift from Python (Like PyO3, but for Swift)

https://github.com/jagtesh/ApplePy
2•sheepscreek•3h ago•1 comments

Show HN: Telegram feed reader using DNS TXT records for Iran's Internet shutdown

https://github.com/sartoopjj/thefeed
2•znano•4h ago•1 comments

Show HN: Real-Time OLAP Infrastructure

https://modolap.com
3•ronfriedhaber•4h ago•0 comments

Show HN: Chunk – macOS menu bar time-blocking app with Claude AI integration

https://www.chunkapp.net
2•dudleyspence•5h ago•0 comments

Show HN: Android AI agent-assistant operating your apps (no adb,PC,root,etc.)

2•sshnaidm1•5h ago•2 comments

Show HN: Uncook, the Social Network for Food

https://uncook.xyz
3•moffers•5h ago•2 comments

Show HN: Bullseye2D – A Dart library for cross-platform 2D games

https://github.com/bullseye2d/bullseye2d
4•joemanaco•9h ago•0 comments

Show HN: Minnow – minimal now pages via chat

https://minnow.social/
3•freshman_dev•6h ago•1 comments

Show HN: FluidCAD – Parametric CAD with JavaScript

https://fluidcad.io/
150•maouida•1d ago•36 comments

Show HN: Toy Python Lisp interpreters based on the 1960 McCarthy paper

https://github.com/jhud/lisp
3•disconnection•7h ago•0 comments

Show HN: Waffle – Native macOS terminal that auto-tiles sessions into a grid

https://waffle.baby
36•olleeolleeollee•1d ago•11 comments

Show HN: A WYSIWYG word processor in Python

https://codeberg.org/chrisecker/miniword
84•chrisecker•1d ago•37 comments

Show HN: Eve – Managed OpenClaw for work

https://eve.new/login
69•zachdive•2d ago•37 comments

Show HN: macpak (Homebrew Wrapper for macOS)

https://github.com/kavindujayarathne/macpak
3•atkavindu•10h ago•1 comments

Show HN: A Better Internet

https://tomclancy.info/pages/abi-a-better-internet.html
9•tclancy•21h ago•3 comments

Show HN: I built a Cargo-like build tool for C/C++

https://github.com/randerson112/craft
171•randerson_112•3d ago•166 comments

Show HN: Marimo pair – Reactive Python notebooks as environments for agents

https://github.com/marimo-team/marimo-pair
138•manzt•4d ago•34 comments

Show HN: CSS Studio. Design by hand, code by agent

https://cssstudio.ai
168•SirHound•3d ago•106 comments

Show HN: Keeper – embedded secret store for Go (help me break it)

https://github.com/agberohq/keeper
63•babawere•2d ago•33 comments

Show HN: Minimalist template for scientific and academic resumes

https://github.com/pmichaillat/latex-cv
3•reomgdfsrtr•13h ago•2 comments

Show HN: Moon simulator game, ray-casting

https://mooncraft2000.com
114•JKCalhoun•6d ago•25 comments

Show HN: Druids – Build your own software factory

https://github.com/fulcrumresearch/druids
64•etherio•3d ago•15 comments

Show HN: Bitcoin and Quantum Computing – a three-part research series

https://bitcoinquantum.space
5•nvk•22h ago•1 comments

Show HN: Brutalist Concrete Laptop Stand (2024)

https://sam-burns.com/posts/concrete-laptop-stand/
786•sam-bee•5d ago•238 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•11mo 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•11mo ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•11mo 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•11mo 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•11mo 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•11mo ago
Improvement deployed!
swaptr•11mo 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•11mo ago
It's my pleasure! :)
jayl-e-e•10mo ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?