Skip to content

Instantly share code, notes, and snippets.

View manutheblacker's full-sized avatar
:octocat:
Geeking

Emmanuel A. manutheblacker

:octocat:
Geeking
View GitHub Profile
@manutheblacker
manutheblacker / index.php
Created May 27, 2020 11:33 — forked from Michaelkodji/index.php
Generate a automatic code
<?php
function passgen2($nbChar){
return substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCEFGHIJKLMNOPQRSTUVWXYZ0123456789'),1, $nbChar); }
echo passgen2(9);
// Affiche un password comme : M9ytp5Pbcn
?>
@manutheblacker
manutheblacker / jquery.ui.datepicker-fr.js
Created May 1, 2020 23:03 — forked from corsonr/jquery.ui.datepicker-fr.js
jQuery UI datepicker in French
/* French initialisation for the jQuery UI date picker plugin. */
/* Written by Keith Wood (kbwood{at}iinet.com.au) and Stéphane Nahmani (sholby@sholby.net). */
jQuery(function($){
$.datepicker.regional['fr'] = {
closeText: 'Fermer',
prevText: '&#x3c;Préc',
nextText: 'Suiv&#x3e;',
currentText: 'Aujourd\'hui',
monthNames: ['Janvier','Fevrier','Mars','Avril','Mai','Juin',
'Juillet','Aout','Septembre','Octobre','Novembre','Decembre'],