View gist:515ba8f0ba6bd6aabee7a6f0cc2a3eff
127.0.0.1 www.spankbang.com/ | |
127.0.0.1 http://spankbang.com/ | |
127.0.0.1 http://spankbang.com/74qv/video/faketaxi+vic+summers | |
127.0.0.1 spankbang.com/ | |
127.0.0.1 spankbang | |
127.0.0.1 http://spankbang.com/new_videos/2/ | |
127.0.0.1 http://www.spankbang.com | |
127.0.0.1 freeadultmedia.com | |
127.0.0.1 www.freeadultmedia.com | |
127.0.0.1 spankbang.com |
View cloudflare-ddns-update.sh
#!/bin/bash | |
# A bash script to update a Cloudflare DNS A record with the external IP of the source machine | |
# Used to provide DDNS service for my home | |
# Needs the DNS record pre-creating on Cloudflare | |
# Proxy - uncomment and provide details if using a proxy | |
#export https_proxy=http://<proxyuser>:<proxypassword>@<proxyip>:<proxyport> | |
# Cloudflare zone is the zone which holds the record |
View gist:7725ecf453c080c3eddbe7a9d4df7578
### Keybase proof | |
I hereby claim: | |
* I am ryaniskira on github. | |
* I am remilia_scarlet (https://keybase.io/remilia_scarlet) on keybase. | |
* I have a public key ASDPRfmczwiSY-d7G5__lY0HEenJZDa5-VKCQcBaK8ddwAo | |
To claim this, I am signing this object: |
View gist:aad2f0bc07ba3b3d49e4174bbcdd8a59
// Program to check whether an integer is positive or negative | |
// This program considers 0 as positive number | |
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
//Declare your variable with a meaningful name | |
int ?????; |