frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Npunlock – Run custom C kernels for Intel NPUs

https://github.com/hsfzxjy/npunlock
44•hsfzxjy•23h ago•11 comments

Show HN: JevBench, a reproducible benchmark for typed decision models

https://benchmarkheaven.com/jev-models
116•florianstandhar•23h ago•32 comments

Show HN: Run Linux kernel drivers in userspace on Neptune OS, NT-like OS on seL4

3•cl91•2h ago•0 comments

Show HN: Training a model to identify AI web content from structure alone

https://arxiv.org/abs/2609.15369
60•jochenmadler•23h ago•16 comments

Show HN: Drop – A rootless Linux sandbox with gVisor support

https://droprun.sh/
175•mixedbit•22h ago•59 comments

Show HN: Company-as-Code –> Spec and Validator

https://github.com/Pirol-ai/company-as-code
2•grischajacobs•3h ago•0 comments

Show HN: AI·rete·RAG – a Rete rule engine decides, RAG explains why

https://ai-rete-rag.com/
37•ZaharaHussain•20h ago•3 comments

Show HN: InstinctFlash – High-Performance Serving Runtime for Robotics Models

https://github.com/General-Instinct/InstinctFlash
24•guanming0717•21h ago•3 comments

Show HN: Visually orchestrate Claude Code AI agents

https://github.com/rondoflow/rondoflow
3•bdearch•6h ago•0 comments

Show HN: Mini-AGI – Dynamic continual learning model trained on 8GB VRAM

https://github.com/volotat/mini-AGI/
276•volotat•2d ago•75 comments

Show HN: Napkin – a scratchpad that holds texts and images for copy

https://github.com/sudomonas/napkin
3•ppnpm•7h ago•2 comments

Show HN: OpenMCP – An open, code-first fork of the Model Context Protocol

https://github.com/enclawed/omcp
8•enclawed•21h ago•1 comments

Show HN: Sbm: plain-text bookmarks synced across terminal, browser, Android

https://sbmsync.com
2•equwal•9h ago•0 comments

Show HN: graf (1000x faster graphify in Rust)

https://github.com/ctxrs/graf
10•ripped_britches•19h ago•3 comments

Show HN: A competition for small neural networks that play strategy games

https://tinybrains.dev
111•codetiger•2d ago•40 comments

Show HN: Foremerge – Catch intent conflicts between parallel coding agents

https://github.com/naw103/foremerge
45•naw103•1d ago•17 comments

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
163•radius89•2d ago•81 comments

Show HN: Lossless-memory – a personal AI memory that never summarizes

https://github.com/aru-labs/lossless-memory
66•aru-labs•1d ago•29 comments

Show HN: Livenerf – a benchmark for whether Opus 5.5 gets nerfed

https://github.com/ninjahawk/livenerf
3•ninjahawk1•13h ago•0 comments

Show HN: A fast, offline Markdown viewer for macOS built in Swift

https://github.com/temir-dev/tims-markdown-reader
3•tim_tairov•13h ago•0 comments

Show HN: WavexAI – Unlimited tokens for a fixed cost

https://wavexai.dev/
6•wilsprouse•13h ago•11 comments

Show HN: LARP Capital – Prestige as a Service

https://www.larpcapital.us/
3•vknar•15h ago•1 comments

Show HN: NetM8 OS

https://netm8.com/
2•goodknightleo•15h ago•0 comments

Show HN: Vellum, the best diagram editor you'll ever use

https://vellum.blueprintr.io
23•JoshJamesAnthon•1d ago•15 comments

Show HN: Hack – my Hacker News mobile client now lets you block AI posts

8•busymom0•21h ago•3 comments

Show HN: Sigabrt.dev – cronjob monitor with an SSH TUI

https://sigabrt.dev
81•4815162342•4d ago•35 comments

Show HN: ToolHub – Hierarchical nav for 30 MCP tools without context bloat

https://github.com/Talos-popcorn/toolhub
2•soidkeo•15h ago•0 comments

Show HN: jevals – replacing LLM judges with typed Jev decisions

https://github.com/openlayer-ai/jevals
46•gbayomi•2d ago•6 comments

Show HN: FreeCoffee – Self-hostable donation tool with crypto support

https://github.com/freecoffee-bio/freecoffee.bio
2•jacksun788•17h ago•3 comments

Show HN: Notes on Agentic AI – A text-first guide for practicing engineers

https://github.com/mrsachindixit/agentixit
2•tbaadm•18h 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?