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 | |
| GIPHY_API_KEY = "dc6zaTOxFJmzC" # Giphy public beta API key | |
| def decode(s): | |
| """ | |
| Convert base62 (i.e. a-z,A-Z,0-9) to base 10 | |
| PILLAGED FROM https://gist.github.com/adyliu/4494223 | |
| """ | |
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
| Process: Python [45070] | |
| Path: /usr/local/Cellar/python/2.7.11/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python | |
| Identifier: Python | |
| Version: 2.7.11 (2.7.11) | |
| Code Type: X86-64 (Native) | |
| Parent Process: zsh [42784] | |
| Responsible: iTerm2 [289] | |
| User ID: 501 | |
| Date/Time: 2016-09-02 01:15:24.644 +0100 |
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
| ➜ gr-iridium git:(master) ✗ iridium-extractor -D 4 examples/hackrf.conf | |
| Mac OS; Clang version 7.0.0 (clang-700.0.72); Boost_105800; UHD_003.009.001-0-unknown | |
| gr-osmosdr v0.1.4-48-g86ad5842 (0.1.5git) gnuradio 3.7.8 | |
| built-in source types: file fcd rtl rtl_tcp uhd hackrf rfspace | |
| Using HackRF One with firmware 2014.08.1 | |
| (RF) Gain: 14.0 (Requested 10) | |
| BB Gain: 20.0 (Requested 20) | |
| IF Gain: 40.0 (Requested 40) |
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
| #!/bin/bash | |
| while read line; | |
| do | |
| if [[ "$line" == *"CLOSE" ]] | |
| then | |
| echo "CLOSE" | |
| gnome-screensaver-command -l | |
| elif [[ "$line" == *"OPEN" ]] | |
| then |
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 | |
| from collections import defaultdict | |
| csv_prefix = "https://research.google.com/youtube8m/csv" | |
| r = requests.get("{0}/verticals.json".format(csv_prefix)) | |
| verticals = r.json() | |
| block_urls = defaultdict(list) | |
| count = 0 |
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 React, { Component } from 'react'; | |
| import logo from './logo.svg'; | |
| import './App.css'; | |
| class Listing extends Component { | |
| constructor(params){ | |
| super(params); | |
| this.title = params.title; | |
| this.ups = params.ups; | |
| } |
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
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "github.com/elazarl/goproxy" | |
| "gopkg.in/h2non/filetype.v1" | |
| "log" | |
| "net/http" | |
| ) |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Printers] | |
| "ForceCSREMFDespooling"=dword:00000000 |
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 time | |
| import random | |
| from queue import Queue | |
| from multiprocessing import Process | |
| import os | |
| def produce_data(q): | |
| print("[+] Producer thread started (PID: {})".format(os.getpid())) | |
| while True: |
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
| from flask import Flask, request, Response, abort, send_from_directory | |
| from selenium import webdriver | |
| import sqlite3 | |
| import uuid | |
| app = Flask(__name__) | |
| conn = sqlite3.connect("screenshots.sqlite") | |
| c = conn.cursor() |