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
// https://bl.ocks.org/cjrd/raw/6863459/ | |
// draw your DAG, download the json | |
// authors: Cauê Felchar, José Henrique Roquette | |
g = <your json> | |
dag_all_paths = function(g,start,end){ | |
dict = new Map(); | |
dictname = new Map(); |
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/python3 | |
import sys | |
# utilização: | |
# chmod +x divider.py | |
# ./divider.py nome_do_arquivo_com_o_binario nome_do_arquivo_saida | |
# ou "python3 divider.py" etc | |
def main(args): | |
if len(args) > 2: | |
f = open(args[1],'r') |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
// return structure | |
struct str_explode_out { | |
size_t count; | |
char *strings[]; | |
}; |
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 | |
#mouse | |
synclient LeftEdge=1726 | |
synclient RigthEdge=4858 | |
synclient TopEdge=1577 | |
synclient BottomEdge=3665 | |
synclient FingerLow=25 | |
Synclient FingerHigh=30 | |
synclient MaxTapTime=180 | |
synclient MaxTapMove=192 |
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
#!/usr/bin/python3 | |
import requests,re,getpass,sys,base64,logging | |
logging.captureWarnings(True) | |
requests.packages.urllib3.disable_warnings() | |
url_utf = "https://1.1.1.1/login.html" | |
def login(ra,senha): | |
global dbg |
NewerOlder