Installing Nest Thermostat

Replaced the old thermostat with the smart Nest thermostat. Had always been wanting a smart thermostat and after we bought the house, it was the perfect opportunity to get it. The previous thermostat used to be an Aprilaire thermostat. I believe it also controlled a humidifier. However, there is no central humidifier I could find, therefore, it was only to control temperature.

Installing Wire Shelving in the Closets

Old house and extremely limited shelving in Closets, sounds familiar right? Well, I decided to take care of storage by installing shiny new wire shelving in all the 3 closets we have in the house. Here are some photos of the Master Bedroom closet. I know what you are thinking, it’s so tiny! Yes Sir or Madam, this is an Old house. Back then they did not have large walk-in closets. So before image: Step …

Read moreInstalling Wire Shelving in the Closets

Configuring GD and Freetype on WordPress Docker Image

This applies to official WordPress image but can be used with PHP image also. Create Dockerfile with following contents: FROM wordpress:latest # Install gd and freetype RUN apt-get -y update \ && apt-get -y install php5-gd freetype* \ && docker-php-ext-configure gd –with-freetype-dir=/usr/include/ –with-jpeg-dir=/usr/include/ \ && docker-php-ext-install -j$(nproc) gd Build your image docker build -t wordpress . Or you can use my image here.

Using WordPress and MySQL Docker Containers

I am just starting out on Docker and so far it’s been fun. Here I am going to show how I used Docker WordPress and MySQL containers. Before I delve into the details, I want to tell you that I am going to be working on Windows using SSH on Docker VM. If you want to know how to do that see this post here. So let’s start. Open SSH console. We are going to …

Read moreUsing WordPress and MySQL Docker Containers

Configuring Docker SSH on Bitvise on Windows

Docker on Windows has a lot to be desired. One thing I found uncomfortable to use is the Docker Shell on Windows. As of version 1.11.2, Docker uses MINGW64 extension to provide the UNIX Shell on Windows and even then it operates on the host, i.e. the Windows machine. If you know the current architecture, Docker runs on a Linux VM on top of Windows host. Therefore, what gets typed on Docker console is eventually …

Read moreConfiguring Docker SSH on Bitvise on Windows