I hereby claim:
- I am prurigro on github.
- I am prurigro (https://keybase.io/prurigro) on keybase.
- I have a public key whose fingerprint is 26FE B966 DDAD D00F F158 5E7C 2D73 8DD1 CE38 9672
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| diff --git a/PD-classes/src/com/watabou/utils/Bundle.java b/PD-classes/src/com/watabou/utils/Bundle.java | |
| index e266acc..39a47ec 100644 | |
| --- a/PD-classes/src/com/watabou/utils/Bundle.java | |
| +++ b/PD-classes/src/com/watabou/utils/Bundle.java | |
| @@ -264,27 +264,12 @@ public class Bundle { | |
| } | |
| } | |
| - | |
| - private static final char XOR_KEY = 0x1F; |
| #!/usr/bin/env bash | |
| function recursive_ldd() { | |
| for file in "$(find . -type f -exec file '{}' \; | grep 'dynamically linked')"; do sed 's|:.*||' <<< "$file"; done | |
| } | |
| function find_libs() { | |
| ldd $(recursive_ldd) \ | |
| | sed '/^[^ ]*:$/d;s|^ *||' \ | |
| | grep -o -e '/[^ ]*' \ |
| #!/usr/bin/env bash | |
| # | |
| # gnome-dlext - a gnome extension download tool | |
| # | |
| # instructions: | |
| # 1. find the url of the extension you wish to download on extensions.gnome.org | |
| # 2. run this script with either the extension url, or the id number contained in it | |
| # 3. if there are no errors, your extension should then be downloaded! | |
| # |
| #!/usr/bin/env bash | |
| # USER VARIABLES | |
| config_dir="$HOME/.config/Raccoon" | |
| inst_pkglist_file="$config_dir/installed.txt" | |
| blacklist_file="$config_dir/blacklist.txt" | |
| pkg_width=38 | |
| ver_width=15 | |
| stat_width=30 |
| #!/usr/bin/env bash | |
| MIRRORLIST="/etc/pacman.d/archassault-mirrorlist" | |
| # if mirrorlist.pacnew exists, copy to mirrorlist.complete | |
| [[ -f "${MIRRORLIST}.pacnew" ]] && mv "${MIRRORLIST}.pacnew" "${MIRRORLIST}.complete" && sed -i 's/^#//' "${MIRRORLIST}.complete" | |
| # if mirrorlist.complete is missing, copy mirrorlist to mirrorlist.complete | |
| if [ ! -f "${MIRRORLIST}.complete" ]; then | |
| [[ -f "$MIRRORLIST" ]] \ |
| #!/usr/bin/env bash | |
| # | |
| # CodeGet: A zbar wrapper utility to read barcodes from various sources | |
| # | |
| # Version: 1.4.8 | |
| # | |
| # Written by Kevin MacMartin and released under the MIT license | |
| # | |
| # Requirements: | |
| # base64 | converts to and from base64 encoding |
| #!/usr/bin/env bash | |
| # | |
| # Contact: A pyCardDAV toolset wrapper for improved user experience on the command-line | |
| # | |
| # Version 1.3.1 | |
| # | |
| # Written by Kevin MacMartin (prurigro@gmail.com) | |
| # Released under the MIT license | |
| # |
| #!/usr/bin/env bash | |
| # | |
| # archroot | |
| # An overlayfs chroot management script for deployable arch build environments | |
| # | |
| # Version 1.18 | |
| # | |
| # Written by Kevin MacMartin | |
| # Released under the MIT license |
| #!/usr/bin/env node | |
| /* | |
| * json2weblist: convert a heading in json to an HTML list, then tidy it up | |
| * Version: 1.0.1 | |
| * | |
| * Requirements: | |
| * Node.js: http://nodejs.org/ | |
| * Tidy-HTML: http://tidy.sourceforge.net/ | |
| * * Experimental version with HTML5 support : https://github.com/w3c/tidy-html5 |