- Command & Conquer: Red Alert 3
http://tinyurl.com/828jfws
- Ninja Gaiden III
http://www.gamespot.com/ninja-gaiden-iii/platform/ps3
- UFC Undisputed 3
http://www.gamespot.com/ufc-undisputed-3/platform/ps3
- The King of Fighters XIII
This file contains hidden or 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 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 |
This file contains hidden or 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
;; 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)) |
This file contains hidden or 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
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 |
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
This file contains hidden or 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
system ~/projects/nokogiri $ pickjdk 1 | |
New JDK: 1.6.0.jdk | |
system ~/projects/nokogiri $ jruby -v xmlbench.rb | |
jruby 1.7.0.dev (ruby-1.8.7-p357) (2012-01-10 bd4cc62) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_29) [darwin-x86_64-java] | |
11.331000 0.000000 11.331000 ( 11.331000) | |
10.239000 0.000000 10.239000 ( 10.239000) | |
10.185000 0.000000 10.185000 ( 10.185000) | |
10.113000 0.000000 10.113000 ( 10.113000) | |
10.120000 0.000000 10.120000 ( 10.120000) |
This file contains hidden or 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
; | |
; Monads | |
; ====== | |
; | |
; * Without monads "pure" functional programming could be very impractical, Hack! | |
; * You can build environments that support exactly the features that you want | |
; * Functional able todo IO | |
; * Function Composition: LINQ, Unix Pipes | |
; * Good for control tracking of things | |
; * Encapsulating two things: |
This gist and a Functional Society Gist to talk about FP concepts, so people can share links and help each other to get the concepts right and make questions, get you question answered and so on and on...
- Higher Order Functions
- Lambda
- Currying
It's time!!! Let's do another kick ass event at Porto Alegre.
671, Jari st - Passo da Areia - Porto Alegre | Google Maps Adress => http://g.co/maps/frjub
Ask for "Functional Society" or "Alexandre Poletto"
This file contains hidden or 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
cd / | |
mkdir /home/diegopacheco | |
echo "export HOME=/home/diegopacheco" >>.bashrc | |
echo "export HOME=/home/diegopacheco" >>.bash_profile | |
cp .bashrc .bash_profile /home/diegopacheco | |
echo "cd" >>.bashrc |
OlderNewer