Skip to content

Instantly share code, notes, and snippets.

@Raynes
Created September 20, 2010 04:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Raynes/587417 to your computer and use it in GitHub Desktop.
Save Raynes/587417 to your computer and use it in GitHub Desktop.
rayne@ubuntu:~/cljprojs/cake-github$ cake github repos Raynes --results=4
has issues -> true
fork -> false
pushed at -> 2009/11/07 15:01:19 -0800
clone url (read only) -> git://github.com/Raynes/Cipher.git
name -> Cipher
watchers -> 2
has wiki -> true
owner -> Raynes
created at -> 2009/11/07 13:20:31 -0800
private -> false
homepage ->
url -> http://github.com/Raynes/Cipher
has downloads -> true
ssh clone url (read write) -> git@github.com:Raynes/Cipher.git
open issues -> 0
forks -> 0
description -> An implementation of Caesers Cipher in Clojure.
has issues -> true
fork -> false
pushed at -> 2010/01/06 16:08:05 -0800
clone url (read only) -> git://github.com/Raynes/Hricket.git
name -> Hricket
watchers -> 1
has wiki -> true
owner -> Raynes
created at -> 2009/12/16 11:19:20 -0800
private -> false
homepage ->
url -> http://github.com/Raynes/Hricket
has downloads -> true
ssh clone url (read write) -> git@github.com:Raynes/Hricket.git
open issues -> 0
forks -> 0
description -> An implementation of Cricket in Haskell.
has issues -> true
fork -> false
pushed at -> 2010/05/04 15:56:27 -0700
clone url (read only) -> git://github.com/Raynes/Not-Sure-Yet.git
name -> Not-Sure-Yet
watchers -> 1
has wiki -> true
owner -> Raynes
created at -> 2010/01/19 12:17:21 -0800
private -> false
homepage ->
url -> http://github.com/Raynes/Not-Sure-Yet
has downloads -> true
ssh clone url (read write) -> git@github.com:Raynes/Not-Sure-Yet.git
open issues -> 0
forks -> 0
description -> A repository for a fiction novel I'm writing.
has issues -> true
fork -> false
pushed at -> 2010/02/15 16:32:02 -0800
clone url (read only) -> git://github.com/Raynes/snail.git
name -> snail
watchers -> 1
has wiki -> true
owner -> Raynes
created at -> 2010/01/23 11:30:27 -0800
private -> false
homepage ->
url -> http://github.com/Raynes/snail
has downloads -> true
ssh clone url (read write) -> git@github.com:Raynes/snail.git
open issues -> 0
forks -> 0
description -> A simple email client written in Clojure.
user=> (def blah identity)
#'user/blah
user=> (defmulti multifn #'blah)
#'user/multifn
user=> (defmethod multifn "example" [x] (apply str (reverse x)))
#<MultiFn clojure.lang.MultiFn@e2a37b>
user=> (multifn "example")
"elpmaxe"
user=> (defn blah [x] (apply str (reverse x)))
#'user/blah
user=> (multifn "elpmaxe")
"example"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment