---
# Python 简介
@su27 and @menghan
---
-
高级
-
易学易读易维护
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"; |
用 gist 做博客
def main():
print('hello world!')
if __name__ == '__main__':
main()
用 GeoJSON 画了一下山东地图,顺便标了一下我家的位置。
只是测试嵌入 HTML 而已。顺便探索一下 GitHub Gists 的可能性。
__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 |