Skip to content

Instantly share code, notes, and snippets.

View allen-munsch's full-sized avatar
⁉️

James allen-munsch

⁉️
View GitHub Profile
@allen-munsch
allen-munsch / gist:a52f024d32f300529747006c2c9dc632
Created July 4, 2018 00:16 — forked from mdbecker/gist:1309633
multiprocess && gevent example
from multiprocessing import Pool as MPool
from time import sleep
import datetime
import multiprocessing
import random
def time_request():
from gevent import monkey; monkey.patch_socket
from jsonrequester import JsonRequester
@allen-munsch
allen-munsch / ca.md
Created May 1, 2018 15:04 — forked from soarez/ca.md
How to setup your own CA with OpenSSL

How to setup your own CA with OpenSSL

For educational reasons I've decided to create my own CA. Here is what I learned.

First things first

Lets get some context first.

@allen-munsch
allen-munsch / sublime.md
Last active April 19, 2018 17:26
Open Sublime Text 3 in Terminal Mac OSX

open gui

open /Applications/Sublime\ Text.app

example usage:

@allen-munsch
allen-munsch / bash_get_repo.sh
Created April 2, 2018 15:30
clone github $USER repos
curl -s https://api.github.com/users/$USER/repos | python git_parse.py | xargs -I{} git clone {}