Skip to content

Instantly share code, notes, and snippets.

@jimmylatreille
jimmylatreille / background-adresse.html
Last active August 29, 2015 14:21
background color adresse bar mobile
<meta name="theme-color" content="#FF2813">
@jimmylatreille
jimmylatreille / ssh.txt
Created June 11, 2015 14:55
Generate and get RSA SSH KEY
ssh-keygen -t rsa -b 4096 -C "[email protected]"
cat ~/.ssh/id_rsa.pub | pbcopy
@jimmylatreille
jimmylatreille / flash.txt
Last active August 29, 2015 14:22
Flash message
####### REQUIRE JQUERY #########
//============== USAGE EXEMPLE ===================
flash("Flash message", 'info');
//============== HTML ====================
<div class="response">
<h1></h1>
@jimmylatreille
jimmylatreille / validation_JS.txt
Last active August 29, 2015 14:22
Validation form inputs JS
####### REQUIRE JQUERY #########
//============== USAGE EXEMPLE ===================
var formRegister = 'form#register';
//validate the requiered fields and validate fields
var formInputs = validate_inputs(formRegister + ' input');
// //Check if all the requiered fields are equal to the validated fields and that there's no error fields
@jimmylatreille
jimmylatreille / favicon png
Created August 12, 2015 19:41
favicon png
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" />