frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: High-Res Neural Cellular Automata

https://cells2pixels.github.io/
122•esychology•4h ago•26 comments

Show HN: Capacitor Alarm Clock

https://github.com/ArcaEge/capacitor-alarm-clock
76•arcaege•3d ago•26 comments

Show HN: Inkwash, a watercolor sketching app and explanation

https://johnowhitaker.github.io/inkwash/about
15•Yenrabbit•3d ago•9 comments

Show HN: LinguaX – a native macOS mouse enhancer (Logi Options+ alternative)

https://linguax.app/
2•deepzz0•54m ago•0 comments

Show HN: I built 184 free browser tools – PDF, image, dev, AI tasks, no upload

https://brevio.pro
25•ruimbarreira•4h ago•7 comments

Show HN: Mira – Open-source and self-hosted AI code reviewer

https://github.com/miracodeai/mira
4•upmostly•1h ago•2 comments

Show HN: cuTile Rust: Safe, data-race-free GPU kernels in Rust

https://github.com/nvlabs/cutile-rs
93•melihelibol•18h ago•14 comments

Show HN: VoiceDraw – Talk system design out loud, the diagrams draw themselves

https://voicedraw.com/
47•ajaypanthagani•19h ago•18 comments

Show HN: Sabela – A Reactive Notebook for Haskell

https://sabela.datahaskell.com/
42•mchav•3d ago•3 comments

Show HN: Garden of Flowers – an archive of pictorial typography before ASCII art

https://garden-of-flowers.heikkilotvonen.com/
153•california-og•1d ago•26 comments

Show HN: Fata – Spaced repetition to fight skill rot from AI coding

https://fata.dev
116•djoume•6d ago•53 comments

Show HN: Pen and paper resource development game with an emergent world

https://www.jameshylands.co.uk/2026/06/sortis-paper-empire-game.html
32•jhylands•20h ago•2 comments

Show HN: Veterinarian turned founder, AI lawn diagnosis

https://grassdx.com/
75•andrewbr•1d ago•60 comments

Show HN: Day-ahead river discharge forecasting using USGS and ERA5 data

https://sentinel-forecasting.com/mississippi-tutorial/
3•grezac•7h ago•0 comments

Show HN: Otty – a native and beautiful terminal emulator

https://otty.sh/
10•ilchenearly•11h ago•8 comments

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

https://github.com/tamnd/kage
695•tamnd•2d ago•140 comments

Show HN: machine0 – Persistent NixOS VMs You Control from the CLI

https://machine0.io
90•bwm•1d ago•36 comments

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

https://traceapp.info
202•AG342•3d ago•83 comments

Show HN: Azure DevOps TUI Management Style

https://github.com/elpulgo/azdo
9•elpulgo•19h ago•1 comments

Show HN: Discover Wikipedia articles popular on Hacker News

https://www.orangecrumbs.com/
136•octopus143•2d ago•33 comments

Show HN: SharkClean MCP

https://github.com/a-funk/sharkclean-mcp
16•afunk•4d ago•4 comments

Show HN: Ctx, save tokens by loading only the relevant tools

https://github.com/stevesolun/ctx
7•stevesolun•20h ago•0 comments

Show HN: Easy text to social media cards platform

https://cards.tinygods.dev
2•danipolani•14h ago•1 comments

Show HN: Exploiting Slack's video embeds to achieve E2EE communication

https://v1c.rocks/log/exploiting-slack-video/
31•victorio•1d ago•3 comments

Show HN: Homebrew 6.0.0

https://brew.sh/2026/06/11/homebrew-6.0.0/
1474•mikemcquaid•6d ago•361 comments

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

https://new.roman-names.com/
210•metiscus•6d ago•51 comments

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

https://github.com/Paca-AI/paca
172•pikann22•4d ago•65 comments

Show HN: The Oct Programming Language for scientific programming

https://github.com/yuechen-li-dev/oct
4•YuechenLi•15h ago•0 comments

Show HN: Numax - a portable runtime for distributed apps

https://github.com/GianIac/numax
6•gianiac•16h ago•1 comments

Show HN: Private Markets SEC Filings Index

https://search.stillhousedata.com
4•lemonlym•16h 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?