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:
#!/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" |
#!/bin/bash | |
# This script builds the iOS and Mac openSSL libraries | |
# Download openssl http://www.openssl.org/source/ and place the tarball next to this script | |
# Credits: | |
# https://github.com/st3fan/ios-openssl | |
# https://github.com/x2on/OpenSSL-for-iPhone/blob/master/build-libssl.sh | |
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" |
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" |
#!/bin/sh | |
#set -x | |
[email protected] | |
OLDHOME=${HOME} | |
cd ~/lynis | |
. /etc/apache2/envvars | |
./lynis -c -Q -q --profile /etc/lynis/default.prf |
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ | |
░░░░░░░░░░░░████░░░░░░░░░░░░░░░░░░░░░░ | |
░░░░░░░░░█████████░░░░░░░░░░░░░░░░░░░░ | |
░░░░░░░░███░░░░░░█░░░░░░░░░░░░░░░░░░░░ | |
░░░░░░███░░░░░░░░██░░░░░░░░░░░░░░░░░░░ | |
░░░░░██░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░ | |
░░░░██░░░░░░░░░░░░░█░░░░░░░░░░░░░░░░░░ | |
░░░░█░░░░░░░░░░█░░░█░░░░░░░░░░░░░░░░░░ | |
░░░███░█░░░░░██░█░░█░░░░░░░░░░░░░░░░░░ | |
░░░███░██░░█░███░░░█░░░░░░░░░░░░░░░░░░ |
This guide is being written for someone who knows their way around Linux/Unix and is comfortable with the responsibility of running their own server. Running this configuration should cost you about $5/month. If you're not comfortable setting up your own server then donating that $5 to other Tor relay operators is still helpful.
Open the following pages up for reference. Ideally you should read through them before beginning.
#!/usr/bin/env ruby | |
require 'json' | |
if ARGV.length < 3 then | |
puts "Usage: squirt <filename> <channel> <comment>" | |
exit | |
end | |
token = "" |