This file contains hidden or 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
function deansi(log) { | |
var ansi, text; | |
log = log.replace(/\r\r/g, '\r').replace(/\033\[K\r/g, '\r').replace(/\[2K/g, '').replace(/\033\(B/g, '').replace(/\033\[\d+G/g, ''); | |
ansi = ansiparse(log); | |
text = ''; | |
ansi.forEach(function(part) { | |
var classes = []; | |
part.foreground && classes.push(part.foreground); | |
part.background && classes.push('bg-' + part.background); | |
part.bold && classes.push('bold'); |
This file contains hidden or 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
[operation setWillSendRequestForAuthenticationChallengeBlock:^(NSURLConnection *connection, NSURLAuthenticationChallenge *challenge) { | |
[[challenge sender] continueWithoutCredentialForAuthenticationChallenge:challenge]; | |
}]; |
This file contains hidden or 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
(in-package :hax0r.fork) | |
(defgame fork-game | |
(:start-in mansion-foyer) | |
(:welcome "=== FORK: the cool person's game ===") | |
(defloc mansion-foyer "a creepy mansion foyer" | |
(door west other-room)) | |
(defloc other-room "a room inside the creepy mansion" |
This file contains hidden or 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
(ns structures.avl-tree) | |
(defn height [tree] | |
(if (nil? tree) | |
0 | |
(inc (max (height (:left tree)) | |
(height (:right tree)))))) | |
(defn balance [tree] | |
(- (height (:left tree)) |
This file contains hidden or 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
fatal: bad object 92ab867c4a7049548545ea4b2a8d80c38abebb1d | |
error: pack-objects died with strange error | |
error: failed to push some refs to '[email protected]:cooldude127/emacs-starter-kit.git' |
This file contains hidden or 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
;;; A date library that follows principle of least surprise | |
(ns clojure.contrib.date) | |
(import 'java.util.Calendar) | |
(import 'java.util.TimeZone) | |
(def #^{:doc "Conversion of Calendar weekdays to keywords"} | |
weekday-map | |
{Calendar/SUNDAY :sunday | |
Calendar/MONDAY :monday |
This file contains hidden or 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
;;; A date library that follows principle of least surprise | |
;;; | |
;;; A few usage examples: | |
;;; | |
;;; user> (now) | |
;;; {:second 24, :minute 10, :hour 0, :type | |
;;; :clojure.contrib.date/DateTime, :year 2009, :month 1, :day 23 | |
;;; :zone "America/New_York"} | |
;;; | |
;;; user> (today) |
NewerOlder