Skip to content

Instantly share code, notes, and snippets.

View FabienPapet's full-sized avatar
🏠
Working from home

Fabien Papet FabienPapet

🏠
Working from home
View GitHub Profile
@FabienPapet
FabienPapet / rio.js
Created August 5, 2015 09:02
RIO control for french phones in Javascript
function validate_isRIO(fullRIO, telephone) {
// fullRIO is id+ctlKey
var id = fullRIO.substr(0,fullRIO.length -3);
var ctlKey = fullRIO.substr(fullRIO.length -3, 3);
var ordre = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+";
var a = b = c = 0;
var concat = id + telephone;
console.log(concat);
@FabienPapet
FabienPapet / gist:7c2b018e49657aa1e120
Created June 23, 2015 21:55
Create database with UTF8 encoding
CREATE DATABASE mydb DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;