frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Neobrutalism.dev – Just added Base UI support and added new color theme

https://www.neobrutalism.dev/
66•samke-•2h ago•39 comments

Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost

https://narilabs.com/blog/nari-labs-leads-coval-voice-ai-benchmarks/
12•toebee•2h ago•5 comments

Show HN: Apollo Lunar Module landing simulation

https://gosandeep.com/eagles-descent/
7•gosandeep•5d ago•0 comments

Show HN: Pelican-bicycle alternatives

https://gally.net/temp/20260914pelican-alternatives/index.html
68•tkgally•5h ago•26 comments

Show HN: Kinesis – Control your Mac with the Meta Neural Band

https://github.com/callbacked/kinesis
103•callbacked•6h ago•31 comments

Show HN: Fly.exe – An EON systems like virtual fruit fly uploaded to computer

https://github.com/Ibtisam-Mohammad/Fly.exe
18•Ibti_sam•3h ago•4 comments

Show HN: Pushie – Get notified with a simple webhook

https://pushie.net
12•vasanthv•4h ago•5 comments

Show HN: Threshyr – An offline automatic time tracker with on-device AI

https://threshyr.com
2•affanBajwa•1h ago•1 comments

Show HN: Is this photo edited? Client-side image forensics

https://vajba.com/image-forensics/
16•trivsamt•4d ago•7 comments

Show HN: MCP Harbor – An MCP Registry

https://ai.mcpharbor.dev/
2•Lbesecker195•2h ago•0 comments

Show HN: I built Otis, a minimal AI agent that runs local models out of the box

https://triangllabs.ai/otis
12•petrenk0n•6h ago•0 comments

Show HN: Helical Time – Visualizing time as a continuous 3D torus

https://github.com/nimabeh/helical-time
4•nimabe•2h ago•0 comments

Show HN: Cognition-Claude-proxy – Use Devin model catalog with Claude Code

https://github.com/coderexpert123/cognition-claude-proxy
2•hrishi1990•2h ago•0 comments

Show HN: Rebuno - An open-source runtime for production agents

https://github.com/rebuno/rebuno
3•nnww•2h ago•0 comments

Show HN: DNSMint – Give a sandbox its own domain and HTTPS cert in one API call

https://dnsmint.com/
2•kxbnb•2h ago•0 comments

Show HN: AttaLambda: a language where types and data are made of untyped lambdas

https://attalambda.com
2•kserrec•2h ago•0 comments

Show HN: AgentDrive – persistent, versioned file storage for AI agents

https://tokencanopy.com/products/agentdrive
4•tokencanopy•2h ago•3 comments

Show HN: what-time Neural Parser for Schedule extraction in English, Hindi

https://github.com/MagicBeansAI/what-time
2•das_vicky•2h ago•0 comments

Show HN: Requirement5 – a digital card collection game

2•FailMore•3h ago•0 comments

Show HN: Local catalog of 3k agent skills with a static risk scan

https://github.com/xm1k3/ai-community-skills
2•xm1k3•3h ago•0 comments

Show HN: Backtotal – the total is given, work back to the four digits

https://backtotal.com/
3•Dogs2478•3h ago•3 comments

Show HN: Shortcut Express – My attempt to get the world using keyboard shortcuts

https://github.com/chimit/shortcut-express
2•motomac•3h ago•0 comments

Show HN: Push Notifications for Hacker News

https://www.hazumi.news
2•jrhey•3h ago•0 comments

Show HN: Fidelic, a Salesforce emulator in a Docker container

https://www.fidelic.dev/
2•ifykhanikhan•3h ago•0 comments

Show HN: Botbin – A zero-login HTML pastebin for AI agents

http://botbin.io/
2•obilgic•3h ago•0 comments

Show HN: msgspec-serde, Fast serialization for msgspec, flatbuffers, & arrays

https://github.com/ebrevdo/msgspec-serde
2•yablak•3h ago•0 comments

Show HN: Drone flight over world cities and neighbourhoods

https://citydrones.kingsbridge-consultancy.com/
3•beerglass•3h ago•2 comments

Show HN: GSE Cleaner – In-browser streaming parser for large GEO datasets

https://byqing.com/gse/
2•niqing•3h ago•0 comments

Show HN: Skillzero – save tokens by omitting skills from agent context

https://github.com/kurtextrem/skillzero
2•kurtextrem•3h ago•0 comments

Show HN: I built a URL shortener from scratch

2•yhussain1110•4h 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?