• Please complete the contact form below with details about your inquiry and I'll get back to you as soon as possible.

  • This field is for validation purposes and should be left unchanged.

Archives

How to disable taxonomy feed links in WordPress

If you’d like to disable feed links for a custom taxonomy in WordPress, you need to remove the action hook that adds it, like this: add_action( ‘wp_head’, function() { if(is_tax(‘my_taxonomy_slug’)) { remove_action( ‘wp_head’, ‘feed_links_extra’, 3 ); } }, 2 ); […]

Remote work and efficient communication

The topic of efficient communication has never been more actual than today. As more jobs are being done remotely, communicating efficiently is paramount to the success of companies who have embraced this way of doing business. In the 9 years […]

Making Money Fast and Easy in 2021?

Beware of scams that promise you a quick buck. In this article, I write about a few of such scams that I am aware of.

Identification, Authentication, Authorization

These three terms are related, but mean different things. Here’s my shortest explanation ever: Identification: who wants to act on the system? User John, with ID johndoe? Ok! Authentication: is it really John though? Let’s check if his username & […]

My personal experience with Fizz Mobile

Very good! Honestly, I am very pleased with Fizz. As a tech-savvy person, I like to be able to manage my account myself, and Fizz has a great web application to do that. I’ve only had to contact support two […]

Fix: VSCode + ElixirLS Intellisense for code imported with `use`

I am using VSCode with the ElixirLS extension for Elixir development. My operating system is Ubuntu, but I think this guide should work for other systems if you know where to find your VSCode extensions folder. The problem: IntelliSense, aka […]

Fillichor: the smell of fall

It’s fall season – my favorite time of the year! And with that, comes something that most associate with this season: the smell of leaves. So I was thinking one day, there is a word to describe the smell of […]

Prevent CSS Transform From Making Element Blurry

Here’s the issue I was facing: I was trying to position a sticky header based on the Window scrollY value divided by 2, using the transform: translateY(value)CSS property. As a result, the element would sometimes become blurry. I remembered some […]

My Favorite Tools & Resources for Day to Day Software Development

I bet we all have a bunch of tools we use to make our lives easier, and resources we use regularly to stay up to date with the world. I figured, I could share mine so that others could go […]

Fix: Mouse pointer shakes while mouse standing still in Ubuntu 20.04

Here’s a peculiar issues I’ve encountered the second time this week. Out of the blue, the mouse pointer will start shaking/wiggling/moving up and down heretically, while the mouse itself is standing still. Turning the mouse off, disconnecting the receiver dongle […]