:root {
/* Base color using HSL */
--hue: 207;
--saturation: 64%;
--light: 44%;
/* Base color in variable */
--primary-color: hsl(var(--hue), var(--saturation), var(--light));
/* Base color lighten using calc */
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
console.log('L1'); | |
setTimeout(() => console.log('L2'), 0); | |
new Promise((resolve) => { | |
console.log('L3'); | |
setImmediate(() => console.log('L4')); | |
process.nextTick(() => console.log('L5')) // node backend only | |
resolve(); | |
}) | |
.then(() => console.log('L6')); | |
console.log('L7'); |
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
for (var i = 0; i < 4; i++) { | |
setTimeout(() => { | |
console.log(i); | |
}, 0); | |
} |
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
function greet(person) { | |
if (person == { name: 'amy' }) { | |
return 'hey amy' | |
} else { | |
return 'hey arnold' | |
} | |
} | |
console.log(greet({ name: 'amy' })) |
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
[ | |
{ "name": "Afghanistan", "iso": "AF", "flag": "🇦🇫", "dialCode": "+93" }, | |
{ "name": "Aland Islands", "iso": "AX", "flag": "🇦🇽", "dialCode": "+358-18" }, | |
{ "name": "Albania", "iso": "AL", "flag": "🇦🇱", "dialCode": "+355" }, | |
{ "name": "Algeria", "iso": "DZ", "flag": "🇩🇿", "dialCode": "+213" }, | |
{ "name": "American Samoa", "iso": "AS", "flag": "🇦🇸", "dialCode": "+1-684" }, | |
{ "name": "Andorra", "iso": "AD", "flag": "🇦🇩", "dialCode": "+376" }, | |
{ "name": "Angola", "iso": "AO", "flag": "🇦🇴", "dialCode": "+244" }, | |
{ "name": "Anguilla", "iso": "AI", "flag": "🇦🇮", "dialCode": "+1264" }, | |
{ "name": "Antarctica", "iso": "AQ", "flag": "🇦🇶", "dialCode": "+672" }, |
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
ab | |
ad | |
an | |
ante | |
anti | |
auto | |
be | |
bi | |
centi | |
circum |
I hereby claim:
- I am diogocapela on github.
- I am diogocapela (https://keybase.io/diogocapela) on keybase.
- I have a public key ASDq9CGecwsL3cNrUS3gOKPYdlW1lUoMWbFmSE1bSSyo6go
To claim this, I am signing this object:
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
scrollbar-width: none; | |
overflow: -moz-scrollbars-none; | |
-ms-overflow-style: none; | |
&::-webkit-scrollbar { | |
display: none; | |
width: 0; | |
height: 0; | |
} |
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
#include <errno.h> | |
#include <fcntl.h> | |
#include <pthread.h> | |
#include <semaphore.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/mman.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> |
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
#include <errno.h> | |
#include <fcntl.h> | |
#include <semaphore.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/mman.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> |
NewerOlder