- 下载tiny-tiny-rss source code
cd ~/src/git
clone git://github.com/gothfox/Tiny-Tiny-RSS.git
- 创建openshift空间
cd ~/src/git
clone git://github.com/gothfox/Tiny-Tiny-RSS.git
#The Great Firewall (GFW) Contributors List
注:数据来源为 dblp 和 cndblp, 下面括号中的数字表示 dblp 中显示的跟方滨兴合作论文的数量
###Binxing Fang (方滨兴)
中国工程院院士,北京邮电大学教授,中国科学院计算技术研究所网络方向首席科学家
http://en.wikipedia.org/wiki/Fang_Binxing
#!/bin/bash | |
# Simple SSL forwarder designed for working with HTTPS in development | |
# With no arguments, it will create a self-signed certificate for | |
# localhost and forward SSL traffic on port 8443 to port 8000 | |
set -e | |
which openssl > /dev/null || ( | |
echo "openssl not installed, try: sudo apt-get install openssl" | |
exit 1 | |
) | |
which stunnel4 > /dev/null || ( |
#!/usr/bin/python | |
# Filename s5.py | |
# Python Dynamic Socks5 Proxy | |
# Usage: python s5.py 1080 | |
# Background Run: nohup python s5.py 1080 & | |
# Email: [email protected] | |
import socket, sys, select, SocketServer, struct, time | |
class ThreadingTCPServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer): pass |