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
(ns clee.agealyzer) | |
(require '[clojure.java.io :as io]) | |
(defn date [x] (java.util.Date. x)) | |
(defn is-file? [f] (.isFile f)) | |
(defn last-modified [f] (.lastModified f)) | |
(defn get-year [x] (.getYear x)) | |
(defn process-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
#!/usr/sbin/dtrace | |
pid$target::free:entry | |
{ | |
printf("%s: %s\n", probefunc, copyinstr(arg0)); | |
} |
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
$.ready(function() { | |
var source = new EventSource("/events"); | |
source.addEventListener('data', function(e) { | |
$("#content").append(e.data + "\n"); | |
}, false); | |
}); |
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
/* | |
cpacl.c: copy solaris ACLs from one file to another | |
author: Chris Lee <[email protected]> | |
license: WTFPL <http://sam.zoy.org/wtfpl/COPYING> | |
make: cc -o cpacl cpacl.c -lsec -lc | |
*/ | |
#include <sys/acl.h> | |
#include <stdio.h> |
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
#!/usr/bin/env node | |
var fs = require('fs'); | |
var sys = require('sys'); | |
var bin = require('binary'); | |
function bytesize(n) { | |
// JavaScript can't handle 64-bit ints natively. | |
// TODO: hack it up anyway. | |
// (n & 0xFFFFFFFF00000000) ? 8 : ... |
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
#!/usr/bin/env macruby | |
framework 'Foundation' | |
framework 'AppKit' | |
class Person | |
def initWithCoder(decoder) | |
# empty implementation needed for ancient iChat conversations | |
end | |
end |
NewerOlder