I hereby claim:
- I am spyesx on github.
- I am spyesx (https://keybase.io/spyesx) on keybase.
- I have a public key whose fingerprint is CC78 93D7 BBFF AB03 BBFB CD38 59F8 E34C 5944 AE0C
To claim this, I am signing this object:
# Download a playlist to MP3 | |
brew install youtube-dl | |
# https://explainshell.com/explain?cmd=youtube-dl+--extract-audio+--audio-format+mp3 | |
youtube-dl --extract-audio --audio-format mp3 https://www.youtube.com/playlist?list=[playlist ID goes here] |
I hereby claim:
To claim this, I am signing this object:
# Backup files | |
#https://explainshell.com/explain?cmd=rsync+-azuv+--delete+--progress+--exclude+%27node_modules%27 | |
rsync -auvhp --delete --exclude=node_modules [source] [destination] | |
# Remove all node_modules folders | |
# https://explainshell.com/explain?cmd=find+.+-name+%22node_modules%22+-type+d+-prune+-exec+rm+-rf+%27%7B%7D%27+%2B | |
find . -name "node_modules" -type d -prune -exec rm -rf '{}' + |
hdiutil makehybrid -o /destination/output.iso /source -iso -joliet |
<?php | |
$header = '<?xml version="1.0" encoding="utf-8" standalone="yes"?> | |
<KeePassFile> | |
<Meta> | |
<Generator>KdbxWeb</Generator> | |
<HeaderHash>yW0Fz7nokpC3duCsku9B64+EAZZ7gvsmG0ZIIyZ8nKk=</HeaderHash> | |
<DatabaseName>jlb_import</DatabaseName> | |
<DatabaseNameChanged>2018-02-12T13:14:18Z</DatabaseNameChanged> | |
<DatabaseDescription/> |
Nom (Code du fournisseur -> Fournisseur),Code article,Libellé,Type d'article,PV HT,Code barre,Stock virtuel,Stock réel,Unité,NEW | |
FARO Barcelona,050200101D,SIGN DALI SURFACE BLANC LED 17W 2700K 20°,Bien,"165,10000",8421776104686,"0,00","0,00",Unitaire, | |
FARO Barcelona,050200102D,SIGN DALI SURFACE NOIR LED 17W 2700K 20°,Bien,"165,10000",8421776104709,"0,00","0,00",Unitaire, | |
FARO Barcelona,050200103D,SIGN DALI SURFACE GRIS LED 17W 2700K 20°,Bien,"165,10000",8421776104723,"0,00","0,00",Unitaire, | |
FARO Barcelona,050200201D,SIGN DALI SURFACE BLANC LED 17W 2700K 56°,Bien,"165,10000",8421776104747,"0,00","0,00",Unitaire, | |
FARO Barcelona,050200202D,SIGN DALI SURFACE NOIR LED 17W 2700K 56°,Bien,"165,10000",8421776104761,"0,00","0,00",Unitaire, | |
FARO Barcelona,050200203D,SIGN DALI SURFACE GRIS LED 17W 2700K 56°,Bien,"165,10000",8421776104785,"0,00","0,00",Unitaire, | |
FARO Barcelona,050200301D,SIGN DALI SURFACE BLANC LED 17W 3000K 20°,Bien,"165,10000",8421776104808,"0,00","0,00",Unitaire, | |
FARO Barcelona,050200302D,SIGN DALI SU |
#!/bin/bash | |
# Create a split zip archive | |
# https://explainshell.com/explain?cmd=zip+-r+-s+300+archive.zip+FolderName%2F | |
zip -r -s 300 archive.zip FolderName/ |
Hello, | |
This page has changed: | |
https://www.domain.tld/example/of/a/url/ | |
See yah ! |
#!/bin/bash | |
# Reset a wordpress | |
# sudo sh reset_wordpress.sh website_name database_name /path/to/document/root/ | |
# TODO | |
# - Add some user input tests | |
# - Add some FS tests | |
NAME=$1 | |
DBNAME=$2 |
// Execute this in the console of on your own playlist | |
var videos = document.querySelectorAll('.yt-simple-endpoint.style-scope.ytd-playlist-video-renderer'); | |
var r = []; | |
var json = []; | |
r.forEach.call(videos, function(video) { | |
var url = 'https://www.youtube.com' + video.getAttribute('href'); | |
url = url.split('&list=WL&index='); | |
url = url[0]; |