Skip to content

Instantly share code, notes, and snippets.

View DavidMellul's full-sized avatar

David Mellul DavidMellul

View GitHub Profile
// The function that will take care of everything
function updateProgressBar() {
// Retrieve nodes & Scroll value
const progressBar = document.querySelector(".progress-bar");
const content = document.querySelector(".very-long-content");
const scroll = window.pageYOffset;
// Compute bottom part of the long content
const endPosition = content.offsetTop + content.offsetHeight - window.innerHeight;
.progress-bar {
/* Remain on top */
position: fixed;
top: 0;
/* Thickness & Color */
height: 5px;
background:yellow;
/* How fast progress happens */
// Old school
function doSomething(a,b,c) { console.log(a,b,c); }
// ES6
const doSomething = (a,b,c) => { console.log(a,b,c); };
// We will implement a Prettier option :
// Remove parenthesis on ES6 functions using only a single parameter
// (arg) => { } becomes arg => { }
const es6Function = '(arg) => { }';
const regex = /\((.+)\)/;
const cleanedSingleParameter = es6Function.replace(regex,'$1');
console.log(cleanedSingleParameter);
const uid = '6-DAVID-6';
const regex = /^(\d)-.+-\1$/;
if( regex.test(uid) )
console.log('It is a valid uid');
// Prints : It is a valid uid
const phone1 = '+33 6 68 56 23 05';
const phone2 = '06 68 56 23 05';
const regex = /^((\+33 \d)|(0\d))( \d{2}){4}$/;
if( regex.test(phone1) && regex.test(phone2) )
console.log('Call me maybe');
// Prints : Call me maybe
const str = '123456789' ;
if ( /^\d{9}$/.test(str) )
console.log('1 -> 9, you got it');
// Prints : 1 -> 9, you got it
{
"id":"100",
"activated": "1",
"firstname": "Gavin",
"lastname": "Belson",
"email": "[email protected]",
"password":"5f4dcc3b5aa765d61d8327deb882cf99",
"stuff": "..."
}
// Configuration Stuff
// ...
String url = "http://soulmate.com/app/manage_users.php";
// AsyncTask stuff to make an HTTP GET request on a remote REST API
// ...
HTTPRequest request = new HTTPRequest(url);
request.setMethod('POST');
request.addBodyParameter('type', 'get_infos');
request.addBodyParameter('userid', <uid>);
// Configuration Stuff
// ...
String url = "http://soulmate.com/app/manage_users.php";
// AsyncTask stuff to make an HTTP GET request on a remote REST API
// ...