- 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 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
object HelloWorld { | |
def p(m: String) { | |
println(m) | |
} | |
def main(args: Array[String]) { | |
p("Hello, world!") | |
} | |
This file contains 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
Backstroke lover always hidin' 'neath the covers | |
'Til I talked to your daddy he say | |
He said you ain't seen nothin' 'til you're down on a MUFF AND | |
Then you're sure to be a-changin' your way | |
I met a cheerleader was a real young bleeder | |
Oh the times I could reminisce | |
'Cause the best things of lovin' with her sister and her cousin | |
Only started with a little kiss | |
A like this |
This file contains 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
from flask import Flask, render_template, jsonify | |
from lib.stats import RedisMonitor | |
from settings import SERVERS | |
try: | |
import json | |
except: | |
import simplejson as json |
This file contains 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
require 'rubygems' | |
require 'sinatra' | |
get '/' do | |
File.open('jmxweb.out').read.gsub("\n", "<br/>") | |
end |
This file contains 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
(((fn closure[n] | |
(fn [x] | |
(Math/pow x n) | |
) | |
) 2) 16) |
Hey guys want join Functional Society ?
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 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
object AnonymousFunctionMain { | |
def main(args: Array[String]): Unit = { | |
logCall( () => println("Chamada de metodo atual!") ) | |
} | |
def logCall(callback: () => Unit): Unit = { | |
print("Log antes de chamar seu metodo... Invocado as : " + System.currentTimeMillis + "\n") | |
callback | |
} |
This file contains 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
object CurryingFunctions { | |
def times(n:Int)(f: => Unit) = for(i <- 1 to n){ f } | |
def main(args: Array[String]) { | |
times(5){ | |
println("Hey") | |
} | |
} | |
} |
OlderNewer