This file contains hidden or 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
SPC | |
SPC find file in workspace | |
< switch buffer | |
, switch workspace buffer | |
. find file | |
: M-x | |
/ search in project | |
b | |
b switch workspace buffer | |
B switch buffer |
This file contains hidden or 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
#!/usr/bin/env bash | |
# docker prune | |
docker system prune -a | |
# remove exited containers: | |
docker ps --filter status=dead --filter status=exited -aq | xargs -r docker rm -v | |
# remove unused images: | |
docker images --no-trunc | grep '' | awk '{ print $3 }' | xargs -r docker rmi |
This file contains hidden or 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
#!/usr/bin/env bash | |
set -eEu -o pipefail | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P)" | |
# URLs.txt is a text file containing one URL per line | |
for URL in `cat "$DIR/URLs.txt"`; do | |
# you can add other extensions | |
wget -r -nd --accept=mp3,MP3 -k -l 1 --show-progress --progress=bar:force:noscroll -e robots=off --span-hosts "$URL" -q | |
done |
This file contains hidden or 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
#!/usr/bin/env bash | |
set -eEu -o pipefail | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P)" | |
usage() { printf "%s" "\ | |
Usage: ./archive_github_user_starred.sh [-h] USER | |
"; exit 0; | |
} | |
if [ "$1" == "-h" ]; then |
This file contains hidden or 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
#!/usr/bin/env bash | |
set -eEu -o pipefail | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd -P)" | |
usage() { printf "%s" "\ | |
Usage: ./archive_github_user.sh [-h] USER | |
"; exit 0; | |
} | |
if [ "$1" == "-h" ]; then |
This file contains hidden or 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
#!/usr/bin/env bash | |
./favd.sh google.com google.ico |
This file contains hidden or 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
""" | |
Extract youtube urls from a json file returned by the google takeout export. | |
Usage : python extract_urls.py <name of json file> | |
""" | |
import logging | |
import argparse | |
import json | |
from pathlib import Path | |
logger = logging.getLogger() |
This file contains hidden or 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 Gathering βββββββββββββββββ 52 plays | |
Paradise Lost βββββββββββββββββ 48 plays | |
Agalloch βββββββββββββββββ 28 plays | |
Anathema βββββββββββββββββ 24 plays | |
Katatonia βββββββββββββββββ 22 plays | |
Riverside βββββββββββββββββ 15 plays | |
Primordial βββββββββββββββββ 10 plays | |
Ride βββββββββββββββββ 8 plays | |
Myrath βββββββββββββββββ 7 plays | |
Thy Catafalque βββββββββββββββββ 6 plays |
This file contains hidden or 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
import requests | |
import pandas as pd | |
from bs4 import BeautifulSoup | |
url_base = "https://en.wikipedia.org/wiki/Napoleon" | |
soup_base = BeautifulSoup(requests.get(url_base).content, "lxml") | |
links = soup_base.find("div", {"class": "navbox"}).find_all("li") |
This file contains hidden or 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
""" | |
Python script skeleton | |
""" | |
import logging | |
import time | |
import argparse | |
logger = logging.getLogger() | |
temps_debut = time.time() |
NewerOlder