I hereby claim:
- I am teward on github.
- I am teward (https://keybase.io/teward) on keybase.
- I have a public key ASByIImZ48E8hE9KsZw3KqqiqOK6PT4A5twbC8Saf_bWoAo
To claim this, I am signing this object:
require 'tumblr_client' | |
require 'mechanize' | |
require 'date' | |
require 'yaml' | |
require 'uri' | |
=begin | |
To configure: | |
1) Go to this URL: https://www.tumblr.com/oauth/apps |
Description: Add restrictions to prevent users from adding/removing servers and networks, both via *status and the webadmin. | |
Author: Thomas Ward <[email protected]> | |
Index: b/src/ClientCommand.cpp | |
=================================================================== | |
--- a/src/ClientCommand.cpp | |
+++ b/src/ClientCommand.cpp | |
@@ -466,6 +466,12 @@ | |
PutStatus("Total: " + CString(vChans.size()) + " - Joined: " + CString(uNumJoined) + | |
" - Detached: " + CString(uNumDetached) + " - Disabled: " + CString(uNumDisabled)); |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
import getpass | |
import subprocess as sp | |
import os | |
import glob | |
import random | |
import argparse | |
if __name__ == "__main__": |
#!/usr/bin/python3 | |
import imaplib | |
# If you need to use SSL/TLS encrypted secure connections, | |
# then set this to True | |
SSL_ENABLED = False | |
# Change this to be your IMAP server hostname. | |
IMAP_SERVER = 'hostname' |
#!/usr/bin/env perl | |
use Net::DNS; | |
my $uri; # preinitialize $uri for use later | |
if (@ARGV <= 0 || @ARGV > 1) { | |
my $arglen = @ARGV || 0; | |
warn "We require ONE argument to be provided, " + | |
"you provided ", $arglen, ".\n"; |