I hereby claim:
- I am cauefcr on github.
- I am cauefcr (https://keybase.io/cauefcr) on keybase.
- I have a public key ASBqn10WBtpgxfG6RQSYPk9g6VhLCVCDzXpgBhrZ7VNGjwo
To claim this, I am signing this object:
| #!/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 |
| #!/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 |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| // return structure | |
| struct str_explode_out { | |
| size_t count; | |
| char *strings[]; | |
| }; |
| #!/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') |
| // 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(); |
| package main | |
| import ( | |
| "fmt" | |
| "image" | |
| "log" | |
| "os" | |
| "path/filepath" | |
| "strconv" | |
| "strings" |
| package main | |
| import "net/http" | |
| import "os" | |
| func main() { | |
| fs := http.FileServer(http.Dir(os.Args[1])) | |
| http.Handle("/", http.StripPrefix("/", fs)) | |
| http.ListenAndServe(":"+os.Args[2], nil) |
I hereby claim:
To claim this, I am signing this object:
| const main = () => { | |
| var toSource = require("tosource-polyfill"); | |
| console.log(toSource(main)+";\nmain();"); | |
| }; | |
| main(); |
| "use strict"; | |
| const pretty = require('js-object-pretty-print').pretty; | |
| // Object.prototype.toString = function() { return pretty(this); }; | |
| const esprima = require('esprima'); | |
| const fs = require("fs"); | |
| const toSource = require("tosource"); | |
| const olhada = (coisa) => { | |
| console.log(pretty(coisa)); | |
| return coisa; |