学生:
student@test.com
密码: 123
教师:
teacher@test.com
密码: 123
学生:
student@test.com
密码: 123
教师:
teacher@test.com
密码: 123
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = pavan.sss1991@gmail.com | |
| [core] | |
| editor = vim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| excludesfile = ~/.gitignore | |
| [sendemail] | |
| smtpencryption = tls | |
| smtpserver = smtp.gmail.com |
| # -*- coding: utf-8 -*- | |
| from twisted.internet.task import LoopingCall | |
| class Countdown(object): | |
| _instances = set() | |
| def __init__(self, count_to): | |
| self.counter = count_to |
du -hs /path/to/directory
summarizes disk usage of a directory
lsb_release -a
check ubuntu version
sudo /etc/init.d/nscd restart
| [user] | |
| name = XiaochenCui | |
| email = jcnlcxc@163.com | |
| [push] | |
| default = simple | |
| [credential] | |
| helper = store | |
| [alias] | |
| lg = log --color --graph --pretty=format:'%Cred%h%Creset %C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
| co = checkout |
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| """ | |
| @version: 1.0 | |
| @author: Mark Tao | |
| @contact: urtop@qq.com | |
| @file: multi_download.py | |
| @time: 2015/11/1 19:55 | |
| """ | |
| from multiprocessing.dummy import Pool as ThreadPool |