Destroy as many lines as you can!
Momiga
The most minimalist game ever.
Discover how to carry the dot from left to right only tapping the screen in a different way in each level.
Sometimes, sport is art
Best Lap
Just touch and release the screen to accelerate and brake your car; only that. Drifting is not a good idea. Do your best to make the Best Lap!
The BestLap game is completely addictive.
Some of the incredible features:
– Ultra-realistic motor sound.
– Awesome physics (acceleration and grip).
– Compete against the ghost of your best lap.
– Ultra-precise stopwatch.
– Fast restarter button.
Atlas, the Next Generation
High Pass Filter
CodinGame
Improve your programming skills creating game AI’s:
Melhore suas habilidades de programação criando IA’s para jogos:
Euclidean algorithm
// Euclidean algorithm – GCD (Greatest Common Divisor)
// Algoritmo de Euclides – MDC (Maior Divisor Comum)
gcd ( a, b )
{
while ( b ≠ 0 )
{
t = b;
b = a mod b;
a = t;
}
return a;
}
First post.
Today I’m starting my blog.