1. [Dev Infrastructure] Docker-compose logging in CircleCi

    I'm running docker-compose services as daemons in my CircleCI configuration. It looks a bit like this: # circle.yml version: 2 jobs: build: ... steps: ... - run: name: Start docker resources command: | set -e docker-compose -f circleci-docker-compose.yml up -d (service) ... - run: name: run test ... Here's the problem though: there was…


  2. [Language] Ambinyms

    Today’s language nerdification post concerns the English word overlook. Overlook falls into a peculiar category of words which already have a name (several actually), but which I will now call ambinyms. These words can have opposite meanings depending on their usage. Overlook word can mean either to fail to…


  3. [Photography] Portrait Photography Portfoliø

    Digital Photography Samples Editing Raw image Optimized for Instagram (Increased brightness and color) 35mm Film…


  4. [DevOps] Running Ghost Blog on www and non www Host URLs

    I ran into a slight problem when running Ghost on my server. The issue occurred when I tried to log into the admin interface (/ghost). It complained about my URL, giving me the following error: Access Denied from url: unenglishable.com. Please use the url configured in config.js I…


  5. [Software/Git] Git: Delete unused branches and remote trackers

    If you're like me, and like to keep your git tree clean and free of unruly unused branches, you always click "Delete this branch" when merging a pull request on GitHub. But what about your local machine!!?!?!? How do we keep the homegrounds nice and clean? To remove the tracking…