User:Icarot: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
Icarot (talk | contribs)
Created page with "Three things I'm fond of: Русский, opera, and functional languages. Ye all, all ye, hail the Y-Combinator, blessed be Her name."
 
Icarot (talk | contribs)
mNo edit summary
 
(31 intermediate revisions by the same user not shown)
Line 1: Line 1:
Three things I'm fond of: Русский, opera, and functional languages.
== Projects ==


Traveling! On indefinite hiatus and forever crusting:


Ye all, all ye, hail the Y-Combinator, blessed be Her name.
[https://github.com/icarot/lambdabridge λβ]
 
Azure - (highly) experimental Clojure VM with LLVM and native targets. Immature.
 
==adduser stanza==
adduser --shell /bin/zsh --gecos 'Daemon' icarot
 
== Recurse me baby, just don't hurt me ==
<nowiki>
(defn ack [m n]
  (cond (zero? m) (inc n)
              (zero? n) (ack (dec m) 1)
  :else (ack (dec m) (ack m (dec n)))))</nowiki>
 
 
[[Category:Replicant]]

Latest revision as of 01:55, 28 December 2013

Projects

[edit | edit source]

Traveling! On indefinite hiatus and forever crusting:

λβ

Azure - (highly) experimental Clojure VM with LLVM and native targets. Immature.

adduser stanza

[edit | edit source]
adduser --shell /bin/zsh --gecos 'Daemon' icarot

Recurse me baby, just don't hurt me

[edit | edit source]

(defn ack [m n] (cond (zero? m) (inc n) (zero? n) (ack (dec m) 1) :else (ack (dec m) (ack m (dec n)))))