-
Deploying HTTP/2 and Strong TLS with Nghttp2 and Nginx
Deploying HTTP/2 and Strong TLS with Nghttp2 and Nginx
HTTP 1.1
More modern browsers that already support HTTP/2 (Chrome, Firefox) can connect using HTTP/2, while other browsers and clients (Safari, c...
-
A Low Cost Performance Monitoring Setup with Boomerang, Boomcatch, and Datadog
tollmanz.com
Jul 2, 2015
Real User Monitoring (RUM) is an important aspect of performance optimization. RUM allows you to track and analyze how real world users of your web properties
actually experi...
-
Cherry Picking a Range of Commits with Git
tollmanz.com
May 11, 2013
Git has many methods for merging branchs, including the very unsophisticated cherry pick method. Its primary purpose it to copy individual commits from one branch to another....
-
Implementing Public Key Pinning
tollmanz.com
Jan 25, 2015
This weekend, I implemented public key pinning on my website. While implementing the pins, I ran into a few gotchas that I want to share. There are many excellent articles on...
-
Git "amend" without Editing the Comment
tollmanz.com
Sep 2, 2014
--amend flag for the
commit command is a helpful utility for updating a commit. It allows you to “edit” a previous commit. In my workflow, this tends to happen a lot. I make ...
-
Locate Git Commit for Specific Change
tollmanz.com
Nov 29, 2014
Every now and again, you may need to track down a commit in which a specific change was made. While you can try using
git blame to find the last time that a line was changed...