I hereby claim:
- I am josephabrahams on github.
- I am josephabrahams (https://keybase.io/josephabrahams) on keybase.
- I have a public key whose fingerprint is EEA3 FAD3 05BB 0107 E8EC 217B 1DE9 F007 B39D 34B2
To claim this, I am signing this object:
#!/bin/sh | |
# Create a bootable ISO from the OS X Mavericks app | |
# http://thezinx.com/misc/trend/create-bootable-dmg-iso-mavericks-app/ | |
if [ ! -f /Applications/Install\ OS\ X\ Mavericks.app/Contents/SharedSupport/InstallESD.dmg ]; then | |
echo "Download the OS X Mavericks App and then rerun this script." | |
open "https://itunes.apple.com/us/app/os-x-mavericks/id675248567" | |
exit 1 | |
fi |
<!doctype html> | |
<html lang="en-US"> | |
<head> | |
<title>LT IE9</title> | |
<meta charset="utf-8"> | |
<style> | |
html, body { | |
height: 100%; | |
} | |
body { |
#!/usr/bin/env bash | |
# Install missing Linux From Scratch Host System Requirements for Ubuntu 14.04 | |
if [ ! $(whoami) == "root" ]; then | |
echo "Please run as root!" | |
exit 1 | |
fi | |
# symlink sh to bash | |
ln -fsv /bin/bash /bin/sh |
I hereby claim:
To claim this, I am signing this object:
[ | |
{ "keys": ["super+n"], "command": "new_window" }, | |
{ "keys": ["super+t"], "command": "new_file" }, | |
{ "keys": ["super+l,super+enter"], "command": "clone_file" }, | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" } | |
] |
<?php | |
$f_path = dirname( realpath( __FILE__ ) ) . '/../../../404.html'; | |
if ( file_exists( $f_path ) ) { | |
readfile( $f_path ); | |
} else { | |
echo '<h1>404 Not Found</h1>'; | |
} |