I hereby claim:
- I am jetpks on github.
- I am jetpks (https://keybase.io/jetpks) on keybase.
- I have a public key ASCu-BHuJlSFpNWRKoFCsUze0V_9dwi5vKEakuSZhsRlfwo
To claim this, I am signing this object:
| @font-face { | |
| font-family: "Cartograph CF"; | |
| src: local("Cartograph CF"); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| This builds off the excellent work of @lmarkus. | |
| The scripts below can be used in conjunction with the Slack Emoji Tools Google Chrome extension to export emojis from | |
| one Slack team and import into another team. | |
| Original work here: https://gist.github.com/lmarkus/8722f56baf8c47045621 |
| require 'openssl' | |
| def gen_key(name) | |
| key = OpenSSL::PKey::RSA.new 1048 | |
| file = File.new(name, "w") | |
| file.write(key) | |
| file.close | |
| end | |
| def get_key(name) |
openstack cli you need to switch it to using v3 API. Do this:Create an identity provider
openstack identity provider create idp_1 # idp_1 is an id. Use any you like. I like idp_1
This is my constantly updated CS:GO autoexec config.
Put the files autoexec.cfg and video.txt in ...\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg or take what you want from it and add to your autoexec config!
-novid -high -threads 4 -freq 144 -refresh 144 -tickrate 128 -nojoy -nod3d9ex +exec autoexec.cfg
| #!/usr/bin/env ruby | |
| require 'FileUtils' | |
| def main | |
| config = parse_args | |
| files = find_m4a(config[:src]) | |
| mangled = mangle_names(files, config[:dst]) | |
| move_files(mangled) | |
| end |
| diff --git a/deployment/puppet/l23network/lib/puppet/parser/functions/generate_network_config.rb b/deployment/puppet/l23network/lib/puppet/parser/functions/generate_network_config.rb | |
| index f80e466..6504c4a 100644 | |
| --- a/deployment/puppet/l23network/lib/puppet/parser/functions/generate_network_config.rb | |
| +++ b/deployment/puppet/l23network/lib/puppet/parser/functions/generate_network_config.rb | |
| @@ -4,6 +4,7 @@ require 'puppet/parser' | |
| require 'puppet/parser/templatewrapper' | |
| require 'puppet/resource/type_collection_helper' | |
| require 'puppet/util/methodhelper' | |
| +require 'json' |
| #!/bin/sh | |
| # ejacobs: removed all of those annoying prompts. Some of this doesn't work. | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' |
| #!/bin/bash | |
| # Colors first, because they're important | |
| green="\e[0;32m" | |
| yellow="\e[1;33m" | |
| red="\e[0;31m" | |
| norm="\e[0m" | |
| if [ ! -e $1 ]; then | |
| printf "${yellow}404 NOTFOUND${norm}\t %s\n" $1; | |
| exit 404; |