I hereby claim:
- I am pachanka on github.
- I am pachanka (https://keybase.io/pachanka) on keybase.
- I have a public key whose fingerprint is 2E1A 1B8D 56A0 163B 494F 26C5 A0ED 74C5 34CC A765
To claim this, I am signing this object:
| /** | |
| * | |
| * James Benning, List of Meanings; code used by Ted Kaczynski in his journals, originally written in the 1970s | |
| * (In a convenient javascript object) | |
| **/ | |
| var list = { | |
| 0 : 'for', | |
| 1 : 'be', // (all present tense forms, including am, is, are, etc.) | |
| 2 : 'be', // (all past tense forms) |
| .\" Manpage for splaining. | |
| .\" Contact [email protected] to correct errors or typos. | |
| .TH man 8 "22 March 2018" "1.0" "splaining man page" | |
| .SH NAME | |
| splaining \- explain something obvious in a condescending manner. | |
| .SH SYNOPSIS | |
| splaining [suggestion] | |
| .SH DESCRIPTION | |
| splaining is a small command that will return an explanation for any topic you choose or, if no option is given will attempt to explain things anyway, without knowing what is being explained. | |
| .SH OPTIONS |
| /** | |
| * | |
| * This example uses ptty to create a terminal emulator and | |
| * a command with prompt that will ask three questions. | |
| * | |
| * More Info at: http://goto.pachanka.org/ptty/docs/#set_command_option | |
| * | |
| * To Adapt this function to your needs: | |
| * |
| #!/bin/bash | |
| # | |
| # Usage search-with-gpg path/to/encrypted/files/* | |
| # | |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 'search string' [path/to/encrypted/files/*]"; | |
| exit 1; | |
| else | |
| SEARCH=$1; |
| /* I MADE THIS, I THINK ITS AWESOME */ | |
| /* Seed generation and shuffle */ | |
| var Seed_int = 0; | |
| var Seed_str = ''; | |
| var Seed = { | |
| /* Generate a random number, or perpetuate | |
| a pseudo-random seed if it is provided. */ | |
| random_int : function(seed_int){ | |
| var rand = 0; |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # I called it ~/bin/txt2qrs.sh but you can call it whatever you like. | |
| usage="USAGE:\n | |
| \t$0 path/to/file.txt [OPTIONS]\n | |
| OPTIONS:\n | |
| \t--help displays this message\n | |
| \t--size default 10\n | |
| \t--dpi default 300\n |
| /* Cookie or storage functions */ | |
| function storage_test(){ | |
| var test = 'test'; | |
| try { | |
| localStorage.setItem(test, test); | |
| localStorage.removeItem(test); | |
| return true; | |
| } catch(e) { | |
| return false; |
| #!/bin/bash | |
| # | |
| # encrypt-with-gpg | |
| # | |
| usage="$0 recipient path/to/plaintext/file.txt" | |
| if [ ! $# -eq 0 ] ; then | |
| if [ -z "$1" ] ; then |
| #!/bin/bash | |
| # | |
| # decrypt-with-gpg | |
| # | |
| usage="$0 path/to/encripted/file.txt" | |
| if [ ! $# -eq 0 ] ; then | |
| param=$1 |