Skip to content

Instantly share code, notes, and snippets.

View mannynotfound's full-sized avatar

Manny404 mannynotfound

View GitHub Profile
for i in {1..40}; do
curl -s -o /dev/null -w "%{http_code}\n" \
https://www.yourapp.com/product/sample-product-slug/ &
done
wait
@mannynotfound
mannynotfound / face_replace.py
Created April 5, 2016 05:24 — forked from robertskmiles/face_replace.py
A script to automatically replace faces in group photos
#!/usr/bin/python
# face_replace.py
# Usage: python face_replace.py <image_file> [face index]
import sys
from opencv.cv import *
from opencv.highgui import *
from PIL import Image, ImageEnhance
import random