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
Name: Flash | |
Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc= | |
if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676 | |
Thank you! |
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
javascript:( | |
function() { | |
var pb; | |
pb = document.getElementsByTagName("video")[0]; | |
var speed; | |
speed = prompt('Playback Speed? (Current Speed: ' + pb.playbackRate + ')'); | |
if(speed > 0) { | |
pb.playbackRate = speed; | |
} | |
} |
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 logging | |
import logging.handlers | |
MAILHOST = 'imap.gmail.com' | |
FROM = '***@gmail.com' | |
TO = ['***@gmail.com' ,'**** '] | |
# SUBJECT = 'Test Logging email from Python logging module (buffering)' | |
PASSWORD = '****' | |
# logging_example.py |
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
Modified the imap-monitor script from https://gist.github.com/shimofuri/4348943 for Python3, | |
not using eventlet, just IMAPClient and requests (installed with pip) | |
This version is specifically for OSTicket, it grabs the email as-is and post to OSTicket, | |
so that tickets can be generated from emails ASAP. |
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 | |
echo '<html><head><title>Mega downloader</title></head><body><h2>Enter Url</h2><form action="mega.php" method="POST"> <br> URL: <input type="text" name="URL"> <br><input type="submit" value="Submit"></form>'; | |
if ($_POST) { | |
error_reporting(0); | |
$url = $_POST['URL']; | |
preg_match("/!(.+?)!/", $url, $output_array); |