北京邮电大学计算机专业 2015 年应届硕士毕业生
- 手机:+86 188 1158 8071
- 邮箱:[email protected]
- 博客:http://yianbin.github.io
- 地址:北京市海淀区西土城路10号北京邮电大学学十公寓348室
| [alias] | |
| a = add | |
| aa = add -A # Stage all changes. | |
| amend = commit --amend | |
| ap = add -p # Stage changes chunk by chunk | |
| b = branch -v # Shorthand for branch (verbose) | |
| ba = branch -av | |
| c = commit | |
| ca = !git add -A && git commit # Commit all changes. |
| // ==UserScript== | |
| // @name AutoSign Userscript | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description 给兮兮写的签到签退代码 | |
| // @author Yanbin Ma ([email protected]) | |
| // @match https://web.jingoal.com/* | |
| // @grant none | |
| // @require https://cdn.bootcss.com/jquery/2.0.1/jquery.min.js | |
| // ==/UserScript== |
| #!/bin/sh | |
| #用户名及密码设置 | |
| USERNAME=2011110625 | |
| PASSWD=100016 | |
| URL_LOGIN=http://gw.bupt.edu.cn | |
| URL_LOGOUT=http://gw.bupt.edu.cn/F.htm | |
| URL_RELOGIN=http://gw.bupt.edu.cn/a11.htm |
| #!/usr/bin/env python | |
| """This Spider find the images on http://jandan.net/ooxx and | |
| download it to local directory""" | |
| import urllib | |
| import urllib2 | |
| import re | |
| # Edit this variant to name the download images |
北京邮电大学计算机专业 2015 年应届硕士毕业生
| abandon||抛弃 | |
| abandonment||放弃 | |
| abasement||滥用 | |
| abbreviation||缩写 | |
| abeyance||缓办 | |
| abide||遵守 | |
| ability||能力 | |
| abnormal||反常的 | |
| aboard||船上 | |
| abolish||废除 |
| Holy Bible, Authorized (King James) Version, Textfile 930105. | |
| Ge1:1 In the beginning God created the heaven and the earth. | |
| Ge1:2 And the earth was without form, and void; and darkness was upon the face of the deep. And the Spirit of God moved upon the face of the waters. | |
| Ge1:3 And God said, Let there be light: and there was light. | |
| Ge1:4 And God saw the light, that it was good: and God divided the light from the darkness. | |
| Ge1:5 And God called the light Day, and the darkness he called Night. And the evening and the morning were the first day. | |
| Ge1:6 And God said, Let there be a firmament in the midst of the waters, and let it divide the waters from the waters. | |
| Ge1:7 And God made the firmament, and divided the waters which were under the firmament from the waters which were above the firmament: and it was so. | |
| Ge1:8 And God called the firmament Heaven. And the evening and the morning were the second day. | |
| Ge1:9 And God said, Let the waters under the heaven be gathered together unto one place, and let the dry land a |
| #!usr/bin/python | |
| import urllib | |
| import urllib2 | |
| import re | |
| # Edit this variant to name the download images | |
| index = 6000 |
| ;;;====================================================== | |
| ;;; Cloud Identification Expert System | |
| ;;; | |
| ;;; A simple expert system which attempts to identify | |
| ;;; an cloud based on its characteristics. | |
| ;;; The knowledge base in this example is a | |
| ;;; collection of facts which represent backward | |
| ;;; chaining rules. CLIPS forward chaining rules are | |
| ;;; then used to simulate a backward chaining inference | |
| ;;; engine. |
| " The vim configuration file | |
| " | |
| " Author : Yanbin MA | |
| " Date : 2011-04-09 07:00 | |
| " Don't use vi-compatible mode | |
| set nocompatible | |
| " Set backspace config | |
| set backspace=indent,eol,start |