I hereby claim:
- I am alyssais on github.
- I am qyliss (https://keybase.io/qyliss) on keybase.
- I have a public key whose fingerprint is 03C0 7C9C CD55 DDA6 1F73 4F02 ED0A E8D0 A913 FDC2
To claim this, I am signing this object:
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA256 | |
Date: 2018-01-07 | |
For a number of reasons, I have recently set up a new OpenPGP key, | |
and will be transitioning away from my old one. | |
The old key will continue to be valid for some time, but I prefer all | |
future correspondence to come to the new one. I would also like this |
diff --git a/old.txt b/new.txt | |
index 9cf6209..760786a 100644 | |
--- a/old.txt | |
+++ b/new.txt | |
@@ -12,7 +12,7 @@ These Terms of Service (“Terms”) govern your access to and use of our servic | |
4. Using the Services | |
5.[-Disclaimers and-] Limitations of Liability |
I hereby claim:
To claim this, I am signing this object:
tap "homebrew/php" | |
brew "php71" | |
brew "mysql" | |
brew "composer" |
require "rugged" | |
def diff_parents(commit) | |
puts commit.oid | |
commit.parents.each { |parent| parent.diff(commit) } | |
commit.parents.each { |parent| diff_parents(parent) } | |
rescue SystemStackError | |
end | |
path = "#{__dir__}/rails" |
#!/bin/sh | |
set -ue | |
# Open the theme in Terminal to install it | |
open -b com.apple.Terminal "$1" | |
# Close the Terminal window we just opened. | |
osascript > /dev/null <<OSA | |
tell application "Terminal" | |
do script "exit" in selected tab of front window |
#!/usr/bin/env ruby | |
require "open-uri" | |
require "json" | |
RELEASES_URL = "https://api.github.com/repos/argon/mas/releases" | |
ASSET_NAME = "mas-cli.zip" | |
EXECUTABLE_NAME = "mas" | |
XCODE_ID = "497799835" |
<!doctype html> | |
<html> | |
<head> | |
<title>Castro Play</title> | |
<meta charset="utf-8"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<link rel="apple-touch-icon" href="data:image/png;base64, | |
iVBORw0KGgoAAAANSUhEUgAABAAAAAQACAYAAAB/HSuDAAAAAXNSR0IArs4c | |
6QAAQABJREFUeAHsvVuWJTmuJXYjb0yiPyRN4Vbpr6tKU5HW0kTuvKRuqbvV | |
0rBS2AA3CYK0QzM/HuGRWZux3ACSIEhu4sFj/ohv/8v/9z///vu//P4vXkC+ |
@function null-check($name, $args...) { | |
@if nth($args, 1) { | |
@return call($name, $args...); | |
} | |
@return null; | |
} | |
html { | |
background: null-check(lighten, blue, 5%); | |
} |
#!/bin/sh | |
if ! [ -d "/Volumes/RECOVERY" ]; then | |
echo "Not connected" | |
exit 1 | |
fi | |
mkdir -p "/Volumes/RECOVERY/passwords" | |
rsync -az --delete --exclude ".DS_Store" \ | |
"/Users/penman/dropbox/Apps/1Password/1Password.agilekeychain" \ | |
"/Volumes/RECOVERY/passwords" |