The cell has an accessory control that is a blue button with a chevron image as content. It is intended for configuration purposes. The control tracks touches.
A Pen by Peter T Bosse II on CodePen.
#!/bin/sh | |
#-- Exports ---------------------------------------------------- | |
export \ | |
HISTFILE="${ZDOTDIR:-$HOME}/.zhistory" \ | |
HISTSIZE=50000 \ | |
SAVEHIST=50000 | |
#-- Changing Directories --------------------------------------- |
init_sudo | |
init_cache | |
init_no_sleep | |
init_hostname | |
init_perms | |
init_devtools | |
init_updates | |
init_mas_save | |
install_paths | |
install_brew |
#!/bin/sh | |
function ask() { | |
function y() { printf " \e[3;32m%s\e[0m\n" "yes"; } | |
function n() { printf " \e[3;31m%s\e[0m\n" "no"; } | |
printf "\e[1;34m%s\e[0m? \e[1;33m%s\e[0m " "${1}" "(y/n)" | |
for i in {1..3}; do | |
read -s -n 1 -t 2 | |
case "$REPLY" in |
diff --git a/libavformat/movenc.c b/libavformat/movenc.c | |
--- a/libavformat/movenc.c | |
+++ b/libavformat/movenc.c | |
@@ -5208,26 +5208,46 @@ static void enable_tracks(AVFormatContext *s) | |
st->codecpar->codec_type >= AVMEDIA_TYPE_NB) | |
continue; | |
+ // note the first stream number for each type | |
if (first[st->codecpar->codec_type] < 0) | |
first[st->codecpar->codec_type] = i; |
## based on https://github.com/lioonline/OS-X-El-Capitan | |
## pkg file link - http://osxapps.itunes.apple.com/apple-assets-us-std-000001/Purple30/v4/cc/62/24/cc62243b-7ed7-74cd-d47e-374bc470ecdf/diu414781394017735583.pkg | |
# !!IMPORTANT!! Run this from folder where you have downloaded or copied diu414781394017735583.pkg file | |
#create a tmp folder | |
mkdir sierraRoot && cd sierraRoot | |
#create a folder structure to match apple server | |
sudo mkdir -p ./apple-assets-us-std-000001/Purple30/v4/cc/62/24/cc62243b-7ed7-74cd-d47e-374bc470ecdf/ |
#!/usr/bin/python | |
import sys | |
import hashlib | |
from OpenSSL.crypto import * | |
def main(): | |
if(len(sys.argv) != 4): | |
print sys.argv[0] + " /path/to/ssl.crt /path/to/ssl.key ProcessedMachineIdentifier" | |
sys.exit(0) |
<route aria-current="{ show ? 'page' : null }" class="{ in: animIn, out: animOut }" if="{ show || animIn || animOut }"> | |
<!-- | |
# route tag | |
This is a part of ikki project | |
http://cognitom.github.io/ikki/ | |
--> | |
<yield /> | |
<script> |
p | |
font-size: 24px |
--- a/usr/local/Library/Taps/caskroom/homebrew-cask/lib/hbc/artifact.rb 2016-01-04 15:06:43.000000000 -0500 | |
+++ b/usr/local/Library/Taps/caskroom/homebrew-cask/lib/hbc/artifact.rb 2016-01-04 16:29:20.000000000 -0500 | |
@@ -4,6 +4,7 @@ | |
require 'hbc/artifact/uninstall_base' | |
require 'hbc/artifact/symlinked' | |
require 'hbc/artifact/hardlinked' | |
+require 'hbc/artifact/moved' | |
require 'hbc/artifact/app' | |
require 'hbc/artifact/artifact' # generic 'artifact' stanza |