I hereby claim:
- I am MarkSHarrison on github.
- I am markharrison (https://keybase.io/markharrison) on keybase.
- I have a public key whose fingerprint is 5CB3 4B51 8E24 C87E FD35 DBD1 EA2D 3C3A 07A5 DC93
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import sys | |
| def question_yes_no(question, default="yes"): | |
| """Asks yes/no question using input() function and returns the answer | |
| Args: | |
| str: "question" text presented to user | |
| str: "default" the presumed answer if the user just hits <Enter> | |
| Returns: |
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # pylint: disable=line-too-long | |
| def function_template(first_argument, second_argument=None, *args, **kwargs): | |
| """Summary description of function. | |
| Extended description of function. | |
| Args: |
| 1password | |
| android-file-transfer | |
| appcleaner | |
| applepi-baker | |
| arduino | |
| atom | |
| bankid | |
| beaconscanner | |
| blender | |
| brave |
| ack | |
| atk | |
| autoconf | |
| automake | |
| bash | |
| berkeley-db | |
| boost | |
| cairo | |
| cmake | |
| cppunit |
| spoof |
Install xz with homebrew:
brew install xz
Insert the SD and get the device name for the SD with df:
Filesystem 512-blocks Used Available Capacity iused ifree %iused Mounted on
/dev/disk1 487867392 157859992 329495400 33% 2352643 4292614636 0% /
devfs 373 373 0 100% 647 0 100% /dev
map -hosts 0 0 0 100% 0 0 100% /net
| // .stglobalignore | |
| // Syncthing Ignore Patterns - https://docs.syncthing.net/users/ignoring.html#patterns: | |
| // Useful .stignore Patterns - https://goo.gl/DVHI1h | |
| // Usage: Add the line below to all .stignore files for each Syncthing node | |
| // #include .stglobalignore | |
| // Incomplete Downloads | |
| // Firefox downloads | |
| *.part |
$ rm -rf .git
$ git init
$ git add .
$ git commit -m "Initial commit"
$ git remote add origin <github-uri>
$ git push -u --force origin master| #!/bin/sh | |
| # regenerate list of prime numbers to replace pre-generated list | |
| # marginally increases security of key exchange protocols | |
| # this will take hours or possibly days | |
| ssh-keygen -M generate -O bits=8192 moduli-8192-regenerated.candidates | |
| # verify regenerated list of primes are valid and not inherently weak | |
| ssh-keygen -M screen -f moduli-8192-regenerated.candidates moduli-8192 | |
| # replace the original /etc/ssh/moduli file | |
| cp moduli-8192 /etc/ssh/moduli | |
| rm moduli-8192 |