Blog Posts
Advent 2023: Pandoc
Being a fan of Markdown and text formats in general, but living and working in a society where other formats are more often used, it's convenient to be able to convert my files to formats others can use.
And there's really only one tool for that: Pandoc.
Advent 2023: (n)vim Plugins: vim-markdown
I'm a huge fan of Markdown. There's something elegant in using textual sigils to provide contextual information. I've used it for taking notes, creating RSS feed content, producing my blog, and even in emails (I soooo wish there were a way to convert markdown within Outlook for the web and GMail!)
So it should come as no surprise that I use a variety of tools to help me when writing markdown in (n)vim.
Advent 2023: (n)vim Plugins: vim-fugitive
Because I've spent most of my professional life coding, I've also spent a lot of time using source control. I've been using specifically git for many years (even pre-dating the Zend Framework migration from Subversion). While I typically use a terminal multiplexer (for me, that's tmux; for others, that might be screen), and can move to another pane or create one quickly in order to run source control commands, doing so interrupts flow.
That's where vim-fugitive comes into play.
Advent 2023: (n)vim Plugins: coc.nvim
I've used vim and variants since 2001. In 2019, a friend introduced me to coc.nvim, which turned out to be my initial gateway to nvim, which I adopted a year or two later.
Advent 2023: (n)vim Plugins: tabular
Yesterday, I discussed vim-surround. Today I'm going to discuss another plugin I've used a ton: tabular.
Advent 2023: (n)vim Plugins: vim-surround
I've blogged about vim a number of times. I've been using vim or its descendents for 22 years now; I switched to neovim a few years back, but it's compatible with the existing vim ecosystem. (The primary differences, to my mind, are that it has a more optimized engine which is more performant, and that you can now configure and extend it using Lua if you want. Otherwise... it's just vim.)
I used to "collect" plugins, but at this point, particularly since switching over to neovim, I've reduced my plugins quite a bit, to only those I use on a regular basis.
So, I figured today, I'd start a mini-series as part of my Advent 2023 blogging, on some of my most used plugins.
Today's plugin: vim-surround.
Advent 2023: PSR-15
I've mentioned a few times over the course of this 2023 Advent series that the longer I'm in the tech field, the more I appreciate and favor simple solutions. I was reminded of this yesterday when I read this article on return types in Laravel controllers by Joel Clermont.
Advent 2023: Makefile: guard targets
A couple days ago, I wrote about Makefile. Today, I'm going to show a quick tip for writing "guard" targets.
Advent 2023: Nextcloud
Halfway through advent; half to go!
This will be a short post, to detail an invaluable tool I've been using for around 5 years now: Nextcloud.
Advent 2023: Makefile
I like to automate common workflows when I can, particularly for web projects.
As an example, I may have different Docker Compose setups for development versus production, and having to remember to add the -f {compose file name}
argument can be tedious and error prone.
Being a long-time Linux user, I've used make
a lot, and am fairly comfortable with Makefile
, so I often turn to it for these tasks.