.|'''''| || '|| ||` '|| || . '' || || || || || |''|| || ''||'' ||''|| '|| ||` ||''|, || || || || || || || || || || `|....|' .||. `|..' .|| ||. `|..'|. .||..|'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I showed Tim around. Ordination certificates. Membership cards. Nearly | |
completed mechanicals for the cover of the Neo-American Church | |
Catechism and Handbook. Michael had just done his original drawing of | |
The Great Seal, showing a three-eyed toad with the motto “Victory Over | |
Horseshit” below it, and Wendy was whiting out ink spots and smudges. | |
“I don’t like your motto, Art,” Tim said, looking over her | |
shoulder. “Victory? Over? Horseshit?” | |
“What’s wrong with that?” I asked. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fermion!ieure:/tmp/hamms$ pip install hamms | |
Downloading/unpacking hamms | |
Downloading hamms-1.3.tar.gz | |
Running setup.py egg_info for package hamms | |
Downloading/unpacking flask (from hamms) | |
Downloading Flask-0.10.1.tar.gz (544kB): 544kB downloaded | |
Running setup.py egg_info for package flask | |
warning: no files found matching '*' under directory 'tests' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun sql-connect* (connection &optional new-name) | |
(interactive | |
(list (sql-read-connection "Connection: " nil '(nil)) | |
current-prefix-arg) | |
nil) | |
(require 'tramp) | |
(let ((dir (cadr (assoc 'default-directory | |
(cdr (assoc connection sql-connection-alist)))))) | |
(if dir | |
(let ((default-directory dir)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// kill me | |
class KillMeWith[W <: Weapon] extends Death { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lmao=# CREATE TABLE "DELETE * FROM users" ("TRUNCATE TABLE" TEXT NOT NULL, "DROP DATABASE" TEXT NOT NULL); | |
lmao=# INSERT INTO "DELETE * FROM users" ("TRUNCATE TABLE", "DROP DATABASE") VALUES ('lol', 'wtf'); | |
lmao=# SELECT * FROM "DELETE * FROM users"; | |
TRUNCATE TABLE | DROP DATABASE | |
----------------+--------------- | |
lol | wtf | |
(1 row) | |
lmao=# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fermion!ieure:~$ brew update | |
error: The following untracked working tree files would be overwritten by merge: | |
Library/Formula/ant.rb | |
Library/Formula/apple-gcc42.rb | |
Please move or remove them before you can merge. | |
Aborting | |
Error: Failure while executing: git pull -q origin refs/heads/master:refs/remotes/origin/master | |
fermion!ieure:~$ cd /usr/local/ | |
fermion!ieure:/usr/local$ git status | |
# On branch master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
IFS=" | |
" | |
echo | |
for FRAME in \ | |
"B :^)" \ | |
" B :^)" \ | |
" B :^)" \ | |
" B :^)" \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scala> case class X(a: Int, b: Int) | |
defined class X | |
scala> X(1, 2).copy(a=1,b=-1) | |
<console>:10: error: not found: value b | |
X(1, 2).copy(a=1,b=-1) | |
^ | |
scala> X(1, 2).copy(a=1,b = -1) | |
res1: X = X(1,-1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; nspace.el --- Pseudo-namespaces | |
;; Copyright (C) 2013 Ian Eure | |
;; Author: Ian Eure <[email protected]> | |
;; Keywords: lisp, data | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |