I wish there was a good looping software that good take any song and cut the perfect infinite loop of it automatically.

  • londos@lemmy.world
    link
    fedilink
    arrow-up
    13
    ·
    edit-2
    3 days ago
    • A weather widget on Android that shows all of current temp, high/low for the day, and high/low remaining for the day.

    • I don’t think this needs to be a whole app, or just a feature within a camera app, but I want the ability to underlay an existing image at say 10% transparency on screen while taking a photo. It doesn’t get saved, I just want to be able to use it as a guide for framing things, like documenting changes on sites or recreating old photos for fun.

    • I want to be able to open a line of communication to another driver nearby. Maybe a range of 100ft. I don’t know if it’s Bluetooth or what. “Hey your taillight is out” “hey coming up in your blindspot” “hey, please can I merge I’m not trying to be a dick” “hey is this the exit for Wawa?”

    • ouRKaoS@lemmy.today
      link
      fedilink
      arrow-up
      13
      ·
      3 days ago

      The amount of road rage induced shit talking that would be done via car-to-car communication would outweigh every benefit it could provide.

      • londos@lemmy.world
        link
        fedilink
        arrow-up
        6
        ·
        3 days ago

        Yeah, I won’t deny the potential for abuse. On the other hand, I think a lot of road rage comes from the disinhibiting effect of being alone in your car. I’d love to see a study to see if road rage can be reduced by letting people communicate.

    • pishadoot@sh.itjust.works
      link
      fedilink
      arrow-up
      2
      ·
      3 days ago

      CB radio is pretty popular depending on where you live. You’ll start recognizing antennae everywhere once you get a kit and start messing around with it.

      Won’t hit everyone but it’s pretty fun community usually. Trucks and just general weirdos, the occasional douche canoe but mostly good

    • Feathercrown@lemmy.world
      link
      fedilink
      English
      arrow-up
      3
      ·
      3 days ago

      I want to be able to open a line of communication to another driver nearby. Maybe a range of 100ft. I don’t know if it’s Bluetooth or what. “Hey your taillight is out” “hey coming up in your blindspot” “hey, please can I merge I’m not trying to be a dick” “hey is this the exit for Wawa?”

      I think about this every time I’m on the highway, it would be so fun/useful.

  • brognak@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    9
    ·
    3 days ago

    I want an app that existed, and was killed before it’s time by Intuit. Level Money

    You put in (and it learned over time) your expenses, and it gave you a single number which was how much you could spend per day. It adjusted as you went, so if you under/overspent it adjusted.

    It wasn’t perfect, but was the last time I had a firm handle on my finances.

    Fuck you Intuit, burn in every hell imagine able for your myriad of sins including this minor one comparatively.

    • N-E-N@lemmy.ca
      link
      fedilink
      arrow-up
      4
      ·
      3 days ago

      Have you tried Cashew? I’ve tried tons of apps and it’s easily the best

    • AA5B@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      3 days ago

      Have you looked at your banks budgeting software? One of the key features mine has is it learns how transactions are categorized, so future ones will be categorized the same way even if the amount changes. While it’s far from perfect, it is a huge factor in making useful.

      I used to try various money management tools but this made a huge convenience difference

      • brognak@lemmy.dbzer0.com
        link
        fedilink
        arrow-up
        3
        ·
        3 days ago

        I use CapitalOne, they have some things but nothing exactly right.

        I have also tried every budgeting software under the sun, and Level was the only one that worked for me sadly. I’ve thought about using vibe coding (not a mobile dev) to makey own android app to do something similar but also super lazy lol.

        • pishadoot@sh.itjust.works
          link
          fedilink
          arrow-up
          2
          ·
          3 days ago

          Ever tried the old over engineered Excel doc trick?

          Sucks because you have to do manual data entry but you’ll get whatever level of granular control your heart desires.

          I’m sure there’s ways to design something similar to the auto leveling budget effect you liked, but it’s beyond my skills.

  • Maestro@fedia.io
    link
    fedilink
    arrow-up
    23
    ·
    4 days ago

    An app for Android (Google TV) that lets you change the volume on a per-application basis. Like a mixer. I want to be able to set Disney+ to 200%, Netflix to 130% and Youtube to 80%.

  • jordanlund@lemmy.world
    link
    fedilink
    arrow-up
    27
    ·
    4 days ago

    Media server software that lets me program my own television station.

    5:00 PM - Play the next file from folder X.
    6:00 PM - Play the next file from folder Y.
    7:00 PM - Play the next file from folder Z.
    8:00 PM - Play random movie.

    • thenose@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      3 days ago

      Ersatz is this brilliant self hosted IPTV server that can do this. Any client (even a browser or your smart tv) can run it. Setting up the channels are a bit clunky but it’s well documented

      https://ersatztv.org/ Your Personal IPTV Server | ErsatzTV

      • jordanlund@lemmy.world
        link
        fedilink
        arrow-up
        7
        ·
        4 days ago

        Setting up something like a cron job is trivial, getting it to stream files from a particular folder, on a channel I can access on demand, is the trick.

        Ideally I want to be able to change the input on my television, any time I want, to my personal streaming channel which is constantly running the schedule I’ve defined.

        • solrize@lemmy.ml
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          4 days ago

          The one time I tried streaming I just piped ffmpeg output through icecast and that worked, but it took some reading of the ffmpeg wiki to find the right options. You might even be able to point icecast to the folder directly without ffmpeg. I needed ffmpeg because it was transcoding from a webcam. On the playback side you’d again use ffmpeg to stream the icecast channel to your computer’s hdmi output, and wire that to your TV. I’m still going with 10 line shell script, but maybe I’d use python to avoid too much shell cleverness.

          Added: maybe you don’t even need icecast. Its purpose is to fan out a single input to multiple clients. You can even cascade them across a bunch of cheap VPS into a do-it-yourself youtube with 1000s of simultaneous viewers.

        • sin_free_for_00_days@sopuli.xyz
          link
          fedilink
          English
          arrow-up
          2
          arrow-down
          1
          ·
          4 days ago

          Seems like it would be pretty easy to set up some cron job that would change a symlink to a folder every hour and just run programs from that symlink.

          • jordanlund@lemmy.world
            link
            fedilink
            arrow-up
            3
            ·
            4 days ago

            That would likely work if the intent was to watch files locally, and that’s not the goal. The goal is to stream them out to something viewable on a television.

            A DLNA server can do the streaming, but not the scheduling and it won’t run continuously.

  • Sarothazrom@lemmy.world
    link
    fedilink
    English
    arrow-up
    15
    ·
    4 days ago

    A program that allows me to search through a large drive and see if there are any duplicates of congruent files on them, even if those files have different names but are otherwise identical, i.e. copies elsewhere on the drive.

  • Fermion@feddit.nl
    link
    fedilink
    arrow-up
    19
    ·
    4 days ago

    I have long wanted a weather forecast along route in navigation apps for long trips. Ideally you could add in stops and estimate how long you would need to wait for storms to pass over.

    • JustARegularNerd@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      5
      ·
      3 days ago

      Just coming back from a trip and adding to this, I wish Organic Maps / CoMaps had a function to automatically add rest stops and fuel stops.

      For example, for a 7 hour road trip it would prompt:

      • Frequency of rest stops: 120 minutes
      • Time spent at rest stop: 20 minutes
      • Approx remaining range: 150km
      • Approx car range overall: 500km

      Obviously I’ve just been pulling into service stations and rest stops on my own accord, but I like having small goals and not having the navigation lose it’s shit at me because I decided to pull into a small town halfway through. Would just make planning a day of driving much easier.

      • Fermion@feddit.nl
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        3 days ago

        I did search for “weather on the way” in google play store. While they don’t have an android app, I found two similar apps that do a lot of what I wanted: “drive weather” and “highway weather.” Thank you for the search term that yielded results. I like that the"highway weather" app allows adding in rest stops and propagates the change into the forecast.

        I will note that neither of these options seem to offer turn by turn navigation. So there is still room for some of the navigation apps to integrate this functionality.

  • flabbergast@lemmy.world
    link
    fedilink
    English
    arrow-up
    6
    ·
    3 days ago

    I’m looking for an app (on Android) that not only keeps track of birthdays, but also lets you add an extra date if that person has passed away. So it will display someone’s age correctly instead of just counting on. And give reminders of both their birth- and their dying day. If it exists, please let me know…

  • ch00f@lemmy.world
    link
    fedilink
    arrow-up
    14
    ·
    4 days ago

    Music software that shuffles entire albums and plays them end to end before switching to another random album.

  • darklamer@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    9
    ·
    4 days ago

    I really want an app that locally indexes my locally stored photos and lets me search them locally, based on places, things or people seen in the photo.

    • AnExerciseInFalling@programming.dev
      link
      fedilink
      arrow-up
      12
      arrow-down
      1
      ·
      4 days ago

      Immich lets you do this

      https://immich.app/docs/features/searching/

      For example here’s me searching for “forest”. But it also supports looking for people (even multiple people in the same image), places, dates, or combinations of all of them. It’ll also look for text in images. The link has more examples

      All hosted and processed on my local computer, and connected to the mobile app

      • Ugurcan@lemmy.world
        link
        fedilink
        arrow-up
        5
        ·
        4 days ago

        I think there is a fine line between “installing an app” and “spinning up a docker image and keeping it maintained”.

        I’m in the camp that Docker images are what .exe’s used to be, but they’re not easily accessible still. So Immich doesn’t count I fear.

        • AnExerciseInFalling@programming.dev
          link
          fedilink
          arrow-up
          3
          ·
          4 days ago

          That is completely fair, and part of that is on me since I spend so much time in self hosting communities where such a recommendation isn’t too out of the ordinary, while it’s way out of scope for what most people are looking for

          Having a more user friendly and approachable way to do stuff like this would be very helpful

      • darklamer@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 days ago

        All hosted and processed on my local computer, and connected to the mobile app

        The way you write this makes it seem as if the app doesn’t actually locally index locally stored photos. Is that so?

        • AnExerciseInFalling@programming.dev
          link
          fedilink
          arrow-up
          1
          ·
          3 days ago

          I’m sorry, I’m not entirely sure what you mean. All my photos are on my local hard drive on my computer at home, and I just point immich at that folder.

          Once it boots up, immich doesn’t need internet to function, except for the first time you use image processing (the machine learning to search for things inside of images) and geocoding (putting the images on a map). Once it downloads those for the first time immich can run completely offline on your local computer. If you wish, you can open immich so you can connect to it from another device, such as a phone, but your images/data never leaves your device

          • darklamer@lemmy.dbzer0.com
            link
            fedilink
            English
            arrow-up
            2
            ·
            3 days ago

            I want an app that runs locally on my phone in my pocket and indexes the photos I’ve stored locally there, without ever needing any kind of network connection.

            But the way you’re describing your setup, it seems to me as if copying your photos to your computer in order to get them indexed is a necessary step.

            • AnExerciseInFalling@programming.dev
              link
              fedilink
              English
              arrow-up
              1
              ·
              3 days ago

              That’s fair. And in the case of Immich, the photos are automatically backed up to my computer so if I lose my phone I don’t lose the images, but I totally understand wanting something exclusively on the phone (Immich can let you browse photos local on your phone, but I don’t think it indexes them for searching by person/object). Unfortunately I’m not sure something like that exists, especially since the machine learning for identifying people/objects in pictures is pretty computationally intensive.

              I wish you luck in your search! I agree that would be a great app to have

              • darklamer@lemmy.dbzer0.com
                link
                fedilink
                English
                arrow-up
                1
                ·
                3 days ago

                Unfortunately I’m not sure something like that exists,

                Well, that’s exactly why such an app was what I wrote as my reply to the question “What app/program do you wish existed […]?”

  • Postmortal_Pop@lemmy.world
    link
    fedilink
    arrow-up
    11
    ·
    4 days ago

    Digimon.

    I have to carry my phone with me everywhere I go, I want a little guy that is personal and unique to me, it gets points for stuff I do, and them I can battle with other people who have their own little guys.

    Pokémon go doesn’t cut it for me, the battle isn’t Pokemon. The games are great but it’s me playing the guy not me being the guy.

    I have the whole thing on paper but learning the programming to make it is discouraging and I’m already in college and writing full time

      • Postmortal_Pop@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        4 days ago

        Yeah. I even wanted to include an account based scanner for loot. You’d be able to scan barcodes and qr to get loot, battles, and stuff, but after the first scan it would remember and lock that reward so you could reclaim it daily.

        I imagined players keeping little collections of barcodes so you could easily reclaim useful loot and when players meet in the wild they could scan up each others collections to get codes they may hot have found in the wild.

  • GrayBackgroundMusic@lemmy.zip
    link
    fedilink
    arrow-up
    4
    ·
    3 days ago

    Navigation app the prioritizes things important to me. I’ll got an extra distance if I turn less or I right turn only or I have no speed bumps.

  • Tonava@sopuli.xyz
    link
    fedilink
    arrow-up
    4
    ·
    3 days ago

    I wish there’d be a proper family tree generator, I’ve been searching for one for so long. All the things existing now seem to be old and made to create actual existing family trees with lots of limitations, but I’d really need a tool to use for world building and that kind of stuff. To allow you create profiles with a lot of data for the characters in the tree, so you could view the info in some easy way, maybe by clicking to open an info window, or something like that. To be able to easily link them to each other with other things than just family relations (like friends, lovers, enemies…). Being able to properly put a picture on the profiles so it would show there in the tree, not just a name. Just being able to properly view the whole family tree at once by zooming in and out would be so nice, and to link it with other family trees etc…

    There are games that have some family tree functions, but I don’t need nor want a gaming experience. I want to do these things freely, not with having to play some shit to be able to unlock something, or to have family trees generated around just played characters. I’ve tried using mind map generating stuff as well, but they have limited features, and it’s difficult to just create branches with them since everything is supposed to link back to one single thing.

    If anyone knows about something like this existing somewhere, please do tell me!

    • pishadoot@sh.itjust.works
      link
      fedilink
      arrow-up
      2
      ·
      3 days ago

      MS Vizio can do what you’re talking about. It’s a flow chart designer on crack. I’d bet there’s quite a few modules designed for family tree building you can get for it.

      Instead of a family tree planner, maybe start looking at flow chart builders? Or workflow planners or project management schedulers. They all can do something like what you’re talking about, even if they’re not directly designed for purpose of family tree diagrams.

          • Tonava@sopuli.xyz
            link
            fedilink
            arrow-up
            2
            ·
            1 day ago

            Yeah I’m trying to avoid MS if possible, especially since I probably have to try to make the jump to linux eventually with how things are going. I probably need to at least try Visio though, to see is it able to do what I want, so far I’ve had no luck with alternatives for it.

            For example draw.io doesn’t seem to work for this (I’ve tried before as well), since I really need easy auto arranging for the nodes for it to be usable enough - and I haven’t been able to do that with it. So far the only thing that I’ve found to work even relatively well for what I want to do has been this even with it’s many limitations, since it allows to just pulling the lines wherever and it will auto arrange everything. When the trees grow to crazy sizes (over a hundred etc.), it’s almost impossible to make things work without the auto arranging, otherwise I wouldn’t even need the tools I’m looking for…

            • Landless2029@lemmy.world
              link
              fedilink
              arrow-up
              1
              ·
              1 day ago

              MS has visio basic included in its subscription for commercial via the web.

              The desktop edition should work on Linux with something like Wine and for $10 I think it’s worth it.

  • chunes@lemmy.world
    link
    fedilink
    arrow-up
    7
    ·
    4 days ago

    I would be ecstatic if someone ported AutoHotkey to Linux. AutoKey doesn’t come close to cutting it for me.

    • JTskulk@lemmy.world
      link
      fedilink
      English
      arrow-up
      3
      ·
      4 days ago

      Check out pyautogui, it’s probably what you’re looking for. You can manipulate the mouse and keyboard and even look for images contained on the screen.

  • DeathByBigSad@sh.itjust.works
    link
    fedilink
    arrow-up
    3
    ·
    3 days ago

    I really want an all-in-one android app that just let me connect 2 portable ssds (via a usb hub) and then make a list of hashes for the folder structure and file names along with the hashes, all on a single sor of “index” file and I can run a “verify” function like every so often (like maybe once a week?) to check if there are any decay, also copy everything to the 2nd drive, and then run the verify to check if its done correctly, and correct any file corruptions.

    Like its a very ghetto way to doing a NAS on a budget, but its just a $50 spare android phone connected to a usb hub with the power connected, and a bunch of drives attached.

    I can run hash checks manually with some F-Droid apps, and keep the hashes on a file, but there us no way to automate this.