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
jQuery(function($){ | |
$.ajax({ | |
type: 'GET', | |
url: '//remote.org/jsonp.php', | |
data: { | |
field: 'value' | |
}, | |
dataType: 'jsonp' | |
crossDomain: true, | |
}).done(function(response){ |
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
wget http://downloads.metasploit.com/data/releases/metasploit-latest-linux-x64-installer.run | |
chmod +x metasploit-latest-linux-x64-installer.run | |
sudo ./metasploit-latest-linux-x64-installer.run |
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
#!bin/bash | |
# Requires: youtube-dl (apt-get install) | |
# Usage: youtube-dl.sh < video-links.lst | |
while read line | |
do | |
youtube-dl $line --max-quality -t --write-info-json | |
done |
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
@midnight "sh /home/user/mysqldiff-backup.sh" |
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
from optparse import OptionParser | |
parser = OptionParser() | |
parser.set_defaults(verbose=True) | |
parser.add_option('-v','--video-id',dest='video') | |
(options, args) = parser.parse_args() | |
if options.video is None: | |
exit("-v, --video-id=NUM Bambuser.com Video ID i.e. http://bambuser.com/v/5029") | |
import urllib |
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
xargs curl -sw "%{url_effective},%{http_code},%{redirect_url}\\n" < urls.lst > urls.csv |
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
@hourly "sh ~/torrent-feeds.sh" # add this line by editing your cron jobs ("crontab -e") |
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 | |
/* Number Prefix Source: http://en.wikipedia.org/wiki/Telephone_numbers_in_Australia#Mobile_phone_numbers_.2804.29 */ | |
$mobile_prefixes = array('0400', '0401', '0402', '0403', '0404', '0405', '0406', '0407', '0408', '0409', '0410', '0411', '0412', '0413', '0414', '0415', '0416', '0417', '0418', '0419', '0420', '0421', '0422', '0423', '0424', '0425', '0427', '0428', '0429', '0430', '0431', '0432', '0433', '0434', '0435', '0437', '0438', '0439', '0440', '0446', '0447', '0448', '0449', '0488', '0450', '0451'); | |
foreach($mobile_prefixes as $mobile_prefix){ | |
for($number = 0; strlen($number) < 7; ++$number){ | |
echo $mobile_prefix.str_pad($number, 6, '0', STR_PAD_LEFT)."\n"; | |
} | |
} | |
?> |
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
// | |
// Thumbnails | |
// -------------------------------------------------- | |
// Note: `.thumbnails` and `.thumbnails > li` are overriden in responsive files | |
// Make wrapper ul behave like the grid | |
.thumbnails { | |
margin-left: -@gridGutterWidth; |
OlderNewer