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
// _ooOoo_ | |
// o8888888o | |
// 88" . "88 | |
// (| -_- |) | |
// O\ = /O | |
// ____/`---'\____ | |
// . ' \\| |// `. | |
// / \\||| : |||// \ | |
// / _||||| -:- |||||- \ | |
// | | \\\ - /// | | |
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 Foundation | |
// extension to String so that it supports Python-like substring extraction | |
extension String { | |
subscript(range: Range<Int>) -> String { | |
get { | |
let location = range._startIndex | |
let length = range._endIndex - range._startIndex + 1 | |
return self.bridgeToObjectiveC().substringWithRange(NSMakeRange(location,length)) | |
} |
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
Android | |
------- | |
- [Good interaction and use of Android OSS](https://github.com/stormzhang/9GAG) | |
- [Good interaction](https://github.com/Issacw0ng/Dribbo) | |
- [Android Open Source Projects](https://github.com/Trinea/android-open-project) | |
- [面部识别](https://github.com/Ajay191191/Opencv-Face-Recognition) | |
- [PC键盘向Android输入](https://github.com/buscode/WhatsInput) | |
- [Android OCR](http://blog.csdn.net/love_xsq/article/details/44616925) | |
Glass |
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
需要渔樵配合的 | |
------------- | |
#### Kickoff时间确定 #### | |
- 现在的Hao123停止开发时间确定(因为需要在现有Hao123上面进行修改) | |
- 能否7月14号开始 | |
#### KPI设定 #### | |
- 延续Hao123的KPI? - 即“新增用户4周留存率到20%” | |
#### 定义清楚权限 #### |
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
需要渔樵配合的 | |
------------- | |
#### Kickoff时间确定 #### | |
- 现在的Hao123停止开发时间确定 | |
- 是否7月7-12号内开始 | |
#### KPI设定 #### | |
- 延续Hao123的KPI? - 即“新增用户4周留存率到20%” | |
#### 权限定义清楚 #### |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
## | |
# this script serves to fetch all of a provider's feeds (a limit | |
# for the historical feeds would be 5000). and then the feeds are | |
# stored in mongodb | |
# | |
# @author Yuan JIN | |
# @contact chengudjin@gmail.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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
## | |
# this script serves to retrieve all the tweets of a user, and | |
# do some text mining based on the data | |
# | |
# @author Yuan JIN | |
# @contact chengdujin@gmail.com | |
# @since 2012.03.01 |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
## | |
# this script serves to grab the latest items in the hacker news | |
# stream, and store them into the mongodb | |
# | |
# @author Yuan JIN | |
# @contact chengdujin@gmail.com | |
# @since 2012.02.29 |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -* | |
## | |
# this script serves to monitor the registered user twitter account, | |
# and publish certain tweets back to the project blog | |
# | |
# @author Yuan JIN | |
# @contact chengdujin@gmail.com | |
# @since 2012.03.02 |