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
uint8_t buf[8] = { | |
0 }; /* Keyboard report buffer */ | |
#define MINOR_PIN 5 | |
#define LF_PIN 6 | |
int pedal_state = 1; | |
int lf_state = 1; | |
void setup() |
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
import requests, json | |
from sys import argv | |
import argparse | |
plus_list = [] | |
def get_plus_accounts(loop): | |
global plus_list | |
i = 1 | |
while(loop>i): |
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
var wepquality; | |
var uselimit; | |
var prompttext; | |
var limitreset; | |
var intervalId = 1; | |
var side = 0; | |
var start = false; | |
var selectedbtn; | |
var hp = 100; |
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 | |
##################################################### | |
# USAGE # | |
# include(CreateAnonNickPass.php) # | |
# CreateAnonNickPass::getAnonNickPassword(); # | |
##################################################### | |
class SecureRandomException extends Exception { | |
} |
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
import java.security.MessageDigest; | |
import java.nio.charset.Charset; | |
public class checksumGenerator { | |
public static void main(String[] args) { | |
StringBuilder stringBuilder = new StringBuilder(); | |
String encodedstr = encodeFile("upload.jpg"); | |
stringBuilder.append(get()); | |
stringBuilder.append("|"); | |
stringBuilder.append("nick"); |
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
import java.math.BigInteger; | |
import java.security.MessageDigest; | |
import java.security.NoSuchAlgorithmException; | |
import java.security.SecureRandom; | |
import java.io.IOException; | |
import java.io.UnsupportedEncodingException; | |
public class CreateAnonNickPass { | |
public static void main(String[] args) { | |
String anonPass = (new BigInteger(200, new SecureRandom())).toString(32); |
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
var j, htmlstr; | |
var prompttext = ""; | |
var itemarray = Array(); | |
var intervalId = 1; | |
var itemquality = 1; | |
var selecteditemtype = null; | |
var itemtype = 1; | |
function post(e, t, n = "post") { | |
const o = document.createElement("form"); |
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
// ==UserScript== | |
// @name Equipment Manager | |
// @license MIT | |
// @version 1.1 | |
// @namespace localhost | |
// @author XianThi | |
// @description e-Sim Equipment Manager Tool (easy merge for now) | |
// @downloadUrl https://gist.github.com/XianThi/98f4ba3746211baf3b3ee21a97d504c9/raw/9ddb908576373f0a1c0d9fc427da01733d7a5e3b/eSim-EquManager.user.js | |
// @match https://*.e-sim.org/storage.html?storageType=EQUIPMENT* | |
// @require https://code.jquery.com/jquery-3.2.1.min.js |
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 | |
function crul($url,$header,$cookie_path,$post=false,$cookie=false){ | |
$ch = curl_init($url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLINFO_HEADER_OUT, true); | |
curl_setopt($ch, CURLOPT_HEADER, 1); | |
if($post !== false){ | |
curl_setopt($ch, CURLOPT_POSTFIELDS, $post); | |
} |
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
import requests | |
import random | |
import json | |
def gonder(): | |
cinsiyet = ['Erkek','Kadın'] | |
cinsiyet_sec = random.choice(cinsiyet) | |
yas = ['18-25','26-35','36-45','45 ve üstü'] | |
yas_sec = random.choice(yas) | |
medeni = ['Evli','Bekar'] | |
if yas.index(yas_sec)>0: |
NewerOlder