frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I'm crawling 11k homepages every week to track which fonts they use

https://fontsovertime.com/
3•fcjr•43m ago•1 comments

Show HN: Clue Me – Describe the word you're given, Jev tries to guess it

https://yorohan.com/clue-me
4•rohanm93•2h ago•1 comments

Show HN: Minienv – remote mini environments generated from Docker Compose config

https://github.com/robgonnella/minienv
3•rgonn•2h ago•0 comments

Show HN: Trader News – Hacker News for Finance

12•FailMore•6h ago•11 comments

Show HN: An open-source manufacturing ERP/MES/QMS

https://carbon.ms/self-hosted
47•barbinbrad•14h ago•25 comments

Show HN: I built a post-mortem debugger for native Windows x64/x86 crashes

https://www.forensicdbg.com
35•Loren_SL•19h ago•5 comments

Show HN: Tachyon – Java MCP Server SDK

https://tachyonmcp.dev
4•lumestro•5h ago•0 comments

Show HN: Wl-pick – a live window picker for Sway

https://mil.ad/blog/2026/wl-pick.html
2•playnext•6h ago•0 comments

Show HN: An atlas of system designs with interactive architecture diagrams

https://atlas-sysdes.vercel.app/
50•mertkahyaoglu•2d ago•18 comments

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

https://github.com/hsfzxjy/npunlock
65•hsfzxjy•2d ago•12 comments

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

https://benchmarkheaven.com/jev-models
144•florianstandhar•2d ago•36 comments

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

https://droprun.sh/
187•mixedbit•2d ago•63 comments

Show HN: CubeLV – AI that designs your automation before building it

https://app.cubelv.com
4•qqrun•7h ago•1 comments

Show HN: Air-gapped file encryption as self-decrypting HTML page

https://cms-sfx-demo.apeleg.com/
7•emurlin•7h ago•5 comments

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

https://arxiv.org/abs/2609.15369
68•jochenmadler•2d ago•25 comments

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

https://ai-rete-rag.com/
44•ZaharaHussain•1d ago•9 comments

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

https://github.com/volotat/mini-AGI/
276•volotat•3d ago•76 comments

Show HN: Conway's Game of Life in boot sector

https://github.com/0xAX/BootLife
27•0xAX•2d ago•4 comments

Show HN: QBasic 1.1 in the Browser

https://www.vahidyousefzadeh.com/qbasic/app
8•vahidce•18h ago•5 comments

Show HN: A game about fake news and memes

https://unspin.app/
3•azermite•13h ago•1 comments

Show HN: Does per-step reasoning effort save money in Claude Code?

https://github.com/ifoster01/jev-effort
4•ifoster41901•13h ago•0 comments

Show HN: ChaosTree – Cache-Aware Java NavigableMap and NavigableSet Library

https://github.com/Chaos-vy/ChaosTree
2•chaos_vy•13h ago•1 comments

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

https://github.com/General-Instinct/InstinctFlash
27•guanming0717•1d ago•4 comments

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

https://tinybrains.dev
115•codetiger•4d ago•41 comments

Show HN: Make cursed fonts like Times New Bastard

https://bastardica.mitpit.com
7•MitPitt•16h ago•1 comments

Show HN: Fjordfall – Take the long way down

https://fjordfall.fly.dev/
4•maddmann•16h ago•0 comments

Show HN: Radius – A Meetup.com Alternative

https://radius.to/
168•radius89•3d ago•84 comments

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

https://github.com/naw103/foremerge
45•naw103•2d ago•20 comments

Show HN: AgentRun: DSL to turn agents into Workflows

https://github.com/Parcha-ai/agentrun
9•miguelrios•19h ago•0 comments

Show HN: Suparelay – Call any phone in the world from a browser tab

https://suparelay.app
3•azyc•19h ago•1 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?