frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Resume Claude Code without replaying your whole session

https://github.com/sofumel/claude-handoff-revive
2•sofumel•27m ago•2 comments

Show HN: Posthorn, self-hosted mail without the mail server

https://github.com/craigmccaskill/posthorn
43•craigmccaskill•7h ago•35 comments

Show HN: Axion – Browser-based guitar amp/effects rig

https://axion.cab/
2•rhysfonixone•1h ago•2 comments

Show HN: A website that tracks every stock trade Congress makes

https://congress.kadoa.com/
39•hubraumhugo•19h ago•10 comments

Show HN: Rapel – chunked resumable downloads in unstable networks

https://github.com/redraw/rapel
14•autorun•1d ago•7 comments

Show HN: OpenBrief – Local-first video downloader/summarizer

https://github.com/tantara/openbrief
88•tantara•1d ago•17 comments

Show HN: STAX IDE – A zoomable macOS canvas of terminals and tools

https://staxide.com
2•vbaranov87•7h ago•0 comments

Show HN: Tasmap – Canva for Maps

https://tasmap.app/
5•apolkingg8•7h ago•2 comments

Show HN: Audiomass – a free, open-source multitrack audio editor for the web

https://audiomass.co/?multitrack=1
538•pantelisk•2d ago•118 comments

Show HN: Cross-agent messaging and shared memory over the local filesystem

https://oacp.dev
10•haoranchg•18h ago•5 comments

Show HN: Geomatic – A command-driven geometry studio enabled with autodiff

https://www.tinyvolt.com/geomatic
72•nivter•2d ago•16 comments

Show HN: Write your BPF programs in Go, not C

https://github.com/boratanrikulu/gobee
112•boratanrikulu•5d ago•54 comments

Show HN: Fungible – A local personal finance app in the terminal

https://github.com/tomfunk/fungible
22•tomfunk•1d ago•12 comments

Show HN: I built a tool to auto-accept AI slop and bigtech devs loves it

https://github.com/Alcray/SlopeAutoAcceptor
12•alcray•15h ago•0 comments

Show HN: skills-for-humanity – 171 structured reasoning skills for Claude Code

https://github.com/human-avatar/skills-for-humanity
21•finnworks•1d ago•5 comments

Show HN: NeuroFlow 55.8x video inference speedup for Vision Transformers PyTorch

https://github.com/ynnk-research/-NeuroFlow
7•ynnk•20h ago•2 comments

Show HN: GoPeek – open links in live mini browser windows without new tabs

https://guptalog.substack.com/p/gopeek-open-links-in-live-mini-browser
20•GeorgeWoff25•5h ago•2 comments

Show HN: DDoS detection in 500 lines of Python (MIT, no cloud, no account)

https://github.com/Flowtriq/ftagent-lite
5•jacob_masse•15h ago•4 comments

Show HN: TUI to keep track of local GSD (get-shit-done) projects

https://github.com/bitcreed/gsd-meta-manager/
4•_blk•17h ago•1 comments

Show HN: An LLM translator whose source is a single prompt

https://github.com/hamsterbase/llm-translator
5•Cassandra99•17h ago•0 comments

Show HN: TryPost – open-source Social Media Scheduler

https://trypost.it/en
13•paulocastellano•1d ago•6 comments

Show HN: Volt – front end tooling for Phoenix that runs inside the BEAM

https://github.com/elixir-volt/volt
24•dannote•1d ago•1 comments

Show HN: I used AI to built static recompilers for 5 retro game systems

https://1379.tech/nes-snes-genesis-virtualboy-and-psx-a-journey-with-ai-and-recompilation/
5•Gamemaster1379•18h ago•0 comments

Show HN: Stumbleback – StumbleUpon for the bookmarks you've been hoarding

https://chromewebstore.google.com/detail/stumbleback/fkmbjmmdkpfpcnmbgnpmnkhnhecieigk
3•jimsojim•7h ago•0 comments

Show HN: Speakrs Full PyAnnotate pipeline in Rust/ONNX 20-37x times faster macOS

https://github.com/avencera/speakrs
2•praveenperera•19h ago•0 comments

Show HN: Freenet, a peer-to-peer platform for decentralized apps

https://freenet.org/
384•sanity•5d ago•269 comments

Show HN: Mind-expander, a visual workspace for coding with AI agents

https://github.com/mbbill/mind-expander
3•mbbill•20h ago•2 comments

Show HN: ShadowCat – file transfer through QR Codes in a Browser

https://github.com/unprovable/ShadowCat
165•unprovable•5d ago•64 comments

Show HN: Chuchu, a modern Android SSH client powered by libghostty

https://github.com/jossephus/chuchu
3•jossephus01•21h ago•0 comments

Show HN: I open-sourced two AI agents with real memory (chat and voice, MIT)

https://github.com/SynapCores/synapcores-agent
5•SQLv2•21h 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?