Live data from Hacker News

Ask HN: What Are You Working On? (April 2026)

news.ycombinator.com

881–890 of 1001 posts

Re: Ask HN: What Are You Working On? (April 2026)

#881
I'm building Repple (https://repple.sh), a free flashcard app with spaced repetition scheduling and some (tasteful imo) AI additions. I've been using Anki for 10+ years and love it but always wanted something with a cleaner UI and that's a bit easier to experiment with. The recent Anki ownership change pushed me to finally make something.

Added a REST API (https://repple.sh/developers) a few weeks ago so you can build on top of it. Decks, cards, reviews, etc.

Feature delta over Anki:

- Tab-autocomplete for text fields

- Automatic image-gen for image fields

- Optional rephrasing that changes wording each review to avoid pattern matching

- Basic PDF library & incremental reading support

- "Orphan" card detection; i.e. knowledge that isn't well connected

- ... + a bunch of other qol improvements like semantic search, etc.

Re: Ask HN: What Are You Working On? (April 2026)

#883
I’m working on shifu (https://github.com/Ultramann/shifu), a pure POSIX shell framework to create powerful CLIs.

Shifu provides: argument parsing, subcommand dispatch, help string formatting, tab completion for interactive shells, compatibility with POSIX-based shells (tested with ash, bash, dash, ksh, zsh); all in a single POSIX shell file with no dependencies.

Edit: formatting

Re: Ask HN: What Are You Working On? (April 2026)

#884
I'm building security-check(https://github.com/idlework/security-check), a fast and open source CLI tool to audit your macOS security settings.

After reading several blogs about macOS security, I wondered how secure my own Mac actually was. To my surprise after searching for a simple CLI tool I could not find any good or maintained tools. I did find more complex tools: Lynis felt too enterprise-heavy, mSCP is designed for fleet management, and the GUI tools don't fit into a developer workflow. So I built security-check to have a quick way to check whether my Mac's security settings were actually configured well.

What it does: scans ~40 macOS security settings (FileVault, Firewall, Gatekeeper, SIP, etc.), gives you a letter grade, and outputs JSON if you want to pipe it somewhere. The --diff flag lets you track what changed between runs. Runs in under 5 seconds, zero dependencies, and single binary.

This is my first public Rust project, so I'd genuinely appreciate feedback on the code, idiomatic improvements, architecture, anything really. And if you have ideas for checks that should be included, I'd love to hear them so I can add them to the list.

If you find it useful, a star on the repository helps others discover it too.

Thanks for checking it out

Post reply on HN