Tag Archive for 'Python'

Solitaire Players of the World Unite!

Dr. Luis van Ahn presented in his fantastic Google Tech Talk Video called Human Computation (he speaks very fast sometimes in this video).

Continue reading ‘Solitaire Players of the World Unite!’

Riding the snakes with Python

Python Logo

I’ve been reading about Python in my free time and I’m amazed how cool it is.

It features dynamic variable instantiation (this means you don’t have to do the boring job of instantiating all variables to a certain type, like in C or Java), it’s pretty fast (at least two times faster than PHP, for example) and, the Python code syntax is also very pleasant to look at, due to its indentation rule: every loop, condition or any other structure needs to be indented - there is no curly braces or begins/ends, here is an example:

Python Syntax

Continue reading ‘Riding the snakes with Python’

CRON jobs for Windows

According to Wikipedia a CRON job “is a time-based scheduling service in Unix and Unix-like operating systems. It is driven by a configuration file named crontab that specifies shell commands to run periodically on a given schedule”.

Continue reading ‘CRON jobs for Windows’