I create proper libraries. I don't do snippets because they make code dirty, redundant and difficult to read on the long run.
I actively discourage people in my team to use snippets copy and pasted everywhere themselves. If it's reusable code, it should be usable by everyone and well tested
This. Replace commonly used code snippets well written code that reduces them to one or two lines of code and take advantage of auto-complete in your IDE.
For the rare case where that doesn't make sense... I'm I'll ususally find (or create) an extension/plugin for my IDE. Something that can be smarter than any snippet.
The only case I use snippets for is for debug code that I use often. Sometimes there are things I find myself doing a lot for debugging that don't have any reason to be in code (e.g. nicely formatting certain objects for debug purposes)
Write a function or macro so you can reuse them. The project I work on has dozens of debug assisting code paths. Here are two examples: normally when talking to the db you'll call run($sql, $boundVariables) on a handle. Alternatively you can call debug($sql, $boundVariables) to have the handle run the query normally then rerun the query prefixed with EXPLAIN (blah,blah) to get the execution plan. We also have assembleEmulatedQuery($sql, $boundVariables) which will manually replace all the binding tokens in the SQL with their values, do some string escaping and return a big honking string that you can dump into the database... that last one is useful for performance tuning since it can be used to easily capture expensive query forms. Also - assembleEmulatedQuery will throw an exception on our production environment because it's unsafe due to the potential of SQL Injection.
Build debugging functions and add tests over them - future you will thank you!
Not OP, but I'm thinking about the example in vs code: https://code.visualstudio.com/docs/editor/userdefinedsnippets
Some boilerplate code for libraries and frameworks I constantly use.
I'd be more interested in syncing the VS code snippets as they are automatically available in a file for each language and have the autocomplete stops.
In PHP, a lot. Unit test are boilerplate 90% of the time, getters and setters (although they can be done via Generate), ORM classes with your default shebang (autoincrement ID), and I could go on and on.
I dislike snippets for code like "key this array by some logic" - this should be reusable via a dedicated helper or service.
Getters/setters can also be done automatically by __get, __set or __call it's even possible to write a base class or trait that does this automatically.
I am a PHP guru, if you've ever got questions I'm happy to help.
Let’s say a function, about 20 lines. Something too small to warrant an external dependency but tricky enough that you don’t want to keep rewriting it.
I have things like a function to read through a file of newline delimited text of key-value pairs separated by whitespace. It skips comments (lines beginning with “#”), and returns the pairs. I’m happy to do a little copying instead of having a little dependency.
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.
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
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.
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
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.
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
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.
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?
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.
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)
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.
Back when I used macOS, I liked an app called SnippetsLab. Nowadays, I just throw them in Emacs Org files. Emacs is actually very handy for this, you get syntax highlighting in the code block, you can execute the code right from inside your Emacs environment and there's even alpha support for lsp-mode inside of Org code blocks.