Now hosted in this repository
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "react-redux-boilerplate", | |
"version": "0.0.1", | |
"description": "", | |
"main": "js/app.js", | |
"dependencies": { | |
"react": "0.14.6", | |
"react-dom": "0.14.6", | |
"react-redux": "^4.4.1", | |
"redux": "^3.3.1", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
global $bdd; | |
try { | |
$bdd = new PDO("mysql:host=localhost;dbname=todo_tp;unix_socket=/home/mathiasd/.mysql/mysql.sock", "root", "root"); | |
$bdd->exec('SET NAMES utf8'); | |
} catch (Exception $e) { | |
die('Can\'t connect to MySql Serveur : ' . $e->getMessage()); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ************************************************************ | |
# Sequel Pro SQL dump | |
# Version 4096 | |
# | |
# http://www.sequelpro.com/ | |
# http://code.google.com/p/sequel-pro/ | |
# | |
# Host: 127.0.0.1 (MySQL 5.5.33) | |
# Database: sqlkart | |
# Generation Time: 2014-11-23 13:34:01 +0000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* read input from std in | |
*/ | |
function readInput ($str = "") { | |
echo $str; | |
$handle = fopen ("php://stdin","r"); | |
$line = fgets($handle); | |
fclose($handle); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files": { | |
"jQuery min": "http://code.jquery.com/jquery.min.js", | |
"Eric Meyer's reset": "http://meyerweb.com/eric/tools/css/reset/reset.css", | |
"normalize.css": "https://raw.github.com/necolas/normalize.css/master/normalize.css", | |
"Backbone.js": "http://documentcloud.github.com/backbone/backbone-min.js", | |
"Underscore.js": "http://documentcloud.github.com/underscore/underscore-min.js", | |
"Prefix free": "https://raw.github.com/LeaVerou/prefixfree/master/prefixfree.min.js", | |
"jQuery Transit": "https://raw.github.com/rstacruz/jquery.transit/master/jquery.transit.js", | |
"plinejs": "http://labs.svn.octaveoctave.com/mathias/plinejs/build/plinejs-0.4-n.js", |