Skip to content

Instantly share code, notes, and snippets.

View pheuter's full-sized avatar

Mark Fayngersh pheuter

View GitHub Profile
[:defn,
:add,
[:args, :x, :y],
[:call, [:lvar, :x], :+, [:arglist, [:lvar, :y]]]]
[:call, :add, [:arglist, [:lit, 2], [:lit, 3]]]
def add(x,y)
x+y
end
add(2,3)
@pheuter
pheuter / wc.js
Created January 4, 2011 05:19
Wordcount bookmarklet
document.body.appendChild(document.createElement('script')).src='http://code.jquery.com/jquery-1.4.3.min.js';
setTimeout(function () {
$("textarea").after(function () {
return "<p style='color:blue;'>Word count: <b>"+$(this).val().split(/\s+/).length+"</b></p>"
});
wc = function(ta) { ta.siblings().html('Word count: <b>'+ta.val().split(/\s+/).length+'</b>'); };
$("textarea").keypress(function() {
wc($(this));
}
.LC0:
.string "%d"
.text
.globl main
.type main, @function
main:
.LFB0:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
@pheuter
pheuter / Merge.factor
Created November 30, 2010 23:12
Factor implementation of merge assignment
! With local bindings (7 loc)
: merge ( x y z -- z )
[| a b c | a b c a length 0 > b length 0 > and ]
[| a b c | a b c 0 a nth 0 b nth over over <
[| a b c x y | 0 a remove-nth b c x over push ]
[| a b c x y | a 0 b remove-nth c y over push ] if ]
while
[| a b c | a b c b length 0 = [| a b c | c a append ] [| a b c | c b append ] if ] call ;
@pheuter
pheuter / merge.m
Created November 30, 2010 18:13
Objective C implementation of merge assignment
// ~ 27 loc
#import <Foundation/Foundation.h>
@interface Main : NSObject
{
NSMutableArray *a1, *a2, *merged;
}
@property(nonatomic, assign) NSMutableArray *a1, *a2, *merged;
@pheuter
pheuter / merge.js
Created November 30, 2010 18:12
Javascript implementation of merge assignment
// ~ 3 loc
var puts = require('sys').puts;
function merge (a1, a2) {
var merged = [];
while(a1 && a2 != '') merged.push(a1[0] <= a2[0] ? a1.shift() : a2.shift());
return merged.concat(a1 != '' ? a1 : a2);
}
@pheuter
pheuter / peculiar.rb
Created November 29, 2010 20:56
Guess what happens...
def f(*x) {:f=>->(o){p o}}[:f][x*", "] end
f 'Hello', gets
@pheuter
pheuter / remove_all_gems.sh
Created November 12, 2010 00:13
Concurrently uninstalls all ruby gems
gem list | ruby -e "while line = STDIN.gets do puts line[/([\w_-]+)/,1] end" | parallel gem uninstall