This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Created on 2013-6-13 | |
@author: liushuai | |
''' | |
import time | |
badCharShift = {} | |
goodSuffixShift = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.net.UnknownHostException; | |
import com.mongodb.DB; | |
import com.mongodb.MongoClient; | |
import com.qingcong.mobile.constant.AppConfig; | |
public class MongoHelper { | |
private MongoClient mongoClient; | |
private DB db; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install make | |
sudo apt-get install tree | |
sudo apt-get install unzip | |
sudo apt-get install htop | |
sudo apt-get install ntp | |
sudo apt-get install g++ | |
sudo apt-get install libssl-dev | |
sudo apt-get install apache2 | |
sudo apt-get install git-core | |
git config --global user.name liushuaikobe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gevent.monkey | |
gevent.monkey.patch_all() | |
import time | |
import pymongo | |
connection = pymongo.Connection(use_greenlets=True) | |
def task(): | |
collection = connection.autoref.all_cars |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First install tmux | |
brew install tmux | |
# For mouse support (for switching panes and windows) | |
# Only needed if you are using Terminal.app (iTerm has mouse support) | |
Install http://www.culater.net/software/SIMBL/SIMBL.php | |
Then install https://bitheap.org/mouseterm/ | |
# More on mouse support http://floriancrouzat.net/2010/07/run-tmux-with-mouse-support-in-mac-os-x-terminal-app/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
# Get a datetime object | |
now = datetime.now() | |
# General functions | |
print "Year: %d" % now.year | |
print "Month: %d" % now.month | |
print "Day: %d" % now.day | |
print "Weekday: %d" % now.weekday() # Day of week Monday = 0, Sunday = 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from gevent import monkey; monkey.patch_all() | |
import gevent | |
import gevent.greenlet | |
from functools import partial | |
from random import random | |
import urllib | |
import urllib2 | |
def on_exception(fun, greenlet): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import webbrowser | |
import os | |
urls = [ | |
'http://www.douban.com', | |
'http://weibo.com', | |
'http://www.zhihu.com', | |
'http://www.v2ex.com/', | |
'https://github.com/', | |
'https://mail.google.com/', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function(req, res, db) { | |
db.collection("location").count(function(err, location_count){ | |
db.collection("actor").count(function(err, actor_count){ | |
db.collection("record").count(function(err, record_count){ | |
res.json({ | |
location_count: location_count, | |
actor_count: actor_count, | |
record_count: record_count | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
import time | |
dt = datetime(2015, 8, 1, 0, 0, 0, 0) | |
timestamp = (dt - datetime(1970, 1, 1)).total_seconds() | |
print timestamp |
OlderNewer