frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Snapdrop: Instantly share files between devices. No setup, no signup

https://snapdrop.me
8•Capira•1h ago•2 comments

Show HN: Share your AI Setup, Learn from others

https://mysetup.ai/
159•steveybrown•9h ago•81 comments

Show HN: OJ – A drop-in replacement for Vite in Rust

https://github.com/lovablelabs/oj
4•h1fra•1h ago•0 comments

Show HN: Craigslist for agent skills, curated by a human

https://skillbay.sh/
19•skeptrune•5h ago•16 comments

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
2271•arnemunthekaas•2d ago•255 comments

Show HN: Free game to destroy any web page

https://page-rage.com/
2•alexreardon•1h ago•0 comments

Show HN: AI crawler honeypot – logs every agent that requests it

https://ai-crawler-honeypot-697299601273.europe-west2.run.app/
2•djp1122222•1h ago•0 comments

Show HN: I built a new version of my fun spatial 3D online meeting app

https://flat.social
91•pawelwentpawel•9h ago•52 comments

Show HN: Aclif – Agent CLI framework: one grammar, canonical names across SaaS

https://www.aclif.ai/
29•chris_marino•5h ago•16 comments

Show HN: Microsoft Office Running with Wine on Linux with No Virtualization

https://github.com/Tombert/office365_flake
2•tombert•1h ago•2 comments

Show HN: Radio – a shared workspace for your agents and teammates

https://radio.plasma.ai/
3•eswhang•1h ago•0 comments

Show HN: Composing domain-specific harness on Python in 10 mins

https://cayu.dev/walkthrough/
3•zamir_akimbekov•1h ago•0 comments

Show HN: Vim-like, hyper-efficient, LLM power tool - 20-80k tokens not 350k+

https://easiest.ai/
2•skhameneh•2h ago•0 comments

Show HN: HSL-Noise – A noise generator mapped to the HSL color space

https://hsl-noise.mitpit.com/
2•MitPitt•2h ago•0 comments

Show HN: Hishel – HTTP Caching for Python

https://hishel.com
2•karpetrosyan•2h ago•0 comments

Show HN: AutoBot – live voice control for long-running AI work

https://github.com/demeyer1/Autobot
14•demeyer1•5h ago•3 comments

Show HN: A map of 68 programs and jobs in AI safety research

https://cleverhack.com/ai-research-ai-safety-ai-talent
2•jlark77777•2h ago•0 comments

Show HN: Multiplayer Mode for AI Agents

https://gotincan.com/
4•dko•2h ago•2 comments

Show HN: Founder.best – Help your product get found by AI, not just Google

https://www.founder.best
2•NimeshikaP•3h ago•0 comments

Show HN: Navier-Stokes Visualized as 1kB i386 demos

https://juandecos.github.io/TurboZip/vortex.html
28•chaostaco•4d ago•2 comments

Show HN: The Endless Museum, Wikipedia as a walkable museum

https://theendlessmuseum.com/
4•edwardbonnett•3h ago•0 comments

Show HN: Ax-Check.com – Can Agents Use Your Product?

https://www.ax-check.com/
3•0x63_Problems•4h ago•0 comments

Show HN: Linting 216 public Claude Code skills – 69% won't reliably trigger

https://skillcrossroads.com
2•sgharlow•4h ago•0 comments

Show HN: What if you could review code without reading code?

https://github.com/coldteadotai/pr-lens
4•ohans•5h ago•0 comments

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

https://attalambda.com
43•kserrec•3d ago•7 comments

Show HN: Repodify: Make Podcasts Out of Podcasts

https://www.repodify.app/
4•runnr_az•5h ago•1 comments

Show HN: Pappice live demo in browser via WASM

https://pappice.eu/
3•lallero317•5h ago•0 comments

Show HN: dishlist – my favorite things on the menu

https://testflight.apple.com/join/VB1YAe63
2•coopers•5h ago•0 comments

Show HN: Content-aware PII redaction with Jev in Postgres

https://pg-redact.vercel.app
2•rishi_•5h ago•0 comments

Show HN: Graph RAG in Postgres. New facts replace older facts

https://github.com/crajah/post-graph-rag
2•chandanrajah•5h 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?