Skip to content

Instantly share code, notes, and snippets.

View dogterbox's full-sized avatar
😴
Working from home

Teerapong Taengmuang dogterbox

😴
Working from home
View GitHub Profile
@bbengfort
bbengfort / sentiment.py
Last active December 27, 2022 05:17
An end-to-end demonstration of a Scikit-Learn SVM classifier trained on the positive and negative movie reviews corpus in NLTK.
import os
import time
import string
import pickle
from operator import itemgetter
from nltk.corpus import stopwords as sw
from nltk.corpus import wordnet as wn
from nltk import wordpunct_tokenize
@mishari
mishari / Thailand provinces abbreviation
Last active October 16, 2020 07:09
รายชื่อจังหวัดในประเทศไทย อักษรย่อไทย อักษรย่อโรมัน
กระบี่,กบ,KBI
กรุงเทพมหานคร,กทม,BKK
กาญจนบุรี,กจ,KRI
กาฬสินธุ์,กส,KSN
กำแพงเพชร,กพ,KPT
ขอนแก่น,ขก,KKN
จันทบุรี,จบ,CTI
ฉะเชิงเทรา,ฉช,CCO
ชลบุรี,ชบ,CBI
ชัยนาท,ชน,CNT
@clifford-github
clifford-github / gist:7748223
Last active July 31, 2024 09:16
Get list of Jobs in a View Groovy from within Jenkins. Run the following snippet in the Scripting console or a Groovy build step. The latter requires the installation of the Groovy plugin
hudson.model.Hudson.instance.getView('<VIEW>').items.each() {
println it.fullDisplayName
}
@mpuig
mpuig / gist:1582085
Created January 9, 2012 09:06
How to reduce color palette with PIL
import Image
im = Image.open('image.jpg')
# using Image.ADAPTIVE to avoid dithering
out = im.convert('P', palette=Image.ADAPTIVE, colors=5)
@almet
almet / gunicorn.conf.py
Created August 3, 2011 15:04
Or how to deploy a django application using nginx + gunicorn + supervisord
backlog = 2048
daemon = False
debug = True
workers = 3
logfile = "/usr/local/www/lolnet.org/reader/reader.gunicorn.log"
loglevel = "info"
bind = "unix:/usr/local/www/lolnet.org/reader/reader.gunicorn.sock"