Skip to content

Instantly share code, notes, and snippets.

View ChRriiZz's full-sized avatar

CHRISTIAN SANTILLAN ChRriiZz

View GitHub Profile
@mIcHyAmRaNe
mIcHyAmRaNe / api-proxy-list
Created May 1, 2019 22:52
get random proxy from proxy-list.download
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import requests
import random
rq = requests.get('http://www.proxy-list.download/api/v1/get?type=http&anon=elite').text.splitlines()
prox = random.choice(rq)
proxies = {
@JeppeLeth
JeppeLeth / android_demo_mode.sh
Created August 10, 2017 06:36
Android Demo mode activation using ADB
#!/bin/sh
CMD=$1
if [[ $ADB == "" ]]; then
ADB=adb
fi
if [[ $CMD != "on" && $CMD != "off" ]]; then
echo "Usage: $0 [on|off] [hhmm]" >&2
exit