I hereby claim:
- I am foozmeat on github.
- I am james (https://keybase.io/james) on keybase.
- I have the public key with fingerprint 2536 ED14 2693 9F75 1CBF 13D8 D565 BF51 5407 E78A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // | |
| // PANWebServerConnection.h | |
| // | |
| // Created by James Moore on 9/8/14. | |
| // | |
| #import "GCDWebServerConnection.h" | |
| @interface PANWebServerConnection : GCDWebServerConnection |
| #!/usr/bin/env ruby | |
| require 'twitter' | |
| require 'csv' | |
| require 'fileutils' | |
| require 'open-uri' | |
| client = Twitter::REST::Client.new do |config| | |
| config.consumer_key = "YOUR_CONSUMER_KEY" | |
| config.consumer_secret = "YOUR_CONSUMER_SECRET" |
| ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | |
| ░░░░░░░░░░░░████░░░░░░░░░░░░░░░░░░░░░░ | |
| ░░░░░░░░░█████████░░░░░░░░░░░░░░░░░░░░ | |
| ░░░░░░░░███░░░░░░█░░░░░░░░░░░░░░░░░░░░ | |
| ░░░░░░███░░░░░░░░██░░░░░░░░░░░░░░░░░░░ | |
| ░░░░░██░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░ | |
| ░░░░██░░░░░░░░░░░░░█░░░░░░░░░░░░░░░░░░ | |
| ░░░░█░░░░░░░░░░█░░░█░░░░░░░░░░░░░░░░░░ | |
| ░░░███░█░░░░░██░█░░█░░░░░░░░░░░░░░░░░░ | |
| ░░░███░██░░█░███░░░█░░░░░░░░░░░░░░░░░░ |
| def mas_validation | |
| return unless $config[:build][:package] | |
| if $config[:build][:ios] | |
| else | |
| if $config[:build][:configuration] == 'ReleaseMacAppStore' | |
| notice("Validating for MAS") | |
| # puts "Verifying package signature" |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Created on 9-9-2015 by James Moore (@foozmeat) | |
| Install software updates automatically and intelligently. | |
| If you improve this script please send me patches. |
| #!/bin/bash | |
| # some keychain stuff borrowed from | |
| # https://apple.stackexchange.com/questions/287610/keychains-created-by-an-ssh-connection-are-locked-and-can-not-be-used | |
| # export identities with | |
| # security export -k ${KEYCHAIN_NAME} -t identities -o identities.p12 -P ${P12_PASSWORD} -f pkcs12 | |
| YELLOW=`tput setaf 3` | |
| RESET=`tput sgr0` |
| #!/usr/bin/env ruby | |
| require 'json' | |
| if ARGV.length < 3 then | |
| puts "Usage: squirt <filename> <channel> <comment>" | |
| exit | |
| end | |
| token = "" |
| #!/bin/sh | |
| #set -x | |
| EMAIL=someone@example.com | |
| OLDHOME=${HOME} | |
| cd ~/lynis | |
| . /etc/apache2/envvars | |
| ./lynis -c -Q -q --profile /etc/lynis/default.prf |
| #!/bin/sh | |
| # Help from http://dptnt.com/2009/08/add-date-time-stamp-to-jpeg-photos-using-free-software-mac-linux-nix-edition/ | |
| # install the LCD font - http://www.dafont.com/digital-7.font | |
| # install imagemagick via homebrew | |
| # Install Time Lapse Assembler to make the movie - http://www.dayofthenewdan.com/projects/time-lapse-assembler-1/ | |
| set -e | |
| font="$HOME/Library/Fonts/digital-7 (mono).ttf" | |
| outputfolder="$HOME/Downloads/caps" |