Skip to content

Instantly share code, notes, and snippets.

View darksh3ll's full-sized avatar

DARKSH3LL darksh3ll

  • France
View GitHub Profile
{
"cmd": ["/usr/local/bin/node, "$file"],
"selector": "source.js"
}
@darksh3ll
darksh3ll / .js
Last active February 18, 2018 09:01
chiffres aléatoires
Math.round(Math.random()*10)
@darksh3ll
darksh3ll / FfiltresBlur.css
Created March 1, 2018 18:10
filtres blur sur images
filter:blur(5px);
@darksh3ll
darksh3ll / filter brightness.css
Created March 1, 2018 18:31
Attenuer le constrat d'une images ideal pour voir le texte
filter:brightness(.33);
filter: grayscale(100%);
@media screen and (min-width: 425px) {
}
header {
height: 700px;
background: url(/img/neonbrand-268902-unsplash.jpg);
background-size: cover;
background-position: center;
box-shadow: 4px 3px 13px 6px #000000c4;
}
//Plus grand
const score = [23,78,65,100,89,999,87,1020];
console.log(Math.max(...score));
//Plus petit
console.log(Math.min(...score));
sudo npm update -g
const mot = "nicolewrobel";
let motInverse = "";
for (let i = 0; i < mot.length; i++) {
motInverse = mot[i] + motInverse;
}
if (mot === motInverse) {
console.log("Palindrone")
}else {
console.log("no palindrone")
}