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
javascript: (function () { | |
panel = document.querySelector( | |
"div[data-testid*='container-right']" | |
); | |
if (panel.style.display == "none") | |
panel.style.removeProperty("display"); | |
else | |
panel.style.setProperty("display", "none"); | |
})(); |
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
#!/usr/bin/env bb | |
;;; | |
; A babashka script to update all clojure -Ttools to the latest versions | |
; author: Tyler Wardhaugh | |
;;; | |
(ns update-clj-tools | |
(:require [babashka.fs :as fs] | |
[babashka.process :refer [process]])) |
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
#!/usr/bin/env bash | |
# temp file | |
t=/tmp/bipe.$$.txt | |
touch $t | |
# read from stdin | |
if [ ! -t 0 ]; then | |
cat > $t |