I hereby claim:
- I am agness on github.
- I am agness (https://keybase.io/agness) on keybase.
- I have a public key ASCewPLnhYvMovdLQJbXJsy7sUTpfleHvSb5PBzv1eaeMAo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
# Combines an array of image files into one bitmap with union (logical OR). | |
# Requirements | |
# pip3 install opencv-python | |
import cv2 | |
import numpy as np |
#!/usr/bin/env python3 | |
# Given an image file, splits into N bitmaps of identical dimensions, one each | |
# for each unique color in the input file. | |
# via https://stackoverflow.com/a/65392173 | |
# Requirements | |
# pip3 install opencv-python | |
import cv2 |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
""" | |
Very simple HTTP server in python. | |
Usage:: | |
./dummy-web-server.py [<port>] | |
Send a GET request:: | |
curl http://localhost |
Modified from the original at stonehippo/install_ruby_with_rbenv.md
If you're doing stuff with Ruby on a Mac, e.g. installling Jekyll or something, by default you'll end up having to use the sudo
command to do stuff, since the permission to modify the default config is not available to your user account.
This sucks and should be avoided. Here's how to fix that.
This is a suggested format; you may omit or add sections but are encouraged to follow this template.
Describe how you came up with your hypotheses and your reasons for choosing them.
State your hypotheses in sentence or question form (be clear and concise):
import csv | |
import numpy as np | |
import scipy as scipy | |
import re | |
from sklearn.feature_extraction.text import TfidfVectorizer | |
from nltk.stem import LancasterStemmer,SnowballStemmer | |
from nltk.stem.snowball import EnglishStemmer | |
from nltk import word_tokenize | |
from sklearn import preprocessing,metrics,cross_validation | |
from sklearn.cross_validation import StratifiedKFold |
.overlay { | |
-webkit-transition: all .3s; | |
-moz-transition: all .3s; | |
-ms-transition: all .3s; | |
-o-transition: all .3s; | |
transition: all .3s; | |
-webkit-transform: scale3d(0.1,0.1,1); | |
-moz-transform: scale3d(0.1,0.1,1); | |
-o-transform: scale3d(0.1,0.1,1); | |
transform: scale3d(0.1,0.1,1); |