Skip to content

Instantly share code, notes, and snippets.

First there was: http://snipplr.com/view/15246/color-coded-svn-status

Then there was: http://snipplr.com/view/16540/color-coded-svn-status-v2

A few days ago, I found a handy script online that colorized the output of SVN status. It worked pretty well, but needed a little polish and a couple of tweaks to make it use more common Python idioms. As I continued to use it and fix bugs and inefficiencies, I ended up replacing nearly every line in the original, but it was still a great starting point.

Additional changes include ANSI word-wrapping, a configurable tab expansion feature (for better code alignment), the 'colorizedSubcommands' sequence so that only applicable commands get colorized, use of proper subprocess module calls so that piping through less will work (for example, try svn-color diff | less -r to see colorized diff output).

To use, stick it somewhere, make executable (`chmod 7

if (req.method === 'OPTIONS') {
console.log('!OPTIONS');
var headers = {};
// IE8 does not allow domains to be specified, just the *
// headers["Access-Control-Allow-Origin"] = req.headers.origin;
headers["Access-Control-Allow-Origin"] = "*";
headers["Access-Control-Allow-Methods"] = "POST, GET, PUT, DELETE, OPTIONS";
headers["Access-Control-Allow-Credentials"] = false;
headers["Access-Control-Max-Age"] = '86400'; // 24 hours
headers["Access-Control-Allow-Headers"] = "X-Requested-With, X-HTTP-Method-Override, Content-Type, Accept";
@yetone
yetone / _.md
Last active August 29, 2015 14:07
我的博客

用 gist 做博客

def main():
    print('hello world!')

if __name__ == '__main__':
    main()
@yetone
yetone / !.md
Last active August 29, 2015 14:07 — forked from wintercn/AsyncLisp.js
A async Lisp JavaScript implement

fork 自 wintercnGists

用 JavaScript 实现的异步的 Lisp。颇有意思,备份一下。

@yetone
yetone / !.md
Last active August 29, 2015 14:07
用 GeoJSON 画了一下山东省

GeoJSON 画了一下山东地图,顺便标了一下我家的位置。

@yetone
yetone / !.md
Last active August 29, 2015 14:07
嵌入 HTML

只是测试嵌入 HTML 而已。顺便探索一下 GitHub Gists 的可能性。

@yetone
yetone / !.adoc
Last active August 29, 2015 14:07
test

test

你好 世界

__author__ = 'yetone'
from twisted.internet import reactor
from scrapy import log, signals
from scrapy.crawler import Crawler
from scrapy.xlib.pydispatch import dispatcher
from scrapy.utils.project import get_project_settings
from araneae.spiders.aliexpress.item_list import ItemListSpider
@yetone
yetone / pipe.py
Last active August 29, 2015 14:15 — forked from kxxoling/pipe.py
class Pipe(object):
def __init__(self, func):
self.func = func
def __ror__(self, other):
def generator():
for obj in other:
if obj is not None:
yield self.func(obj)
return generator()
@yetone
yetone / pipe.py
Last active August 29, 2015 14:15 — forked from kxxoling/pipe.py
class Pipe(object):
def __init__(self, func):
self.func = func
def __ror__(self, other):
def generator():
for obj in other:
if obj is not None:
yield self.func(obj)
return generator()