git init
or
require 'classifier' | |
robot_overlord = Classifier::Bayes.new 'hilton', 'franklin' | |
robot_overlord.train_hilton("The only rule is don't be boring and dress cute wherever you go. Life is too short to blend in.") | |
robot_overlord.train_hilton("The way I see it, you should live everyday like its your birthday.") | |
robot_overlord.train_hilton("No matter what a woman looks like, if she's confident, she's sexy.") | |
robot_overlord.train_hilton("I'd imagine my wedding as a fairy tale... huge, beautiful and white.") | |
robot_overlord.train_hilton("There's nobody in the world like me. I think every decade has an iconic blonde, like Marilyn Monroe or Princess Diana and, right now, I'm that icon.") | |
robot_overlord.train_hilton("Some girls are just born with glitter in their veins.") |
These instructions will guide you through the process of setting up local, trusted websites on your own computer.
These instructions are intended to be used on macOS Sierra, but they have been known to work in El Capitan, Yosemite, Mavericks, and Mountain Lion.
NOTE: You may substitute the edit
command for nano
, vim
, or whatever the editor of your choice is. Personally, I forward the edit
command to Sublime Text:
alias edit="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"
In case you haven't yet set up an encrypted USB drive yet, this article has clear directions on how to encrypt an entire USB drive. If you don't have a USB drive that you want encrypted, please talk to your anchor or send an ask ticket for a USB drive that you can dedicate to this purpose.
From there, you can follow GitHub's directions for adding a new SSH key to your account, making sure to save the key on your now-encrypted drive (not the default location in your home directory). Please use a password different from the USB drive's password and different from your GitHub account password. (Since you're already in your account settings, this would also be a great time to enable two-factor authentication on GitHub as well.)
Then, to make it super-easy to just plug in your USB key and activate your SSH ke
(defun source (filename) | |
"Update environment variables from a shell source file." | |
(interactive "fSource file: ") | |
(message "Sourcing environment from `%s'..." filename) | |
(with-temp-buffer | |
(shell-command (format "diff -u <(true; export) <(source %s; export)" filename) '(4)) | |
(let ((envvar-re "declare -x \\([^=]+\\)=\\(.*\\)$")) |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
#!/bin/bash | |
set -e | |
current_mac() { | |
ifconfig en0 ether | awk '/ether / { print $2 }' | |
} | |
current_mac_wifi() { | |
networksetup -getmacaddress Wi-Fi | awk '{ print $3 }' | |
} |
;; Needs terminal-notifier (brew install terminal-notifier) | |
(defun notify-osx (title message) | |
(call-process "terminal-notifier" | |
nil 0 nil | |
"-group" "Emacs" | |
"-title" title | |
"-sender" "org.gnu.Emacs" | |
"-message" message)) | |
;; org-pomodoro mode hooks |
FILE SPACING: | |
# double space a file | |
sed G | |
# double space a file which already has blank lines in it. Output file | |
# should contain no more than one blank line between lines of text. | |
sed '/^$/d;G' |