My 5 Step Photo Editing Process

Here’s the approach I developed over many years to efficiently cull and edit large sets of photos. The key is avoiding the repetitive task of opening and closing the edit, crop, or preset panels for each photo. Instead, I explain how to take five focused passes across the set. Start by reviewing your entire set […]

AKS Today – Hands-on with Docker

Here are some commands that I put together to give you a walkthrough of using docker to create a container image and publish it to Docker Hub. #kubectl cheat sheet: https://kubernetes.io/docs/reference/kubectl/cheatsheet #docker cheat sheet: https://devhints.io/docker #Tutorials: https://kubernetes.io/docs/tutorials/ #Contents of the Dockerfile### #FROM nginx #COPY static-html-directory /usr/share/nginx/html docker build -t mydemoimage1 . docker images #make sure […]