Before Github supported SSL encryption for github pages sites, many people were using CloudFlare (CF) as their DNS provider and CDN proxy. CF allowed users to enable SSL encryption from the CDN end points/proxies to the end user. This was great and it allowed visitors to your website to connect with a secure connection between their browser and the cloudflare CDN box that was serving your content. However, with this setup one (significant) link in the chain remained unencrypted and
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Simple Image Diffs | |
# ================== | |
# | |
# How to Install | |
# -------------- | |
# | |
# Download the script somewhere on $PATH as 'simple-imagediff' with +x: | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <boost/algorithm/string.hpp> | |
// ... | |
// Add binaries from the sample file. | |
exe_maps_result_cptr_t exe_maps = | |
exe_maps_t(context, configuration->sample_file).get(); | |
BOOST_FOREACH(const exe_map_t &exe_map, exe_maps->exe_maps) | |
{ | |
boost::replace_all(exe_map.filename, " (deleted)", ""); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for homebrew/science/opencv on macOS 10.10.5 | |
Build date: 2017-08-18 11:04:24 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for opencoarrays on macOS 10.12.6 | |
Build date: 2017-08-10 12:09:07 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:100644 100644 2b46dbe... 0000000... M cmake/modules/pkg-config.cmake | |
diff --git i/cmake/modules/pkg-config.cmake w/cmake/modules/pkg-config.cmake | |
index 2b46dbe..7ecc789 100644 | |
--- i/cmake/modules/pkg-config.cmake | |
+++ w/cmake/modules/pkg-config.cmake | |
@@ -230,7 +230,7 @@ function(pkg_config_link_flags link_flags_out link_flags_in) | |
"/System/Library/Frameworks/([^ ]*)\\.framework" | |
"-framework \\1" | |
link_flags |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for plplot on macOS 10.10.5 | |
Build date: 2017-07-21 19:24:32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o nounset | |
set -o pipefail | |
set -o errexit | |
set -o errtrace | |
msg="Press Ctrl-C to abort, or enter to continue" | |
echo "Tapping homebrew-bundle" | |
read -rp "${msg}" | |
brew tap homebrew/bundle |