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
# Compiled by Jack (Committing) | |
# https://gist.github.com/Committing/7bd55ff4615248b7cea0 | |
# GIT version: https://gist.github.com/Committing/24700559b3c05bdd2e3921c12c16f134 | |
################################# | |
## Target root files/folders | |
################################# | |
syntax: regexp |
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
import subprocess | |
print "" | |
print "Please type in server choice." | |
print "s1,s2,s4,s5,vm1,vm2,vm3,vm4,vm5,node,web etc..." | |
print "" | |
server = raw_input() | |
print "" | |
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
def addPerson(user_number): | |
print "Enter person #" + str(x) | |
name = raw_input('Enter name: ') | |
if name.isalpha() : | |
print "Name accepted" | |
else : | |
print "Please enter a valid name." | |
return False |
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
<?php | |
//https://steamtimeidler.com/tinderusernamechecker.php/tinderusernamechecker.php?usernames=test,life,thanks,fantast,helo,pro,wow,earth,eyybbwudup,hacker | |
$usernames = array(); | |
if (isset($_GET['usernames']) && !empty($_GET['usernames'])) { | |
$usernames = explode(',', $_GET['usernames']); |
NewerOlder