frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Physically accurate black hole you can put in your room

https://blackhole.plav.in
290•aplavin•3d ago•86 comments

Show HN: CheapSecurity – Lightweight, Self-Hosted CCTV for Linux SBCs

https://github.com/gmrandazzo/CheapSecurity
128•zeldone•17h ago•26 comments

Show HN: Reverse Minesweeper

https://sunflowersgame.com/
214•pompomsheep•20h ago•69 comments

Show HN: Watch 14-Byte AI "brains" attempt to solve a 2D maze (Its hard)

https://con-dog.github.io/MINIMIO-PUBLIC-FRONTEND/
3•purple-leafy•1h ago•1 comments

Show HN: Descript wanted $24/mo, I built an open-source alternative in a weekend

https://github.com/wassgha/rescript
3•wassimgr•2h ago•0 comments

Show HN: I mapped every US golf course

https://golfcoursebrowser.com/
204•rickmf•1d ago•151 comments

Show HN: Paper – A Journaling CLI for Developers

https://paper.rewrlution.com
7•dmsehuang•9h ago•4 comments

Show HN: Simple HIIT timer for efficient workouts

https://www.hiitmeup.fit/
5•takee•8h ago•2 comments

Show HN: Watch random code typed out on an MS-DOS IDE

https://hackerman.specr.net/
2•vunderba•4h ago•0 comments

Show HN: ASL V6 – Open-source AST red-teaming engine for Python AI agents

https://github.com/sivaadityacoder/asl-v6
2•sivaaditya•5h ago•0 comments

Show HN: Anyclaude-SDK – Claude Code-Style SDK for OpenAI/Anthropic Endpoints

https://github.com/pipilot-dev/anyclaude-sdk
4•hansade•10h ago•0 comments

Show HN: Discrete6502 – one thing led to another

https://epatel.github.io/discrete6502/
11•epatel99•10h ago•5 comments

Show HN: Echo – Fable-level results at 1/3 the cost using open-weight models

474•adam_rida•3d ago•222 comments

Show HN: A browser-based video editor that renders videos directly with FFmpeg

https://github.com/thiagoalbrecht/weave
15•thiagoas•18h ago•4 comments

Show HN: A 60-line PreToolUse hook that stops Claude Code from editing your .env

https://github.com/avenna01-ceo/claude-code-survival-kr/tree/main/guard
4•gaiinmaster•8h ago•0 comments

Show HN: Aqua UI for the Web

https://github.com/willmeyers/aqua-ui
5•willmeyers•8h ago•0 comments

Show HN: Writemark, a dependency free web component for inline Markdown editing

52•_boffin_•1d ago•23 comments

Show HN: RelativeDB – OSS query engine for relational foundation models

https://github.com/RelativeDB/RelQL
3•scottcodie•8h ago•1 comments

Show HN: Turn an image into a 3D blockbench model

https://github.com/orca-gamedev/img2blockbench
3•ekduman•8h ago•0 comments

Show HN: Blind-box commerce made easy

https://chancey.run
2•13001r•8h ago•0 comments

Show HN: Lowkey Studio – Shader Powered visual effects compositor in the Browser

https://lowkeyviewer.com/studio/
2•tracerbulletx•9h ago•0 comments

Show HN: Brolly, a plain-text weather forecast site

https://brolly.sh/forecast/RWFP2qW8
223•jsax•1d ago•82 comments

Show HN: I made some transistor animations

https://brandonli.net/semisim/animations
206•stunningllama•2d ago•28 comments

Show HN: Wmux – A workspace multiplexer for AI agents

https://github.com/openwong2kim/wmux
12•wong2kim•21h ago•0 comments

Show HN: SpinWin – A macOS menu bar app to visually rotate or spin any window

https://github.com/alokdhir/spinwin
37•dbm5•1d ago•14 comments

Show HN: The Jac Programming Language

https://jaclang.org/
8•marsninja•10h ago•6 comments

Show HN: GG Translator – Turn gaming shit talk into friendly phrases

https://ggtranslator.com
2•mcadenhe•10h ago•0 comments

Show HN: LuaJIT with Native SIMD

https://github.com/TheLuaOSProject/LuaJITMT/releases/tag/1.0.0-simd
3•frityet•10h ago•1 comments

Show HN: Palmier Pro – Open-source macOS video editor built for AI

https://github.com/palmier-io/palmier-pro
190•harrisontin•3d ago•39 comments

Show HN: Managing on-premise servers without Kubernetes

https://github.com/ricardoborges/Nautilus
18•r2ob•19h ago•11 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?