start new:
tmux
start new with session name:
tmux new -s myname
<?php | |
/* | |
Levi Thornton from boogybonbon and wordze generously posted his php Markov | |
Chain class.. unfortunately there is a missing $nn++ thus the class can hang, | |
the working version is below all credit to Levi for the code, i just fixed a | |
bug. | |
Example Usage: | |
------------------ |
<?xml version="1.0" encoding="UTF-8"?> | |
<yahoo-weather-codes> | |
<code number="0" description="tornado"/> | |
<code number="1" description="tropical storm"/> | |
<code number="2" description="hurricane"/> | |
<code number="3" description="severe thunderstorms"/> | |
<code number="4" description="thunderstorms"/> | |
<code number="5" description="mixed rain and snow"/> | |
<code number="6" description="mixed rain and sleet"/> | |
<code number="7" description="mixed snow and sleet"/> |
#!/usr/bin/env bash | |
# Usage: {script} [ OPTIONS ] TARGET VERSION | |
# | |
# TARGET Default target is "/usr/local". | |
# VERSION If not defined tries to get the build into the Sublime Text 2 website. | |
# | |
# OPTIONS | |
# | |
# -h, --help Displays this help message. | |
# |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>WebSocket Client</title> | |
<style> | |
#output { | |
border: solid 1px #000; | |
} | |
</style> | |
</head> |
#!/usr/bin/python2.7 | |
#-*- coding=utf-8 -*- | |
import shlex | |
import subprocess | |
from tornado.gen import coroutine, Task, Return | |
from tornado.process import Subprocess | |
from tornado.ioloop import IOLoop | |
@coroutine |
# coding: utf-8 | |
# | |
# Copyright (c) Alexandr Emelin. BSD license. | |
# All rights reserved. | |
# | |
""" | |
class GithubAuthHandler(BaseHandler, auth.GithubMixin): | |
x_site_token = 'application' |
from argparse import ArgumentParser | |
import requests | |
from bs4 import BeautifulSoup | |
def parse_sitemap(url): | |
resp = requests.get(url) | |
# we didn't get a valid response, bail | |
if 200 != resp.status_code: | |
return False |
import unicodecsv | |
from django.http import HttpResponse | |
def export_as_csv_action(description="Export selected objects as CSV file", | |
fields=None, exclude=None, header=True): | |
""" | |
This function returns an export csv action | |
'fields' and 'exclude' work like in django ModelForm | |
'header' is whether or not to output the column names as the first row | |
""" |
This is a set up for projects which want to check in only their source files, but have their gh-pages branch automatically updated with some compiled output every time they push.
You want a script that does a local compile to e.g. an out/
directory. Let's call this compile.sh
for our purposes, but for your project it might be npm build
or gulp make-docs
or anything similar.
The out/
directory should contain everything you want deployed to gh-pages
. That almost always includes an index.html
.