Little programs or scripts or automations you’ve created ad-hoc to solve a particular single use case

I have lots of shortcuts i make on my phone and I have one i love that detects when bluetooth accidentally or purposefully disconnects from my speaker and reconnects it and fixes a playback glitch so its back to playing properly

  • pmk@lemmy.sdf.org
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    9 minutes ago

    Cowsay as a Service. A Go microservice that lets you send form or json http post with curl or whatever to an api over the internet and in return you get the cowsay ascii art you requested.

  • jordanlund@lemmy.world
    link
    fedilink
    arrow-up
    11
    ·
    3 hours ago

    I have a lot of comic book boxes:

    I created a script that lets me query the database to return the box numbers for certain content.

    I can search by writer, artist, title, character, notes, even down to issue number.

    What I’d LIKE to do is hook it into a voice recognition system and smart lights and get it to light up the boxes “Wheel of Fortune” style. But I’m aways off that yet.

  • jBoi@szmer.info
    link
    fedilink
    arrow-up
    2
    ·
    2 hours ago

    I made a browser extension to make downloading Minecraft mods easier. It would scrape the curseforge page you’re visiting, search for the mod on modrinth, and redirect you if it found one. It was actually very useful when I needed it, I even put it on the extension stores and it gained some users.

    I also have a small collection of random python numpy and matplotlib utilities. I need to do some basic graphs and data analysis for uni, and this simplifies it a lot.

  • mesa@piefed.social
    link
    fedilink
    arrow-up
    3
    ·
    2 hours ago

    Back over 10+ years ago on the original raspberry pi, I made a butler program. Every hour on top of the hour, it would use espeak to say what my schedule was, the current internet usage (there was max usage of 100gb) and a couple of other things. It worked really well for years.

  • CanadaPlus@lemmy.sdf.org
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    3 hours ago

    It’s not an answer, but I really hate how hard this is to do on Android, including it’s FOSS versions. You can root it and do something like that then, but that undercuts the whole system design and is a terrible hack.

    That’s like my main beef with the whole mobile ecosystem.

  • baines@lemmy.cafe
    link
    fedilink
    English
    arrow-up
    10
    ·
    4 hours ago

    i wrote a simple program to wiggle my mouse

    you can guess why

    it was a rip off from a coworker’s program

  • red_bull_of_juarez@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    3
    ·
    3 hours ago

    I wrote a link handler, that allows me to just click on magnet: links or open torrent files and send them to my remote torrent client. I use this almost daily.

    I also built a torrent crawler that fetches multiple torrent sites and shows me the new stuff, while filtering out shit quality stuff and things I already have.

    And then I built a viewer with search for multiple defunct story sites I crawled years ago.

    Those tools I use all the damn time.

  • FancyPantsFIRE@lemmy.world
    link
    fedilink
    English
    arrow-up
    8
    ·
    5 hours ago

    I built a script that runs on a raspberry pi with an nfc reader and speakers. It’s setup with nfc cards to play music for my kids. they don’t use it as much as they used to but it’s still going strong after four years!

  • Cousin Mose@lemmy.hogru.ch
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    4 hours ago

    I haven’t written many utility scripts/programs in a while but my apartment is fully automated with temperature, humidity, light, presence and door sensors.

    We like how keep our screen doors open when the weather is nice so I have things like fans, heating, air conditioning automated but set to turn off when a door(s) is open.

    The outdoor lights are also automated but I have them turn green/blue when it’s foggy or rainy and they turn red when there is aircraft above.

    Before smartphones started using random MAC addresses on WiFi I also automated some things depending which guests we had over, but I haven’t done that in a long time.

  • neidu3@sh.itjust.worksM
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    4 hours ago

    I mostly write utilities/tools like this. Some examples from my ~/bin/ folder:

    • A script that turns caps lock off and numlock on, and remaps caps lock to compose. I have this run by cron every minute.
    • A script that saves the current buffer of my continously running screen recorder to a file. Bound to the Lenovo coilot key.
    • A half-finished script that downloads and installs the latest version of discord, as Discord and ants me to manually upgrade it every time I start it.

    Edit: OH, and on my work laptop I have a script named Fnkeyfuckery. The keyboard layout is annoying in that I have to choose between Function keys or have Home+End.
    I want my function keys AND I want home+end. Luckily I don’t need F11 and F12 very often, so I’swapped around those two with their alternate function. That way I have F1 through F10, Home and End by default, and if I hold Fn I can have F11 and F12 too. It runs on startup.

  • Björn Tantau@swg-empire.de
    link
    fedilink
    arrow-up
    4
    ·
    4 hours ago

    One I miss the most is one I had on my Nokia N900. It would take a photo with both cameras, aquire the current GPS position and upload all those things to my server. Then it would check for a file on my server and if it existed would create an SSH tunnel, allowing me to SSH into the phone from my server.

    It was supposed to be an anti theft measure. Never needed it. Was still cool that the phone had this possibility.

  • JoeKrogan@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    3 hours ago

    Pi and touch screen photo frame . it reads a photos dir and just sets it as the background randomly every 5 mins using “feh” and “cron”.

  • JackLSauce@lemmy.world
    cake
    link
    fedilink
    English
    arrow-up
    2
    ·
    3 hours ago

    A “full update script” so I don’t forget a package manager. It should probably be an alias but whatever, I run the script

  • confusedpuppy@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    2
    ·
    4 hours ago

    I started self-hosting as a hobby and while I enjoy it, I was getting frustrated with file transfers between my computer, phone and two raspberry pi’s. Since I was already using rsync, I created a tool for myself to help sort rsync commands into sortable files.

    I can now lump together those files into a single command and run several rsync commands in one go.

    It’s definitely saved me some sanity by not having to refer to a wall of text full of rsync aliases.

    I posted it on codeberg.

    It is random code on the internet and it involves file transfers so if anyone uses it, those are the risks unless you care to read the code itself.