There are 151 articles categorized as "Development"
on June 29, 2016. in Development, Software. A 1 minute read.
Ansible uses Python2 to run the provisioning commands on the host machines. At this time it does not support Python3, which is the default python version in Fedora releases for quite some time now.
Continue reading Installing Python2 with Ansible...
on June 28, 2016. in Programming, Development, Software. A 3 minute read.
Lately I’ve been playing around with provisioning a PostgreSQL server with Ansible in a local Vagrant machine that runs a Fedora 23 image.
Continue reading Creating a PostgreSQL user in Vagrant with Ansible...
on June 23, 2016. in Programming, Development. A 5 minute read.
These days I spend most of my time reviewing code. Lots and lots of code. It’s mostly written by juniors and some of it is good, some of it is bad. I try to be patient, to be a good mentor, to hopefully teach (and be taught), while not letting out of sight that the most important thing is that the code does the right thing in the right way. The business and the users come first, after all.
Continue reading Helping juniors debug...
on June 16, 2016. in Programming, Development. A 2 minute read.
This took me a while to figure out so I’m writing it down for future self and anyone else who needs it.
Continue reading Import custom Python modules in Vim plugins...
on March 28, 2016. in Programming, Software, Development. A 1 minute read.
This was an undocumented feature until today, so I missed it when I was converting my site to Hugo last week. It is also possible to highlight code examples with GitHub flavoured code fences, or, in other words, with triple backticks ```
.
Continue reading GitHub flavoured code fences in Hugo...
on March 25, 2016. in Programming, Development. A 2 minute read.
I think I just wrote my first Vim plugin. OK, it’s more a bunch of Vim functions slapped together than an actual plugin, but gotta start somewhere, right?
Continue reading Vim Hugo helper...
on March 21, 2016. in Development. A 1 minute read.
Finding duplicate lines from a CSV file is something I have to do from time to time, yet not on a regular enough basis to remember it all. Plus, I’m trying to blog more often.
Continue reading Find duplicate lines from a CSV...
on March 09, 2016. in Software, Programming, Development. A 2 minute read.
One thing I was missing for a long time in Vim is to be able to “jump to definition” in an easy and painless way.
Continue reading Tags for PHP in Vim...
on July 01, 2015. in Programming, Software, Development. A 2 minute read.
After 3 months since announcing that I’m working on pugdebug, and some 5 months since I actually started working on it, it is finally time to let version 1.0.0 out in the wild.
Continue reading pugdebug 1.0.0....
on April 01, 2015. in Software, Programming, Development. A 2 minute read.
In my spare time in the past few months I was working on a tool that would help
me in my every day job as a PHP programmer. As you may, or may not, know, I’m
using vim as my editor/almost IDE, but one thing that is missing from it is the
ability to debug PHP files remotely. Yes, there are a bunch of plugins out
there that add debugging to vim, but none of them felt usable for me.
Continue reading Introducing pugdebug...