Complete list of GitHub emojis
You can find the name / alais of every emojis in this gist
You can find the name / alais of every emojis in this gist
This script check domains availability of links from an HTML file
# Usage
$ ./check-domains.sh ./bookmarks.html
aslibrary.org is available
function $$ (query) { | |
return Array.from(document.querySelectorAll(query)); | |
} |
3 jours pour apprendre les bases d'HTML et CSS, organisés en 12 portions de 2h dont au moins un TP de validation
grep " 404 " /var/log/apache2/access.log | | |
cut -d'"' -f2 | | |
cut -d' ' -f2 | | |
sort | | |
uniq -c | | |
sort -h -r |
// ---- | |
// libsass (v3.3.6) | |
// ---- | |
// ===================================================================== | |
// | |
// STATEFUL THEMING FOR SASS | |
// ------------------------- | |
// Indrek Paas <@indrekpaas> | |
// |
# Tasks when setting up a new Ubuntu server | |
# Chaneg root user password | |
passwd | |
# Create a new user | |
adduser tzi | |
# Add it to sudo group | |
usermod -a -G sudo tzi | |
# Add it to www-data group |
C'est une solution qui correspond à mon besoin propre.
Néanmoins, j'ai actuellement de 7327 liens sauvegardés, et je me sens plutôt à l'aise pour m'y retrouver :D
Barre personnelle
#!/usr/bin/env node | |
import fetch from 'node-fetch'; | |
import cheerio from 'cheerio'; | |
function parseHtml(url, callback) { | |
fetch(url) | |
.then(response => response.text()) | |
.then(html => cheerio.load(html)) | |
.then(callback) |
(() => { | |
// Settings | |
const debug = false; | |
const maxDepth = false; | |
const rootElementSelector = false; | |
// Result | |
const refList = []; | |
const output = document.createElement('div'); |