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
// 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; | |
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
.progress-bar { | |
/* Remain on top */ | |
position: fixed; | |
top: 0; | |
/* Thickness & Color */ | |
height: 5px; | |
background:yellow; | |
/* How fast progress happens */ |
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
// Old school | |
function doSomething(a,b,c) { console.log(a,b,c); } | |
// ES6 | |
const doSomething = (a,b,c) => { console.log(a,b,c); }; |
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
// 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); |
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
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 |
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
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 |
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
const str = '123456789' ; | |
if ( /^\d{9}$/.test(str) ) | |
console.log('1 -> 9, you got it'); | |
// Prints : 1 -> 9, you got it | |
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
{ | |
"id":"100", | |
"activated": "1", | |
"firstname": "Gavin", | |
"lastname": "Belson", | |
"email": "[email protected]", | |
"password":"5f4dcc3b5aa765d61d8327deb882cf99", | |
"stuff": "..." | |
} |
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
// 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>); |
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
// Configuration Stuff | |
// ... | |
String url = "http://soulmate.com/app/manage_users.php"; | |
// AsyncTask stuff to make an HTTP GET request on a remote REST API | |
// ... |