Do you keep them in your IDE, or elsewhere? Do you have an app for that? Are they easily shared?

I realized I have no system at all but could use one to make it easier to find code I’ve written and might need again some day.

By snippets, I am referring to any chunk of code / text in any format or language, of any length.

Thanks!

EDIT A DAY LATER: Thanks you all! Reading all these ideas, I got inspired to create my own little web app. Wish me luck… :)

    • perishthethought@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 months ago

      It’s got to be here somewhere… (Search for way too long…) Dang, I guess I’ll just write it again from scratch

      Yeah, this is what I am looking to avoid.

      • douglasg14b@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        I have a weird knack for reverse engineering, and reverse engineering stuff I’ve written 7-10 years ago is even easier!

        I tend to be able to find w/e snippet I’m looking for fast enough that I can’t be assed to do it right yet 😆

  • varsock@programming.dev
    link
    fedilink
    arrow-up
    10
    ·
    7 months ago

    I would appretiate if someone could explain the practical utility of snippets because it just dawned on me how useful they might be.

    • coloredgrayscale@programming.dev
      link
      fedilink
      arrow-up
      8
      arrow-down
      1
      ·
      edit-2
      7 months ago

      Easy access to small snippets of code you often need, but putting them in their own library would be crazy.

      • Opening a file / db connection
      • parsing xml/json/… ,
      • template for unit tests,
      • import and initialization of framework at work.

      Depending on the IDE snippets can also move parts of the code around: (intellij live templates)

      • variable.notnull -> if (variable != null) {… }
      • “text %s”.format -> String.format(“text %s”,…)
    • perishthethought@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      7 months ago

      Think about how you write code. Is it all new, or are there functions / API calls / whatever that you might re-use from time to time?

      If that’s possible, think about how you go find that code now. Wouldn’t it be cool if you could type a short bit like, “funcA” and boom! your IDE filled in the whole function? Or, worst case, you flip over to another tool, find the snippet you want, copy and paste it into your work.

      That’s what I am thinking about, at least. I’m just not sure how I want to get there yet.

      • crimsonpoodle@pawb.social
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        You could just write a little terminal utility that puts the string literal of the snippet in your copy buffer with a little search and db for finding the right one and storing new ones— might have to have some weird cases for cross platform tho

    • Luvon@beehaw.org
      link
      fedilink
      arrow-up
      1
      ·
      7 months ago

      If you are unfortunate enough to code in a language where the “designers” thought EVERYTHING should be multi command structures in an English like syntax……

      Then you basically need them to autocomplete how to correctly write everything 😅

      I use Abap at work from sap. Its special.

      They have over 3000 key word structures. It’s ridiculous.

  • brewbart@feddit.de
    link
    fedilink
    arrow-up
    7
    ·
    7 months ago

    I would recommend looking into personal knowledge management. I manage mine in Obsidian and treat snippets like permanent notes

    • perishthethought@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      Hmmm, I am using Logseq for that kind of note rn, but don’t really like the way it handles code. I assume that’s a markdown problem, not a Logseq one, but I should look again.

      • nichos@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        I’m using logseq for snippets too. I find it to be adequate. 3 ticks and the language will get you monospace and syntax highlighting:

        cd $HOME
        ls
        
      • brewbart@feddit.de
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        Well, Obsidian does have a bazillion plugins that make handling all kinds of content easier. I’m pretty satisfied with the out of the box experience though

    • Spazsquatch@lemmy.studio
      link
      fedilink
      arrow-up
      1
      ·
      7 months ago

      Maybe not something you intended, but your phrasing has me curious if Obsidian has some sort of temporary note? I can imagine some use cases.

      • brewbart@feddit.de
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        Temporary note in terms of auto delete after a time? Although the manual Zettelkasten workflow intends you to delete your temporary notes by hand, it is pretty easy to automate this in Obsidian. Personally I have some actions for meeting minutes and notes on people to be moved to designated folders, but the same principle could be applied to create an action to delete any note older than X days

        • Spazsquatch@lemmy.studio
          link
          fedilink
          arrow-up
          1
          ·
          7 months ago

          Yeah, that’s what I was thinking, and you are right that automation wouldn’t be hard… although if I’m setting up that automation I’ll fail to commit to the deletion and just move the files to an archive folder. 😳

          I only adopted Obsidian recently and only because I liked the idea of the data being stored as plain text files. I really haven’t adopted any system, just replaced Apple Notes.

  • Veraxus@kbin.social
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    7 months ago

    Jetbrains IDEs have “Live Templates” that I use extensively.

    For little notes and snippets (especially CLI snippets) I use an app called Stashpad, which I LOVE.

    • perishthethought@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      Thanks. I am thinking about whether a self-hosted service is overkill for this, for my purposes. I kept my question broad in order to find out if most people just keep their snippets on their own PC or what.

      I will check this out and I’m also looking at Snibox.

  • terrehbyte@ani.social
    link
    fedilink
    English
    arrow-up
    2
    ·
    7 months ago

    I’ve only used code snippets in VS Code which can store them in user settings for synchronization. They can also e stored in project settings, which can be optionally synchronized via source control.

    I tend not to need them in larger projects where a lot of codegen is available or macros, so I haven’t thought about a solution for things like VS or manual syncing.

  • Gamma@beehaw.org
    link
    fedilink
    English
    arrow-up
    2
    ·
    7 months ago

    Vscode syncs them across all my computers (and even into browser sessions), so I use that.

    • perishthethought@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      I work in VSC most of the time too, so using its built-in user Snippets feature seems to make the most sense. How do you get it to sync across computers? (I can go look into that if it’s a native feature)

  • shiveyarbles@beehaw.org
    link
    fedilink
    arrow-up
    2
    ·
    7 months ago

    I have like a zillion notepad++ tabs. Every once in a while I’ll go through the tabs to see if I want to save the snippets.

    • perishthethought@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      That’s where I am now. I keep seeing snippets tools and so I asked here. Now that you’ve seen these replies, what do you think?

      I assume the answer is very specific to the coding you do & your workflow. There’s no single right answer.

    • otl@lemmy.srcbeat.com
      link
      fedilink
      English
      arrow-up
      4
      ·
      7 months ago

      I mean, I get it. But… damn… can you imagine the relative computing power required to read a text file versus asking a LLM to generate that same text?

      • PoisonedPrisonPanda@discuss.tchncs.de
        link
        fedilink
        arrow-up
        3
        ·
        7 months ago

        Ok.right in the feels.

        To be honest, I try to search before on stackoverflow most of the time, due to the ability to write a few keywords and get a suitable answer versus formulate a prompt for the LLM.

        But on the other side, llms are used for so much bullshit and invaluable prompts that my questions for helping me in my job has a more worthwile argument.

        But of course it is a problematic topic related to llms.

        • otl@lemmy.srcbeat.com
          link
          fedilink
          English
          arrow-up
          1
          ·
          7 months ago

          Haha no worries mate I totally get you. One of the best things about LLMs when I’ve played with them is it exercises my ability to write questions and requirements