Skip to content

Instantly share code, notes, and snippets.

View Toyz's full-sized avatar

Helba Toyz

View GitHub Profile
#define WIN32_LEAN_AND_MEAN
#define _WIN32_WINNT 0x0500
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <conio.h>
#include <string.h>
#include <windows.h>
@Toyz
Toyz / bot.py
Last active November 1, 2016 22:09
import time
import urllib2
import json
import threading
def worker():
orginal = -1
while True:
req = urllib2.Request('https://lumerico.mx/api/')
req.add_header('Content-Type', 'application/json')
@Toyz
Toyz / amic.py
Last active October 18, 2016 18:13
import urllib2
import time
previous = -1
def main():
while True:
GetData()
time.sleep(30)
def GetData():
@Toyz
Toyz / maps.ow
Last active November 24, 2016 19:29
OverTool v1.8.4.11
Initializing CASC...
Mapping...
Adding Encryption Keys...
Added Encryption Key 6DD3212FB942714A
Tooling...
AUTOMATION ARENA
ID: 000001C2
State: DEFEND
@Toyz
Toyz / chars.ow
Last active November 24, 2016 19:22
OverTool v1.8.4.11
Initializing CASC...
Mapping...
Adding Encryption Keys...
Added Encryption Key 6DD3212FB942714A
Tooling...
Cosmetics for Widowmaker in package 06E00000011CD48E
ACHIEVEMENT (4 items)
Pixel (Common Spray)
Cute (Common Spray)
@Toyz
Toyz / strings.ow
Last active November 24, 2016 19:28
OverTool v1.8.4.11
Initializing CASC...
Mapping...
Adding Encryption Keys...
Added Encryption Key 6DD3212FB942714A
Tooling...
0000000001B4.07C: RIP-Tire
00000000140B.07C: Steel Trap
000000001D0F.07C: Concussion Mine
0000000029BA.07C: Heroic
<?php
class YoutubeEmbed extends JBBCode\CodeDefinition {
public function __construct()
{
parent::__construct();
$this->setTagName("youtubeEmbed");
}
<?php
namespace Controllers\EventEngine;
class EventHandler
{
private static $EventPool = [];
public static function CreatePool($poolName){
if(array_key_exists($poolName, self::$EventPool))
<?php
namespace Controllers;
class StaticFileHandler {
private $basePath;
private $loadedFiles;
function __construct($basePath)
@Toyz
Toyz / c.cpp
Last active August 29, 2015 14:27
// list::sort
#include <iostream>
#include <list>
#include <string>
#include <cctype>
// comparison, not case sensitive.
bool compare_nocase (const std::string& first, const std::string& second)
{
unsigned int i=0;