This document has now been incorporated into the uWSGI documentation:
http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html
Steps with explanations to set up a server using:
原帖地址: http://topic.csdn.net/u/20110113/19/b0d5d506-4307-428b-a61d-7974aa66a2da.html | |
首先要说明的是:这里介绍的方法都是大部分是本人“悟”出来的,所以网上难有流传! | |
好方法不能自己私藏,否则就白忙乎这几天了,分享给有需要的朋友们。如果有转载,敬请注明来自*CSDN老邓*作品。 | |
呵呵,给自己打广告,实在是无耻之极,权当无聊之时打字之用。 | |
欢迎流传,为最优秀的分布式版本管理系统Git做宣传!! | |
步骤: | |
1. 下载:http://loaden.googlecode.com/files/gitconfig.7z | |
2. 解压到:<MsysGit安装目录>/cmd/,例如:D:\Program Files\Git\cmd |
#!/usr/bin/env python | |
# encoding: utf-8 | |
import os | |
import urllib2 | |
BASE_DIR = os.getcwd() | |
def read_file(path): |
//http://i.jd.com/js/userInfo.js | |
//获取购物行为 | |
$.ajax({ | |
type: "GET", | |
url : "/user/userinfo/getUserCredit.action", | |
timeout: 3000, | |
success: function (result) { | |
$("#userCredit").addClass("rank-sh rank-sh0"+result); | |
} | |
}); |
# aliyun apt source | |
# sudo sh -c 'echo "deb http://cn.archive.ubuntu.com/ubuntu/ trusty main restricted \n\ | |
# deb-src http://cn.archive.ubuntu.com/ubuntu/ trusty main restricted \n\ | |
# deb http://cn.archive.ubuntu.com/ubuntu/ trusty-updates main restricted \n\ | |
# deb-src http://cn.archive.ubuntu.com/ubuntu/ trusty-updates main restricted \n\ | |
# deb http://cn.archive.ubuntu.com/ubuntu/ trusty universe \n\ | |
# deb-src http://cn.archive.ubuntu.com/ubuntu/ trusty universe \n\ | |
# deb http://cn.archive.ubuntu.com/ubuntu/ trusty-updates universe \n\ | |
# deb-src http://cn.archive.ubuntu.com/ubuntu/ trusty-updates universe \n\ | |
# deb http://cn.archive.ubuntu.com/ubuntu/ trusty multiverse \n\ |
set nocompatible " Don't be compatible with vi | |
let mapleader="," " change the leader to be a comma vs slash | |
command! W :w | |
cmap W! w !sudo tee % >/dev/null | |
map <silent> <leader>V :source ~/.vimrc<CR>:filetype detect<CR>:exe ":echo 'vimrc reloaded'"<CR> |
request = require('request') | |
cheerio = require('cheerio') | |
async = require('async') | |
URL = process.argv[2] or 'http://127.0.0.1:3000/' | |
crawler = (url) -> | |
console.log 'crawler', url | |
request url, (err, res, body) -> | |
if err |
var ip; | |
ip = {}; | |
ip.toLong = function toInt(ip){ | |
var ipl=0; | |
ip.split('.').forEach(function( octet ) { | |
ipl<<=8; | |
ipl+=parseInt(octet); | |
}); |
readline = require('readline') | |
fs = require('fs') | |
rl = readline.createInterface( | |
input: fs.createReadStream('sample.txt') | |
) | |
rl.on 'line', (line) -> | |
console.log 'Line from file:', line | |
return |