frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: TokenDagger – A tokenizer faster than OpenAI's Tiktoken

https://github.com/M4THYOU/TokenDagger
220•matthewolfe•9h ago•61 comments

Show HN: New Ensō – first public beta

https://untested.sonnet.io/notes/new-enso-first-public-beta/
196•rpastuszak•10h ago•75 comments

Show HN: We're two coffee nerds who built an AI app to track beans and recipes

https://beanbook.app
16•rokeyzhang•2h ago•6 comments

Show HN: Open-Source International Space Station Tracker ESP32/Arduino for $20

https://github.com/GuitarML/SpaceStationTracker
57•keyth72•3d ago•17 comments

Show HN: Audiopipe – Pipeline for audio diarization, denoising and transcription

https://github.com/nullwiz/audiopipe
3•nullwiz•2h ago•0 comments

Show HN: I built a daily sunlight tracker

https://www.lumehealth.io/products
37•vickipow•3d ago•29 comments

Show HN: Attach Gateway – one-command OIDC/DID auth for local LLMs

https://github.com/attach-dev/attach-gateway
3•hammadtariq•3h ago•0 comments

Show HN: QuizKnit, an open source quiz creator

https://quizknit.com
2•jibolash•4h ago•0 comments

Show HN: Octelium – FOSS Alternative to Teleport, Cloudflare, Tailscale, Ngrok

https://github.com/octelium/octelium
333•geoctl•1d ago•144 comments

Show HN: MailMap – Turn emails into interactive stories on Google Maps

https://mailmap.site
3•Premananda•6h ago•0 comments

Show HN: Private real-time dictation app for Mac

https://github.com/aviaryan/Very-Fast-Dictation
2•aviaryan•6h ago•0 comments

Show HN: Semantic-dictionary – A Python dictionary with semantic lookup

https://github.com/eu90h/semantic-dictionary
4•eu90h•8h ago•0 comments

Show HN: I'm an airline pilot – I built interactive graphs/globes of my flights

https://jameshard.ing/pilot
1504•jamesharding•3d ago•196 comments

Show HN: DotnetEbpf - Write Linux eBPF kernel applications in C#

https://github.com/KallDrexx/DotnetEbpf
4•KallDrexx•8h ago•0 comments

Show HN: Ravana, Multi AI Assistant Browser Desktop App

https://github.com/yogirk/ravana
3•ashtavakra•8h ago•1 comments

Show HN: Sharpe Ratio Calculation Tool

https://www.fundratios.com/
22•navquant•1d ago•16 comments

Show HN: Summle – A little maths Game

https://summle.net
24•kirchhoff•4d ago•7 comments

Show HN: My Cross-Platform MySQL Parser

https://abbychau.github.io/mysql-parser/
4•abbychau•9h ago•0 comments

Show HN: AGL a toy language that compiles to Go

https://github.com/alaingilbert/agl
83•alain_gilbert•5d ago•12 comments

Show HN: AI image alt text generation tool – Turn images into text with AI

https://imagerr.ai/
4•andrej-wp•10h ago•0 comments

Show HN: Flutter Course 3.0: A Browser IDE

https://www.hungrimind.com/articles/flutter-course-30
2•tadaspetra•4h ago•0 comments

Show HN: Vet – A tool for safely running remote shell scripts

https://getvet.sh
80•a10r•2d ago•37 comments

Show HN: A tool to benchmark LLM APIs (OpenAI, Claude, local/self-hosted)

https://llmapitest.com/
52•mrqjr•1d ago•9 comments

Show HN: A different kind of AI Video generation

44•fcpguru•4d ago•19 comments

Show HN: Sink – Sync any directory with any device on your local network

https://github.com/sirbread/sink
144•sirbread•3d ago•89 comments

Show HN: Magnitude – Open-source AI browser automation framework

https://github.com/magnitudedev/magnitude
139•anerli•4d ago•40 comments

Show HN: Do you know RGB?

https://maxwellito.github.io/do-you-know-rgb/
92•maxwellito•6d ago•58 comments

Show HN: Zenta – Mindfulness for Terminal Users

https://github.com/e6a5/zenta
198•ihiep•3d ago•39 comments

Show HN: I built an AI dataset generator

https://github.com/metabase/dataset-generator
165•matthewhefferon•4d ago•33 comments

Show HN: SmartStepper – Multi-Step Form Library with Config-Based Flow

https://github.com/Miladxsar23/smartstepper
14•milad_shirian•1d ago•4 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•1mo 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•1mo ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•1mo 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•1mo 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•1mo 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•1mo ago
Improvement deployed!
swaptr•1mo 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•1mo ago
It's my pleasure! :)
jayl-e-e•1mo ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?