| What | Signup form |
|---|---|
| MSL/Site Lead | https://malfare.typeform.com/to/IvEbiT |
| Nomad | https://malfare.typeform.com/to/YIiWkO |
| Interpreter/Driver | https://malfare.typeform.com/to/tluV9Q |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| May-06 | 20 | |
|---|---|---|
| Jun-06 | 18 | |
| Jul-06 | 9 | |
| Aug-06 | 28 | |
| Sep-06 | 43 | |
| Oct-06 | 14 | |
| Nov-06 | 22 | |
| Dec-06 | 14 | |
| Jan-07 | 29 | |
| Feb-07 | 39 |
Send mail as foo@example.org
| service | instructions |
|---|---|
| Gmail-1 | https://support.google.com/mail/answer/22370?hl=en |
| Gmail-2 | http://ellisbenus.com/web-design-columbia-mo/workaround-using-gmail-alias-forwarded-email-addresses/ |
| Live/Outlook.com | http://windows.microsoft.com/en-us/windows/outlook/add-alias-account |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| awk '{print $NF}' addressbook.csv | head | while read L; do gpg --keyserver pgp.mit.edu --search-keys ${L}; done |
I hereby claim:
- I am adamamyl on github.
- I am adamamyl (https://keybase.io/adamamyl) on keybase.
- I have a public key whose fingerprint is F342 2EB6 5394 A8B5 0C3A 6EC4 B20F 50D4 855B 3066
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # allow-ssh-host: | |
| # | |
| # Copyright (c) 2016 root. All rights reserved. | |
| # | |
| # | |
| # $Id:$ | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| listen smtp :2525 | |
| mode tcp | |
| option tcplog | |
| balance roundrobin | |
| # Use the local address to avoid having to change exim configs | |
| # config for woolf (=lists.no2id.net) | |
| server woolf 127.0.0.1:25 check weight 10 | |
| server bingham 93.93.131.141:25 check weight 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Route via HAProxy | |
| SMTPHOST = 'localhost' | |
| SMTPPORT = 2525 # default from smtplib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # diskcheck-on-reboot: | |
| # | |
| # Copyright (c) 2012 root. All rights reserved. | |
| # | |
| # | |
| # $Id$ | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # nabbed from http://osxdaily.com/2011/08/04/enable-key-repeat-mac-os-x-lion/ | |
| defaults write -g ApplePressAndHoldEnabled -bool true |