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']); |
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
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
# 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
<?php | |
$regex = '/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/'; | |
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
$(function() { | |
if (window.location.pathname == '/mytrades') { | |
function log_message(message, color) { | |
var sm = $('#submenu'); | |
sm.prepend('<strong style="border-top: 1px solid white;width:188px;display:inline-block;padding:8px 0 8px 10px;color:white;background-color: ' + color + ';">' + message + '</strong><br />'); | |
console.log(message); | |
$('title').html(message); |
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 | |
$res = file_get_contents('https://petition.parliament.uk/petitions/131215.json'); | |
$select = json_decode($res); | |
$output = array(); | |
$count = 0; |
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
{ | |
"auto_close_tags": false, | |
"auto_complete": false, | |
"disable_completions": true, | |
"scroll_past_end": true, | |
"tab_completion": false, | |
"word_separators": "./\\()\"'-:,.;<>~!@%^&*|+=[]{}`~?", | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true | |
"update_check": 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
alter table <some_table> convert to character set utf8 collate utf8_unicode_ci; |
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
/*! | |
* The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/) | |
* Copyright (c) 2016 Edson Hilios | |
* | |
* 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 | |
* the Software, and to permit persons to whom the Software is furnished to do so, | |
* subject to the following conditions: |
OlderNewer