I got this image from here http://placeimg.com/
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
from requests import Session # pip install requests | |
from signalr import Connection # pip install signalr-client | |
def handle_received(**kwargs): | |
print('received', kwargs) | |
def print_error(error): | |
print('error: ', error) | |
##Date and Time
=TIMEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " ")) + DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Date
=DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Time
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
# WeChat aud file converter to wav files | |
# Dependencies: | |
# SILK audio codec decoder (available at https://github.com/gaozehua/SILKCodec) | |
# ffmpeg | |
# | |
# By Gabriel B. Nunes ([email protected]) | |
# Adapted from another script by Nicodemo Gawronski ([email protected]) | |
# | |
import os, argparse, subprocess |
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 datetime | |
import hashlib | |
import hmac | |
import random | |
import string | |
import time | |
import unirest as unirest | |
key = "da01c7e1f0dc4f166c6aa3d56add3293" | |
secret = "XXXXXXXXXXXXXXXXXXXXXXXXXX" |
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
# MAC ADDRESS SPOOFER | |
MAC="" | |
for i in {0..5}; do | |
VAL=$RANDOM | |
PART=$(printf "%2X" $VAL) | |
MAC+=$(printf "%.2s" $PART) | |
if [ $i -lt 5 ] |
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 string, random | |
#User | |
print('USERNAME - ' + 'beanon' + '-' + ''.join(random.choice(string.digits) for i in range(4)) + ''.join(random.choice(string.ascii_lowercase) for i in range(4)) + ''.join(random.choice(string.ascii_uppercase) for i in range(4))) | |
#Pass | |
print('PASSWORD - ' + ''.join(random.choice(string.digits) for i in range(5)) + ''.join(random.choice(string.ascii_lowercase) for i in range(5)) + ''.join(random.choice(string.ascii_uppercase) for i in range(5))) |
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
#! /bin/bash | |
# The approx. time to run this script is 145 ms. | |
# First we extract the private PEM key from the .p12 file: | |
# openssl pkcs12 -nocerts -passin 'notasecret' -in file.p12 -out ~/google/google.privatekey.pem | |
KEY='~/google/google.privatekey.pem' | |
# The fields are ordered by their hash values. | |
# In Google Client for Java HashMap is used to stack all JSON fields, so String.hashCode() is used for ordering. |
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 | |
namespace Hitbtc; | |
/** | |
* show off @method | |
* | |
* @method string balance() balance( array $params ) | |
* @method string ordersActive() ordersActive( array $params ) | |
* @method string new_order() new_order( array $params ) | |
* @method string cancel_order() cancel_order( array $params ) | |
* @method string trades() trades( array $params ) |
NewerOlder