Skip to content

Instantly share code, notes, and snippets.

from geventwebsocket.handler import WebSocketHandler
from gevent.pywsgi import WSGIServer
from flask import Flask, request, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
upstream uwsgi {
ip_hash;
server 127.0.0.1:40000;
}
server {
listen 80;
server_name www.domain.com;
root /sites/mysite/;
access_log /sites/mysite/log/nginx/access.log;
@pinnokio
pinnokio / gist:8844203
Last active August 29, 2015 13:56
Textr error message
% fab newtest rebuild_db
[textr.no-ip.org:2229] Executing task 'rebuild_db'
[textr.no-ip.org:2229] run: mysql -uroot -e "drop database if exists textr_db;"
[textr.no-ip.org:2229] run: mysql -uroot -e "create database if not exists textr_db character set utf8 collate utf8_general_ci;"
[textr.no-ip.org:2229] run: python manage.py syncdb --noinput
[textr.no-ip.org:2229] out: Syncing...
[textr.no-ip.org:2229] out: Creating tables ...
[textr.no-ip.org:2229] out: Creating table auth_permission
[textr.no-ip.org:2229] out: Creating table auth_group_permissions
[textr.no-ip.org:2229] out: Creating table auth_group
(env)webmaster@textr:~/text/apps$ django-admin.py compilemessages
CommandError: This script should be run from the Django Git checkout or your project or app tree, or with the settings module specified.
(env)webmaster@textr:~/text/apps$ cd ../
(env)webmaster@textr:~/text$ django-admin.py compilemessages
CommandError: This script should be run from the Django Git checkout or your project or app tree, or with the settings module specified.
(env)webmaster@textr:~/text$ cd apps/
(env)webmaster@textr:~/text/apps$ django-admin.py makemessages -l en
CommandError: This script should be run from the Django Git tree or your project or app tree. If you did indeed run it from the Git checkout or your project or application, maybe you are just missing the conf/locale (in the django tree) or locale (for project and application) directory? It is not created automatically, you have to create it by hand if you want to enable i18n for your project or application.
(env)webmaster@textr:~/text/apps$

Mac OS X 10.10 Yosemite

Custom recipe to get OS X 10.10 Yosemite running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.

This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.

You are encouraged to fork this and modify it to your heart's content to match your own needs.

Install Software

filter {
grok {
match => [ "message", "%{TIMESTAMP_ISO8601:ts} \[%{USERNAME:spider}\] %{LOGLEVEL:level}: Crawled %{NUMBER:pages2:int} pages \(at %{NUMBER:pages_rate2:int%} pages/min\), scraped %{NUMBER:items2:int} items \(at %{NUMBER:items_rate2:int%} items/min\)" ]
}
}
{
"title": "Test1",
"services": {
"query": {
"list": {
"0": {
"query": "*",
"alias": "",
"color": "#7EB26D",
"id": 0,
{
"title": "Logstash Search",
"services": {
"query": {
"list": {
"0": {
"query": "{{ARGS.query || '*'}}",
"alias": "",
"color": "#7EB26D",
"id": 0,
***BACKEND PART***
sudo apt-get install -y --no-install-recommends \
bzr \
git \
mercurial \
subversion \
ca-certificates \
curl \
wget
# There was a day where I have too many color schemes in iTerm2 and I want to remove them all.
# iTerm2 doesn't have "bulk remove" and it was literally painful to delete them one-by-one.
# iTerm2 save it's preference in ~/Library/Preferences/com.googlecode.iterm2.plist in a binary format
# What you need to do is basically copy that somewhere, convert to xml and remove color schemes in the xml files.
$ cd /tmp/
$ cp ~/Library/Preferences/com.googlecode.iterm2.plist .
$ plutil -convert xml1 com.googlecode.iterm2.plist
$ vi com.googlecode.iterm2.plist