We are a bunch of highly skilled young developers:
- Guilherme Coelho (gncoelho)
- Koiti Takahashi (Kitaly)
- Mozair AC Junior (MACSkeptic)
- Ricardo Tealdi (ricardo.tealdi)
This blog is about real world problems, and real world solutions - mostly for things that has bugged us and are not that easy to find on google.
Kitaly
public class KoitiTakahashi
{
static KoitiTakahashi myself;
string name = "Koiti Takahashi";
DateTime birthDate = new DateTime(1984, 10, 10);
string[] formation = { "MSc in Computer Engineering at POLIMI", "Computer Engineer at POLI-USP" };
string[] spokenLanguages = { "en-US", "it-IT", "ja-JP", "pt-BR" };
string job = "IT Engineer at Locaweb (O_o)";
string[] hobbies = { "Exotic Cuisine", "Playing piano and guitar", "Travelling", "Typing" };
public static void CreateMe()
{
if (myself == null)
{
myself = new KoitiTakahashi();
}
else
{
throw new JustOneIsEnoughException("I'm exclusive!");
}
}
public static void KillMe()
{
throw new ImpossibleException("You should never try this!");
}
}
MACSkeptic
class MACSkeptic
def initialize
@name = "Mozair Alves do Carmo JĂșnior"
@trademark = "MACSkeptic"
@age = 22
@profession = "Developer"
@favored_platforms = [:c_sharp, :ruby, :php, :html, :css, :prolog]
@hated_platforms = [:cpp, :asp, :asp_net]
@other_known_platforms = [:c, :erlang, :java]
end
def things_that_I_like!
[:philosophy,
:psychology,
:poetry,
:alliterations,
:logic,
:algorithms,
:puzzles,
:punk_rock,
:cats,
:cold_rainy_days]
end
def things_that_I_hate!
[:religion,
:dogs,
:suits,
:sun,
:light]
end
def the_absolute_truth
"Anything that is not nil or false"
end
end
ricardo.tealdi
{
"ricardoTealdi" :
{
"name" : "Ricardo Antunes Tealdi",
"alias" : "Tealdi",
"age" : "24",
"company" : "Locaweb",
"profession" : "Programmer",
"site" : "http://www.tealdi.com.br/"
}
}