Clojure CLI tools (with deps.edn) allow for a built in way to create projects.
Official CLI/deps guide: https://clojure.org/guides/deps_and_cli
- Pre-reqs: Clojure and dependencies installed.
Clojure CLI tools (with deps.edn) allow for a built in way to create projects.
Official CLI/deps guide: https://clojure.org/guides/deps_and_cli
| /* 11/27/2017 - Tweaked for a page redesign. | |
| * 1/6/2018 - Handle videos in book bundle. | |
| */ | |
| var pattern = /(MOBI|EPUB|PDF( ?\(H.\))?|CBZ)$/i; | |
| var pattern2 = /(Download)$/; | |
| var nodes = document.getElementsByTagName('a'); | |
| var downloadCmd = ''; | |
| for (i in nodes) { | |
| var a = nodes[i]; | |
| if (a && a.text && pattern.test(a.text.trim())) { |
| # Customize BASH PS1 prompt to show current GIT repository and branch. | |
| # by Mike Stewart - http://MediaDoneRight.com | |
| # SETUP CONSTANTS | |
| # Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
| # I don't remember where I found this. o_O | |
| # Reset | |
| Color_Off="\[\033[0m\]" # Text Reset |