I hereby claim:
- I am avarx on github.
- I am avarx (https://keybase.io/avarx) on keybase.
- I have a public key whose fingerprint is E043 7DD7 0B1D 7B8D 0F03 F69E 4EE1 E96E 5645 9B7E
To claim this, I am signing this object:
| import twitter | |
| ACCESS_KEY = 'xxxx' | |
| ACCESS_SECRET = 'xxxx' | |
| CONSUMER_KEY = 'xxxx' | |
| CONSUMER_SECRET = 'xxxx' | |
| t = twitter.Twitter(auth=twitter.OAuth(ACCESS_KEY, ACCESS_SECRET, CONSUMER_KEY, CONSUMER_SECRET)) | |
| def twitter_block_user(screen_name): |
| #!/bin/bash | |
| # The MIT License (MIT) | |
| # | |
| # Copyright (c) 2015 Philip Huppert | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| # this software and associated documentation files (the "Software"), to deal in | |
| # the Software without restriction, including without limitation the rights to | |
| # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| sudo nmap -sP 192.168.2.0/24 | awk '/^Nmap/{ip=$NF}/00:00:00/{print ip}' |
| import tweepy | |
| import json | |
| # Authentication details. To obtain these visit dev.twitter.com | |
| consumer_key = 'XXX' | |
| consumer_secret = 'XXX' | |
| access_token = 'XXX' | |
| access_token_secret = 'XXX' | |
| # This is the listener, resposible for receiving data |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # A simple script to backup an organization's GitHub repositories. | |
| GHBU_BACKUP_DIR=${GHBU_BACKUP_DIR-"github-backups"} # where to place the backup files | |
| GHBU_ORG=${GHBU_ORG-"<CHANGE-ME>"} # the GitHub organization whose repos will be backed up | |
| # (if you're backing up a user's repos instead, this should be your GitHub username) | |
| GHBU_UNAME=${GHBU_UNAME-"<CHANGE-ME>"} # the username of a GitHub account (to use with the GitHub API) | |
| GHBU_PASSWD=${GHBU_PASSWD-"<CHANGE-ME>"} # the password for that account | |
| GHBU_GITHOST=${GHBU_GITHOST-"github.com"} # the GitHub hostname (see comments) | |
| GHBU_PRUNE_OLD=${GHBU_PRUNE_OLD-true} # when `true`, old backups will be deleted |