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

IceDeck

IceDeck is a deck of cards to represent tasks to accomplish, informations to note, records about something or the data you want.

Each card is defined by an accent (colors), keywords (a click on a card gives you all other cards with the same keyword) and if you want some other properties as % completed, a number of points, …

This application will be used on Espace Win to answer one of the members most asked question: “How can I help you?”, writing a card for each features to implement or tasks to do, sorted by theme and skills.

Read more