Changelog


A fun and fresh way to display changes I’ve been making on my blog.

Image fix for small screens.

Announcement Mar 06, 2017

Minor change to force smaller images in articles to screen width on displays less than 768px. Code below:

@media only screen and (max-width: 768px) {
  /* Force small images to screen width */
  article img {
  width: 100%;
  height: auto;
  }
}

I was getting annoyed with small words showing to the right of images on mobile. This fixes that, but it is a bit of a hack. Not 100% perfect. Some tiny images, not meant to scale, will get expanded. For example, the old image emoji’s will be huge. But, it’s good enough.


Change date on modify fix.

Bug Fix Mar 05, 2017

In my haste to get my changelog out the door, I accidentally used a variable wrong. The result of my mistake was that modifying a log would reset the date. Not quite my intent. All fixed now!


Added a changelog.

Announcement Mar 05, 2017

I’d been playing around with a changelog on my test site, but just getting around to porting it here to my primary site.


Social Sharing.

Announcement Feb 28, 2017

Following an article from Scott Hanselman, I added some social links on my blog. I didn’t want to add more javascript, so I use links instead. Clean, fast and simple, visitors can share all they like. Sure, I don’t get counters, but that’s okay by me.