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
(header>h1{HEADER})+(nav>ul>li{Item $}*5)+(div.wrapper>(main>(article#article$>(h2{Titre $}+p>(img+{lorem100})))*4)+(aside.summary>(ul>(li>a[href="#article$"]{Article $})*4))+(aside.ads>h2{Publicité}))+footer>h3{FOOTER} |
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
shntool split -t "%n - %t" -f "cuesheet.cue" -o flac "input.flac" | |
(needs the flac package) |
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
pandoc -s -o doc.pdf doc.md | |
[Source](https://www.mscharhag.com/software-development/pandoc-markdown-to-pdf) |
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
sudo apt install snapd && sudo snap install pdftk | |
[Doc Ubuntu.fr](https://doc.ubuntu-fr.org/pdftk) | |
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
ffmpeg -i input.flac -write_id3v2 1 -c:v copy output.aiff |
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
Quod Libert greedy matcher : <~> | |
Allows to match without saving to tags |
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
nm-connection-editor |
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
# OpenSSH Private Keys have a specific format | |
# It cannot be read by openssl and gives that error : | |
# Could not read private key from id_rsa | |
# I also tried with ssh-keygen | |
# > ssh-keygen -if id_rsa -m PEM | |
# That gives | |
# > do_convert_from_pem: unrecognised raw private key format | |
# The solution is to use ssh-keygen and to change the passphrase : | |
ssh-keygen -p -N "" -m pem -f id_rsa |