I hereby claim:
- I am alexg0 on github.
- I am alexg0 (https://keybase.io/alexg0) on keybase.
- I have a public key ASCGqvHNgpLgzSv7vuHciExPTTigv9MZuMLRcjw6Z-VSWAo
To claim this, I am signing this object:
#! /bin/bash | |
APPLE_WATCH_PAMID_LIBPATH=/usr/local/lib/pam/pam_watchid.so.2 | |
APPLE_WATCH_PAMID_URL=https://github.com/msanders/pam-watchid | |
APPLE_WATCH_PAMID_PATH=$HOME/src/pamid-applewatch | |
enable_sudo_with_apple_watch_and_touch_id() { | |
trap 'popd' EXIT INT HUP | |
enable_apple_watch() { | |
if ! test -f $APPLE_WATCH_PAMID_LIBPATH |
#! /usr/bin/env ruby | |
# Copyright (c) 2016, Alexander Goldstein | |
# Permission to use, copy, modify, and/or distribute this software for any | |
# purpose with or without fee is hereby granted, provided that the above | |
# copyright notice and this permission notice appear in all copies. | |
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
I hereby claim:
To claim this, I am signing this object:
Process: AirMail Beta [17994] | |
Path: /opt/homebrew-cask/*/AirMail Beta.app/Contents/MacOS/AirMail Beta | |
Identifier: it.bloop.airmail.beta8 | |
Version: 1.3 (214) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [334] | |
Responsible: AirMail Beta [17994] | |
User ID: 501 | |
Date/Time: 2013-11-10 00:20:27.527 -0600 |
#! slate | |
# install with following command: | |
# cd /Applications && curl http://www.ninjamonkeysoftware.com/slate/versions/slate-latest.tar.gz | tar -xz | |
# GLOBAL CONFIGURATIONS | |
# ------------------------------------------------------------------- | |
# See https://github.com/jigish/slate/wiki/Global-Configs | |
config defaultToCurrentScreen true |
require 'nokogiri' | |
module Nokogiri | |
module XML | |
class Node | |
## | |
# Returns true of the argument is semantically equivalent to self | |
# Equivalent is defined as follows : | |
# - same name |
# standard rails .gitignore file | |
# .gitignore | |
# bundler recomended lines | |
vendor/gems/* | |
!vendor/gems/cache/ | |
.bundle/ | |
# generated tags | |
tags |
# ... | |
# append following lines | |
Dir[ File.join(File.dirname(__FILE__), 'tasks', '*.rake') ].sort.each do |f| | |
load f | |
end |
# build chef | |
echo 'Acquire::http { Proxy "http://rocky:3142"; } ;' | sudo tee /etc/apt/apt.conf.d/02proxy | |
sudo sed -i 's/universe/multiverse universe/' /etc/apt/sources.list | |
sudo apt-get update | |
sudo apt-get install -y ruby ruby1.8-dev libopenssl-ruby1.8 rdoc ri irb build-essential wget ssl-cert rubygems git-core rake librspec-ruby libxml-ruby thin couchdb zlib1g-dev libxml2-dev | |
sudo gem sources -a http://gems.opscode.com | |
sudo gem install cucumber merb-core jeweler uuidtools json libxml-ruby --no-ri --no-rdoc |