• Monstrosity@lemm.ee
    link
    fedilink
    English
    arrow-up
    22
    arrow-down
    2
    ·
    edit-2
    1 day ago

    I wanted to edit my Ghostty themes but found out a lot of the colors are in #hexadecimal notation. I like #rrggbb percentage style colors (b/c they are easy to tweak by hand) and I couldn’t find an online color picker that would output that format, so I used deepseek (free) & now have a scrappy ass one w Python & Tkinter completely via “vibe” coding (I call it Clyde Color Picker. It’s adorable).

    Pretty awesome when you’re just some dumbass who needs a very specific tool and not trying to fleece people.

    • Tiefling IRL@lemmy.blahaj.zone
      link
      fedilink
      arrow-up
      14
      arrow-down
      2
      ·
      edit-2
      23 hours ago

      I use AI toolings to generate snippets of bash scripts because I can’t be fucked to remember that syntax. Obviously not for anything with high risks or that I can’t easily verify. But things like parsing through mass amounts of files

      • blackbirdbiryani@lemmy.world
        link
        fedilink
        arrow-up
        9
        ·
        20 hours ago

        But… bash snippet extensions already exist. The only difference is maybe it doesn’t auto name your variables for you. I’d take that over non-deterministic LLM outputs.

        • Monstrosity@lemm.ee
          link
          fedilink
          English
          arrow-up
          6
          arrow-down
          4
          ·
          edit-2
          16 hours ago

          I have no idea what the hell a bash snippet extension is, but I do know what a local llama.cpp instance running a small model to tell me bash commands on the fly is.

          I use it to make .desktop files, too. Isn’t that so lazy?

          • Initiateofthevoid@lemmy.dbzer0.com
            link
            fedilink
            English
            arrow-up
            5
            arrow-down
            1
            ·
            edit-2
            9 hours ago

            They seem to be genuinely trying to provide information about a tool that they find preferable to your solution. And you’re not even the OP they were responding to. Nobody in this thread has called you or your solution lazy.

            A bash snippet extension is “an extension [for a code editor] that provides a collection of snippets for bash scripting.” It’s a tool that is purpose-built to tell you bash commands on the fly, but smaller, more efficient, and easier to install than a local LLM.

            The user you are replying to appears to prefer this because it will also tell you the same bash command every time you ask (non-deterministic outputs can be different for identical requests)