frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TikZ Editor – WYSIWYG editor for figures in LaTeX

https://tikz.dev/editor/
341•DominikPeters•12h ago•63 comments

Show HN: Y – A malleable coding-agent desktop app built with Electron

https://github.com/y-times-y/y
19•HetPatel106•2h ago•11 comments

Show HN: FastUbu – An Ultrafast Video Archive

https://fastubu.com/
18•lukeigel•1d ago•1 comments

Show HN: Monolisa v3 – a typeface for developers and creatives

https://www.monolisa.dev/
50•bebraw•1d ago•8 comments

Show HN: The Cascade Graph – An interactive map of AI and energy constraints

https://atomprophet.io/tools/cascade/
15•antisyzygy•11h ago•9 comments

Show HN: Bun-sqlgen – Type-safe raw SQL for Bun, no ORM

https://github.com/ilbertt/bun-sqlgen
54•ilbert•12h ago•27 comments

Show HN: AI Torah Chervuta

https://www.yochai.wiki/chat
13•Philosopheril•6h ago•1 comments

Show HN: RLM-based local debugger for AI agent traces

https://github.com/context-labs/halo
12•mikepollard_dev•8h ago•3 comments

Show HN: Treedocs: Documentation that automatically checks for staleness

https://dandylyons.github.io/treedocs/
44•DandyLyons•11h ago•18 comments

Show HN: Neural Particle Automata

https://selforg-npa.github.io/
80•esychology•18h ago•19 comments

Show HN: Shumai – open-source Frame.io alternative for creative work

https://github.com/shumaiOne/shumai
56•Yiling-J•17h ago•4 comments

Show HN: Got sick of ads, so I made my own logic puzzle site

https://puzzlelair.com/
236•HaxleRose•1d ago•147 comments

Show HN: AnswerJournal – An MCP server to save and share AI answers

https://answerjournal.com/
4•daniban•4h ago•0 comments

Show HN: A pure ARM64 Assembly web server, now on Linux with CGI for no reason

https://github.com/imtomt/ymawky/tree/linux
48•imtomt•22h ago•23 comments

Show HN: CleverCrow: give tokens to your favorite projects

https://clevercrow.io
56•zhubert•2d ago•79 comments

Show HN: AirPosture – Open-Source Posture Coach Using AirPods

https://github.com/allenv0/AirPosture
3•allenleee•5h ago•1 comments

Show HN: Caplets - Give your agent capabilities, not giant tool walls

https://caplets.dev
5•ianpascoe•10h ago•1 comments

Show HN: Criterion Closet as a website – pull any of 1,247 films off the shelf

https://the-criterion-closet.vercel.app
187•olievans•3d ago•54 comments

Show HN: Pagecast – Publish Markdown/HTML Reports to Cloudflare Pages

https://github.com/Amal-David/pagecast
52•amaldavid•5d ago•14 comments

Show HN: Oak – Git alternative designed for agents

https://oak.space/oak/oak
210•zdgeier•1d ago•184 comments

Show HN: Sklearn-genetic-opt – evolutionary optimization for scikit-learn

https://rodrigo-arenas.github.io/Sklearn-genetic-opt/
4•rodrigo-arenas•7h ago•0 comments

Show HN: Recall – Local project memory for Claude Code

https://github.com/raiyanyahya/recall
134•mateenah•2d ago•84 comments

Show HN: I created agent skill based on Peter Lynch's books

https://github.com/DjNero11/peter-lynch-skill
4•DjNero•8h ago•2 comments

Show HN: Wordit – Change One Letter, Keep the Chain Going

https://victorribeiro.com/wordit/
3•atum47•8h ago•2 comments

Show HN: Your self, in every light - a local-first MCP self model for AI agents

https://github.com/almakit/alma
4•0set0set•10h ago•0 comments

Show HN: Teach your kids perfect pitch

https://github.com/paytonjjones/bsharp
208•paytonjjones•2d ago•145 comments

Show HN: CUDA Profiler for Production Inference

https://github.com/graphsignal/graphsignal-profiler
6•npgraph•10h ago•0 comments

Show HN: Selector Forge – browser extension for AI-generated resilient selectors

https://github.com/Intuned/selector-forge
35•ahmadilaiwi•1d ago•2 comments

Show HN: Snowscroll – I removed addictive feeds from social media

https://snowscroll.com/
4•junnam586•11h ago•0 comments

Show HN: StartupWiki – A Free Alternative to Crunchbase

https://startupwiki.tech/
232•shpran•3d ago•69 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?