This file contains 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
# shellcheck disable=SC2148 | |
# shellcheck disable=SC2034 | |
# okta-aws plugin for oh-my-zsh | |
# for use with the bullet-train oh-my-zsh theme: https://github.com/caiogondim/bullet-train.zsh | |
# (although this could be easily changed) | |
# Irving Popovetsky <[email protected]> | |
# default profile is used if you don't set one using AWS_PROFILE, which is recommended | |
OKTA_AWS_DEFAULT_PROFILE="chef-engineering" |
This file contains 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
# Save this as ~/.chef/newcreds.rb | |
# Add require_relative 'newcreds' to your ~/.chef/knife.rb | |
require 'tomlrb' | |
require 'pathname' | |
context_file = "#{Dir.home}/.chef/context" | |
credentials_file = "#{Dir.home}/.chef/credentials" | |
context = File.read(context_file).chomp if File.exist?(context_file) | |
profile_name = ENV["CHEF_PROFILE"] || context || "default" |
This file contains 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
ಠ_ಠ | |
( ͡° ͜ʖ ͡°) | |
¯\_(ツ)_/¯ | |
(╯°□°)╯︵ ┻━┻ | |
http://www.fileformat.info/convert/text/upside-down.htm | |
WRTTN http://wrttn.me/30dbfd/ | |
Unicode Emoticons |
This file contains 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
;; Gist-ed from in https://github.com/arnab/emacs-starter-kit | |
(defun fontify-frame (frame) | |
(interactive) | |
(if window-system | |
(progn | |
(if (> (x-display-pixel-width) 2000) | |
(set-frame-parameter frame 'font "Inconsolata 19") ;; Cinema Display | |
(set-frame-parameter frame 'font "Inconsolata 16"))))) |
This file contains 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
#!/bin/bash | |
# user-data-hardening.sh | |
# Authors: Cody Bunch ([email protected]) | |
# | |
# Script intended to be supplied as userdata to a cloud of some flavor. | |
# Enables some sane sysctl defaults, turns up iptables, and | |
# installs a HIDS / NIDS package | |
# Supply your email here | |
email_address="[email protected]" |
This file contains 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
save-last-command() { | |
last_command=$(fc -nl 0) | |
command_name="$1" | |
read -r -d '' new_fun <<EOF | |
${command_name}() { | |
$last_command | |
} | |
EOF | |
eval "$new_fun" | |
} |
This file contains 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
# Gist for archival purposes, via the wayback machine, | |
# https://web.archive.org/web/20131222092914/http://brainspl.at/nginx.conf.txt | |
# - brainspl.at seems to be offline :( | |
# | |
# View other versions at https://web.archive.org/web/*/http://brainspl.at/nginx.conf.txt | |
# | |
# user and group to run as | |
user ez ez; | |
# number of nginx workers |
This file contains 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
[user] | |
name = Joshua Timberman | |
email = [email protected] | |
[color] | |
ui = true | |
diff = true | |
status = true | |
branch = true | |
interactive = true | |
[core] |
This file contains 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
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
This file contains 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
(setq interprogram-cut-function | |
(lambda (text &optional push) | |
(let* ((process-connection-type nil) | |
(pbproxy (start-process "pbcopy" "pbcopy" "/usr/bin/pbcopy"))) | |
(process-send-string pbproxy text) | |
(process-send-eof pbproxy)))) | |
(setq interprogram-paste-function | |
(lambda () | |
(shell-command-to-string "pbpaste"))) |
NewerOlder