Kubernetes and the Future of Applications

The way applications are designed is about to change drastically. Kubernetes has been changing the way in which companies deploy and scale their apps, leading to a new era of distributed computing. In this blog post, we will discuss how Kubernetes will change the future of application design and what it means for businesses today. … Read more

The Basics of Terraform IAC

Terraform IAC is a cloud-based program that allows you to create, edit, and delete infrastructure as code. Terraform enables developers to write declarative configuration files in HCL (Hashicorp Configuration Language). These declarative configurations can be applied by Terraform using the terraform apply command which will build or modify resources automatically based on the configuration. This … Read more

Resetting WordPress Admin User via HeidiSQL

Download and install HeidiSQL (should also work with any of your favorite MySQL clients) Connect to your database and use these queries in the query panel select * from wp_users UPDATE wp_users SET user_pass=MD5(‘123456′) WHERE user_login=’me’; Don’t have an admin user account do this instead to create a new one: INSERT INTO wp_users (ID, user_login, … Read more

How can I undo the last Git commit?

So you have made a mistake like eating last nights left of curry and now you are regretting it, unfortunately you can’t take that one back but thankfully with Git you can get back to a state of sanity, ready? Here we go! Undo Your Last Commit $ git reset –soft HEAD~1 git reset will … Read more

Installing WP-CLI

Shortcut to install: copy the line below and paste it into your terminal and you should be ready to go. curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x wp-cli.phar && sudo mv wp-cli.phar /usr/local/bin/wp See more videos on WP-CLI How to Export WordPress Database with WP-CLI