I hereby claim:
- I am codeartha on github.
- I am codeartha (https://keybase.io/codeartha) on keybase.
- I have a public key ASBHngdZop5X4FGSN8Zg8ic6y5MyHrGGFVNVnCU7O-95zwo
To claim this, I am signing this object:
| [general] | |
| targets = github_pawamoy | |
| shorten = True | |
| inline_links = False | |
| annotation_links = True | |
| annotation_comments = False | |
| legacy_matching = False |
| # Indentation suggestion from RayLuo for multiline lists, dicts, and functions arguments. | |
| my_dictionary = { # Don't think dict(...) notation has more readability | |
| "key1": 1, # Indent by one press of TAB (i.e. 4 spaces) | |
| "key2": 2, # Same indentation scale as above | |
| "key3": 3, # Keep this final comma, so that future addition won't show up as 2-lines change in code diff | |
| } # My favorite: SAME indentation AS ABOVE, to emphasize this bracket is still part of the above code block! | |
| the_next_line_of_code() # Otherwise the previous line would look like the begin of this part of code | |
| bad_example = { |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/dash | |
| echo "[INFO] Updating repository to latest version..." | |
| git pull | |
| echo "[INFO] Deobfuscating password files..." | |
| find . -type f -name "*.pass.asc" | gpg --yes --decrypt-files | |
| # Gets the number of files in the current directory + subdirectories that have a certain extension. | |
| ASC=`find . -type f -name "*.asc" | wc -l` | |
| PASS=`find . -type f -name "*.pass" | wc -l` |
| #!/bin/dash | |
| # Gets the number of files in the current directory + subdirectories that have a certain extension. | |
| PASS=`find . -type f -name "*.pass" | wc -l` | |
| ASC0=`find . -type f -name "*.asc" | wc -l` | |
| if [ "$PASS" != 0 ]; then | |
| # We use gpg to encrypt for ourself any file that contains password if they aren't already. | |
| # I take as a convention in this repository to name all files I want to encrypt with the .pass extension. | |
| # The encrypted version of said files will have the .pass.asc extension. |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object: