Ultimos Posts 1. 09/10/2011 14:18 - Tetris clone in Unity I have been working with Unity lately and decided to use it for a a 3D version of my simple-tetris-clone . Unity great strengths are the easiness to go from concept to implementation and its support for deployment in multiple platforms. It's not that easy, I can tell, after finishing a project with iOS and Android support but once you get it right, it works. You can play it online ... 2. 09/02/2011 22:52 - Solving the Tic-Tac-Toe game, finally... The simple game that has been always after me laughing at my programming incompetence. The very first time I tried to make a program that could play perfectly the game was in the university, after taking my very first course in Programming Languages (I learned Pascal). It was holidays and I was visiting my cousin and got the nice surprise of him getting a personal computer. It was ... 3. 15/01/2011 17:52 - Flasic: a very simple BASIC interpreter for Flash I just found this very little cute BASIC interpreter: Jasic and I decided to make a port to Flash in order to add basic graphics commands (just "setcolor" and "putpixel" actually) so I could see the little thing drawing a colored Mandelbrot fractal. It was very easy, thanks to the profusely commented code of the original author (Bob Nystrom). You can select the program demos from t... 4. 08/08/2010 16:38 - Solving the Princess in a Box Puzzle We can solve the puzzle of my last post using a Breadth-first search (BFS) algorithm. The key idea is to realize than the problem is just a Shortest Path problem where the graph, even when it is not completely known at the beginning (because we don't have the graph's adjacency list or adjacency matrix), can be built joining the states the board takes after every movement. The image... 5. 29/07/2010 23:39 - The Princess in a Box puzzle Today was holidays here (national day) so I finally could finish the Professor Layton and the Curious Village cute little game. If you like puzzles there are no better games than the Professor Layton series. I really recommend them if you own a Nintendo DS. However I don't play games much, so take my advice with a bit of salt: the only games I ever finished were StarControl I... |