This file contains 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 | |
$page_max = 123; | |
$leadurl = ''; | |
$results = array(); | |
for ($page=1; $page<$page_max; $page++) { | |
$doc = new DOMDocument(); | |
$doc->loadHTML(file_get_contents($leadurl.$page)); | |
$elems = $doc->getElementsByTagName('div'); |
This file contains 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 convert_datetime($datetime, $dateonly = false) { | |
$values = explode(" ", $datetime); | |
$dates = explode("-", $values[0]); | |
$times = explode(":", $values[1]); | |
$newdate = mktime($times[0], $times[1], $times[2], $dates[1], $dates[2], $dates[0]); | |
$newdate2 = $_SERVER['REQUEST_TIME']-$newdate; | |
$newdate2+=DB_TIME_OFFSET; | |
if ($newdate2>172799 || $dateonly) | |
return date("F j, Y",$newdate); | |
else if ($newdate2>86399) |
This file contains 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 java.io.*; | |
import java.net.*; | |
import javax.net.ssl.*; | |
import java.security.cert.*; | |
class vshieldExportImport { | |
public static void main(String[] args) { | |
try { | |
String output = httpGet("https://10.x.x.x/api/2.0/app/firewall/datacenter-2/config?list=config"); | |
System.out.println(output); |
This file contains 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 smtplib | |
import os | |
import syslog | |
import requests | |
import subprocess | |
from email.mime.text import MIMEText | |
def alarmLocalHTTPPing(): | |
millis = requests.get("http://127.0.0.1").elapsed.microseconds # /1000 ? | |
if millis > 100: |
This file contains 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
""" | |
Python Bot Player | |
iann0036 2014 | |
http://www.miniclip.com/games/simon-says/en/#t-c-f-C | |
""" | |
import ImageGrab | |
import os | |
import time | |
import win32api, win32con |
This file contains 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
class MY_Cart extends CI_Cart { | |
private function _is_identical($a, $b) { | |
sort($a); | |
sort($b); | |
return $a == $b; | |
} | |
public function insert($data) { | |
foreach ($this->contents() as $item) { |
This file contains 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 pyautogui, time, sys, os, win32api, win32gui, win32con, datetime, pyHook, pythoncom | |
from optparse import OptionParser | |
''' | |
Python Automated Actions Script by Ian Mckay | |
Version 0.1 - 20151217 | |
''' | |
pyautogui.PAUSE = 0 | |
pyautogui.FAILSAFE = True |
This file contains 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
#!/bin/bash | |
echo -n "Enter your MySQL root password, followed by [ENTER]: " | |
read mysqlrootpwd | |
echo -n "Enter your remote hosts root password, followed by [ENTER]: " | |
read remoterootpwd | |
apt-get -y update; | |
apt-get -y upgrade; | |
apt-get -y install sshpass; |
This file contains 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 requests | |
import xml.etree.ElementTree | |
import pprint | |
import re | |
import os | |
import threading | |
base_address = "https://xxxxxxxxxxxxxxxx.cloudfront.net/" | |
def createAndOpen(filename): |
This file contains 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 os | |
from time import sleep | |
gpio_path = "/sys/class/gpio/" | |
with open(gpio_path + "gpio437/direction", 'w') as direction: | |
direction.write('out') | |
with open(gpio_path + "gpio443/direction", 'w') as direction: | |
direction.write('out') |
OlderNewer