Hacker News new | ask | show | jobs
by anotherevan 2 days ago
First personal little thing was a little mobile friendly website for taking coffee and tea orders. Two pages, one for someone to enter orders, second for listing orders and marking them as done. Was a bit of a gimmick idea I'd had in the back of my head for family lunches to save me running around with a scrap of paper and a pen asking what everyone wanted. Thought it would make a good little exploration of "vibe coding".

Second is a utility that will take a text file export from Wallabag, and use text to speech to convert it to an MP3 file. I then integrated it into a utility that I already wrote for managing articles so if I tag an article with listen it automatically gets converted and gets shunted to the podcast listening app on my phone.

Last was to recreate a little directory listing utility that I've had a 32-bit binary of for ages, but no longer (if ever) have the source code for. I'd always promised myself I would write it once I learned Rust, but decided try using AI as I was getting impatient to have it now. The utility lists all files, including hidden, in a directory, grouped by type. Below is an example listing the directory for the project itself:

    Directories:
    .hg            src            target         tests

    Files:
    .hgignore      AGENTS.md      ARCHITECTURE.md               CONTRIBUTING.md
    Cargo.lock     Cargo.toml     GEMINI.md      README.md      gemini-log.html
Some command-line flags to just list a particular type, such as only directories, or only unsatisfied symbolic links.