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 | |
set_time_limit(0); | |
class StrawPoll { | |
public function __construct() { | |
} | |
public function vote($id, array $votes, $amount = 10, $proxyList = null, $timeout = 5, $showErrors = true) { | |
$mh = curl_multi_init(); | |
$chs = array(); | |
if(is_file($proxyList)) { |
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
__ __.___ ___. | |
| | (_ ) \/ | | |
| | |/| \ / | | |
| | | |\/| | | |
| | | | | | | |
|__| |__| |__| | |
__ _______ ___ ____ ____ __ .__ __. _______ | |
| | | ____| / \ \ \ / / | | | \ | | / _____| | |
| | | |__ / ^ \ \ \/ / | | | \| | | | __ |
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
Roblox.Hack = { | |
original: 'missingno', | |
balance: 0, | |
initialized: 0, | |
loading: false, | |
items: [], | |
inventoryString: '<li class="list-item item-card ng-scope"><div class="item-card-container"><a class="item-card-link" href="%1" data-ytta-id="-"><div class="item-card-thumb-container"><div ng-hide="item.Product.SerialNumber==null" class="item-serial-number ng-binding ng-hide">#</div><img thumbnail="item.Thumbnail" image-retry="" class="item-card-thumb ng-isolate-scope" src="%2"></div><div class="text-overflow item-card-name ng-binding" title="%6 ">%6 </div></a><!-- ngIf: item.Item.AudioUrl --><div class="text-overflow item-card-creator"><span class="xsmall text-label">By</span> <a class="xsmall text-overflow text-link ng-binding" ng-href="%3" ng-hide="assetsListContent.assetItems.data.Data.PageType!==\'favorites\'&&currentData.category.name==\'Places\'&&(currentData.subcategory.name==\'My VIP Servers\'||currentData.subcategory.name==\'Other VIP Servers\')&&staticData.isOwnPage" href="%3" |
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
#! /usr/bin/env bash | |
# | |
# small script to send spam mails using mutt (excercise project for a course) | |
# @author: Lars Groeber | |
# | |
# Usage: | |
# SCRIPTNAME [-T %Y%m%d%H%M] [-t timeInterval-in-min] [-m maxMails] | |
# (-s subject,email,body) | (-f subject,file-with-emails,body) | |
# |