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 -eo pipefail | |
# -e exit if any command returns non-zero status code | |
# -o pipefail force pipelines to fail on first non-zero status code | |
FATAL="\\033[1;31mFATAL\\033[0m" | |
WARNING="\\033[1;33mWARNING\\033[0m" | |
PASS="\\033[1;32mPASS\\033[0m" | |
INFO="\\033[1;36mINFO\\033[0m" |
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
let color = "blue" | |
let num = 42 | |
localized("Colorless green ideas sleep furiously.") | |
localized("Colorless \(color) ideas sleep furiously.") | |
localized("\(num.formatted("%05d")) colorless green ideas sleep furiously.") |
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
********* RemoveSymantecMacFiles.command 7.0.49 ********* | |
WARNING: This script will remove all files and folders created by Symantec | |
Mac OS X products (LiveUpdate Administration Utility files) and | |
any files within those folders. Therefore, you will lose ALL files | |
that reside in those folders, including any that you have created. | |
Usage: RemoveSymantecMacFiles.command [-CcdeFfghIikLlmpQqRrV] [-QQ] [-re] [volume ...] | |
Summary: If no option or volume is specified, then all Symantec files are |
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
// | |
// CustomFontMetrics.swift | |
// | |
// Created by Zachary Waldowski on 6/6/17. | |
// Licensed under MIT. | |
// | |
import UIKit | |
private extension UITraitCollection { |