I hereby claim:
- I am gnilchee on github.
- I am gnilchee (https://keybase.io/gnilchee) on keybase.
- I have a public key whose fingerprint is 560E C47C A317 9EB1 2464 B925 8B8E DC3B 39CE 1964
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| from sklearn import tree | |
| ################### | |
| ## Texture | |
| # smooth = 1 | |
| # bumpy = 0 | |
| ## label | |
| # apple = 0 | |
| # orange = 1 | |
| ################## |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| import logging | |
| logging.getLogger("scapy.runtime").setLevel(logging.ERROR) | |
| from scapy.all import * | |
| from datetime import datetime, timedelta | |
| from twilio.rest import Client | |
| account_sid = "<twilio account sid>" | |
| auth_token = "<twilio auth token>" | |
| client = Client(account_sid, auth_token) |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| $script = <<SCRIPT | |
| # Installing required packages | |
| yum -y update | |
| yum install -y unzip curl wget vim-enhanced | |
| # Download Nomad | |
| NOMAD_VERSION=0.5.6 |
| # vault policy-write <policyname> production.hcl | |
| # vault token-create -display-name="Optional Display Name" -ttl=0 -no-default-policy -policy="<policyname>" |
| # apt-get install -y imagemagick tesseract-ocr tesseract-ocr-eng python-pip | |
| # pip install Image pytesseract | |
| # python convert.py 2 captcha.png captcha-clean.png | |
| # convert captcha-clean.png -resize 500 captcha-clean-big.png | |
| # tesseract -c tessedit_char_whitelist=abcdefghijklmnopqrstuvwxyz1234567890 -psm 7 captcha-clean-big.png output | |
| # cat output.txt |
| from slackclient import SlackClient | |
| from configparser import ConfigParser | |
| import random, time | |
| # Pulling in API Token | |
| config = ConfigParser() | |
| config.read('slack.conf') | |
| SLACK_TOKEN = config['slack']['SLACK_API_TOKEN'] | |
| # channel: A3X4APECJ |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "os/exec" | |
| ) | |
| func main() { | |
| var cmdName string = os.Args[1] |
| package main | |
| import ( | |
| "flag" | |
| "fmt" | |
| ) | |
| func main() { | |
| var ( | |
| secureAddress = flag.Bool("secure", false, "Set https as protocol") |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "os/exec" | |
| ) | |
| func main() { | |
| cmdName := "ps" |