Pinned Loading
-
XSLT Stylesheet to create single nfo...
XSLT Stylesheet to create single nfo files from VideoStation metadata exported to XML 1<xsl:stylesheet
2version="2.0"
3xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4xmlns:xhtml="http://www.w3.org/1999/xhtml"
5xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-
Powershell command to create a SSH t...
Powershell command to create a SSH tunnel 1start-process -NoNewWindow powershell `
2{ssh -f <user>@<host> `
3-L 10443:127.0.0.1:443 `
4-N }
-
Sign multiple jars using keystore / ...
Sign multiple jars using keystore / key passwords from env variables 1export storepass="mystorepassword"
2export keypass="mykeypassword"
3for i in ./*.jar; do jarsigner -storepass:env storepass -keypass:env keypass "$i" key_alias;done
-
OpenSSH Tunnel (bash)
OpenSSH Tunnel (bash) 1ssh -f <user>@<host> -L <localport>:<remoteserver>:443 -N
-
OCRmyPDF Loop over pdf files in curr...
OCRmyPDF Loop over pdf files in current dir and append _ocr to resulting pdfs (Language: German) 1for i in *.pdf
2do
3ocrmypdf -l deu -i "$i" "${i/%.pdf/_ocr.pdf}"
4done
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.