Pinned Repositories
buptmuye.github.io
CppPrimer
:books: C++ Primer 5 exercise answers.
decode_puzzle
电脑上的每个字符都有一个唯一编码,通用的标准是ASCII (American Standard Code for Information Interchange 美国信息交换标准编码)。例如大写A = 65, 星号(*) = 42,小写k = 107。一种现代加密方法是用一个密钥中的给定值,与一个文本文件中字符的ASCII值进行异或。使用异或方法的好处是对密文使用同样的加密密钥可以得到加密前的内容。例如,65 XOR 42 = 107, 然后 107 XOR 42 = 65。对于不可攻破的加密,密钥的长度与明文信息的长度是一样的,而且密钥是由随机的字节组成的。用户将加密信息和加密密钥保存在不同地方,只有在两部分都得到的情况下,信息才能被解密。不幸的是,这种方法对于大部分用户来说是不实用的。所以一种修改后的方案是使用一个密码作为密钥。如果密码比信息短,那么就将其不断循环直到明文的长度。平衡点在于密码要足够长来保证安全性,但是又要足够短使用户能够记得。
flasky
Companion code to my O'Reilly book "Flask Web Development".
front_bak
frontpage bakup
hanting
聚场网微信登录, demo地址 http://ijuchang.net/auth/login
MULTIFLOW
MPTCP Subflows Routed Through Disjointed Paths by using its receiver tokens. Everything in an OpenFlow controller.
OF-Airplay
A project to allow secure AirPlay connectivity between devices using OpenFlow
ofmobility
Automatically exported from code.google.com/p/ofmobility
oh-my-zsh
A delightful community-driven framework for managing your zsh configuration. Includes 180+ optional plugins (rails, git, OSX, hub, capistrano, brew, ant, php, python, etc), over 120 themes to spice up your morning, and an auto-update tool so that makes it easy to keep up with the latest updates from the community.
buptmuye's Repositories
buptmuye/decode_puzzle
电脑上的每个字符都有一个唯一编码,通用的标准是ASCII (American Standard Code for Information Interchange 美国信息交换标准编码)。例如大写A = 65, 星号(*) = 42,小写k = 107。一种现代加密方法是用一个密钥中的给定值,与一个文本文件中字符的ASCII值进行异或。使用异或方法的好处是对密文使用同样的加密密钥可以得到加密前的内容。例如,65 XOR 42 = 107, 然后 107 XOR 42 = 65。对于不可攻破的加密,密钥的长度与明文信息的长度是一样的,而且密钥是由随机的字节组成的。用户将加密信息和加密密钥保存在不同地方,只有在两部分都得到的情况下,信息才能被解密。不幸的是,这种方法对于大部分用户来说是不实用的。所以一种修改后的方案是使用一个密码作为密钥。如果密码比信息短,那么就将其不断循环直到明文的长度。平衡点在于密码要足够长来保证安全性,但是又要足够短使用户能够记得。
buptmuye/flasky
Companion code to my O'Reilly book "Flask Web Development".
buptmuye/buptmuye.github.io
buptmuye/CppPrimer
:books: C++ Primer 5 exercise answers.
buptmuye/front_bak
frontpage bakup
buptmuye/hanting
聚场网微信登录, demo地址 http://ijuchang.net/auth/login
buptmuye/MULTIFLOW
MPTCP Subflows Routed Through Disjointed Paths by using its receiver tokens. Everything in an OpenFlow controller.
buptmuye/OF-Airplay
A project to allow secure AirPlay connectivity between devices using OpenFlow
buptmuye/ofmobility
Automatically exported from code.google.com/p/ofmobility
buptmuye/oh-my-zsh
A delightful community-driven framework for managing your zsh configuration. Includes 180+ optional plugins (rails, git, OSX, hub, capistrano, brew, ant, php, python, etc), over 120 themes to spice up your morning, and an auto-update tool so that makes it easy to keep up with the latest updates from the community.
buptmuye/tango_with_django_17
The new version of rango in django 1.7 from www.tangowithdjango.com
buptmuye/tango_with_django_book
buptmuye/test
test git
buptmuye/tornado
Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.