Spot the difference

Very funny, the Microsoft Visual Studio ads “Spot the difference”.

Guess what’s the difference between a lambda developer and a Visual Studio user.

Read more

Structure SQL de Sycorax

Voici la structure SQL actuelle minimale de Sycorax : Structures des tables SQL de Sycorax CREATE TABLE `Files` (   `file_id` mediumint(8) NOT NULL AUTO_INCREMENT,   `file_path` mediumtext NOT NULL,   `tune_id` mediumint(8) NOT NULL,   PRIMARY KEY  (`file_id`),   KEY `tune_id` (`tune_id`),   KEY `file_path` (`file_path`(255)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `Tunes` ( […]

Read more