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
(defvar upside-down-alist | |
'((?a . ?ɐ) | |
(?b . ?q) | |
(?c . ?ɔ) | |
(?d . ?p) | |
(?e . ?ǝ) | |
(?f . ?ɟ) | |
(?g . ?ƃ) | |
(?h . ?ɥ) | |
(?i . ?ı) |
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
$ lein install | |
Created /Users/ieure/Projects/simple/3p/codox/codox.core/target/codox.core-0.6.5-SNAPSHOT.jar | |
Wrote /Users/ieure/Projects/simple/3p/codox/codox.core/pom.xml | |
$ find ~/.m2 -iname \*codox\* | |
/Users/ieure/.m2/repository/codox | |
/Users/ieure/.m2/repository/codox/codox.core | |
/Users/ieure/.m2/repository/codox/codox.core/0.6.5-SNAPSHOT/codox.core-0.6.5-SNAPSHOT.jar | |
/Users/ieure/.m2/repository/codox/codox.core/0.6.5-SNAPSHOT/codox.core-0.6.5-SNAPSHOT.pom | |
$ |
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
;;; ime-snake.el --- | |
;; Copyright (C) 2013 Ian Eure | |
;; Author: Ian Eure <[email protected]> | |
;; Keywords: | |
;; 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 |
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
$ lein tar | |
java.lang.ClassNotFoundException: org.apache.tools.tar.TarOutputStream | |
at java.net.URLClassLoader$1.run(URLClassLoader.java:202) | |
at java.security.AccessController.doPrivileged(Native Method) | |
at java.net.URLClassLoader.findClass(URLClassLoader.java:190) | |
at clojure.lang.DynamicClassLoader.findClass(DynamicClassLoader.java:61) | |
at java.lang.ClassLoader.loadClass(ClassLoader.java:306) | |
at java.lang.ClassLoader.loadClass(ClassLoader.java:247) | |
at java.lang.Class.forName0(Native Method) | |
at java.lang.Class.forName(Class.java:171) |
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
(eval-after-load 'erc-button | |
'(progn | |
(defun erc-button-skip-forward () | |
"Skip to the end of the button point is in." | |
(let ((p (point))) | |
(goto-char | |
(progn | |
(while (and (get-text-property p 'erc-callback) | |
(not (= p (point-max)))) | |
(setq p (1+ p))) |
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 erc-cmd-EXCUSE () | |
(erc-send-message | |
(save-window-excursion | |
(with-temp-buffer | |
(fortune "~/.fortune/bofh-excuses") | |
(trim | |
(replace-regexp-in-string | |
"\n+" " " (buffer-substring (point-min) (point-max)))))))) |
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
Please white list these ranges as well | |
216.239.32.0/19 | |
64.233.160.0/19 | |
66.249.80.0/20 | |
72.14.192.0/18 | |
209.85.128.0/17 | |
66.102.0.0/20 | |
74.125.0.0/16 | |
64.18.0.0/20 |
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
[INFO] ------------------------------------------------------------- | |
[ERROR] COMPILATION ERROR : | |
[INFO] ------------------------------------------------------------- | |
[ERROR] /Users/ieure/Projects/simple/dropwizard/dropwizard-core/src/main/java/com/yammer/dropwizard/config/ServerFactory.java:[65,20] cannot find symbol | |
symbol : method register(com.yammer.metrics.util.DeadlockHealthCheck) | |
location: class com.yammer.metrics.HealthChecks | |
[ERROR] /Users/ieure/Projects/simple/dropwizard/dropwizard-core/src/main/java/com/yammer/dropwizard/config/ServerFactory.java:[67,24] cannot find symbol | |
symbol : method register(com.yammer.metrics.core.HealthCheck) | |
location: class com.yammer.metrics.HealthChecks | |
[INFO] 2 errors |
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
;;; sts-mode.el --- Safe-to-Spend | |
;; Copyright (C) 2012 Ian Eure | |
;; Author: Ian Eure <[email protected]> | |
;; Keywords: | |
;; 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 |
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
ERROR [2012-08-13 18:16:39,863] com.simple.ocean.polling.TransactionPoller: Error in transaction poller | |
! java.lang.ClassCastException: [B cannot be cast to java.util.List | |
! at redis.clients.jedis.Connection.getObjectMultiBulkReply(Connection.java:196) | |
! at redis.clients.jedis.BinaryTransaction.exec(BinaryTransaction.java:25) | |
! at com.simple.ocean.RedisGating$$anonfun$withRedisTransaction$1.apply(RedisGating.scala:38) | |
! at com.simple.ocean.RedisGating$$anonfun$withRedisTransaction$1.apply(RedisGating.scala:35) | |
! at com.simple.serviceutil.redis.RedisUtil$class.withRedis(RedisPool.scala:34) | |
! at com.simple.ocean.RedisGating.withRedis(RedisGating.scala:27) | |
! at com.simple.ocean.RedisGating.withRedisTransaction(RedisGating.scala:34) | |
! at com.simple.ocean.RedisGating.addKnownHolds(RedisGating.scala:118) |