Skip to content

Instantly share code, notes, and snippets.

View pyrolitic's full-sized avatar

Jonathan Roșca pyrolitic

View GitHub Profile
@tsiemens
tsiemens / google_doc_preview_tamperscript.js
Last active April 2, 2020 19:02
Google Docs Preview Redirect Tampermonkey Script
// ==UserScript==
// @name Preview Google Docs
// @version 1.0.0
// @description Same you some CPU and RAM
// @author Trevor Siemens
// @homepageUrl https://gist.github.com/tsiemens/5d6507590a35ebde833b388e48510862
// @match https://docs.google.com/document/d/*/edit*
// @match https://docs.google.com/document/d/*/preview*
// @run-at document-start
// @grant GM_addStyle
@bvaudour
bvaudour / compress.sh
Last active April 23, 2025 07:07
tar.lz4 creation/extraction
#!/bin/bash
if [ $# -ne 1 ]; then
echo "Usage : $0 <file to compress>"
exit 1
fi
file=${1%%/}
tar c "$file" | lz4 -z - "$file.tar.lz4"