Skip to content

Instantly share code, notes, and snippets.

View diegopacheco's full-sized avatar

Diego Pacheco diegopacheco

View GitHub Profile
@diegopacheco
diegopacheco / 1-meetup-functional-society.md
Created December 16, 2011 19:31
Functional Society #1 meetup 14/01/2012

First Meetup 14/01/2012

It's time!!! Let's meet each other on kick ass event at Porto Alegre.
Our very first meetup will be 14/01/2012(saturday) at 671, Jari st - Passo da Areia - Porto Alegre
Google Maps Adress => http://g.co/maps/frjub

Schedulle

anonymous
anonymous / gist:1406238
Created November 29, 2011 20:09
Originally:
https://gist.github.com/7565976a89d5da1511ce
Hi Donald (and Martin),
Thanks for pinging me; it's nice to know Typesafe is keeping tabs on this, and I
appreciate the tone. This is a Yegge-long response, but given that you and
Martin are the two people best-situated to do anything about this, I'd rather
err on the side of giving you too much to think about. I realize I'm being very
critical of something in which you've invested a great deal (both financially
@diegopacheco
diegopacheco / ps3-wishlist.markdown
Created November 28, 2011 01:39
PS3 Games Wishlist
;; diegopacheco's solution to Compress a Sequence
;; https://4clojure.com/problem/30
#(reduce (fn[r n]
(if (= n (last r)) r (conj r n)))
(cons [] %1))
@skuro
skuro / sample.get.clj
Created May 10, 2011 18:04
Clojure WebScript sample
;; ns forms are currently useless
;; Import the protocol
(import '[spring.surf.webscript WebScript])
;; Let's make use of some utility functions
(require '[spring.surf.webscript :as w])
;; Concrete WebScript implementation
(deftype SampleWebScript