-
Grammarly for writing
GrammlyA plugin help you better writing. Grammly DocumentSave Your Valuable TimeGrammarly significantly cuts down on all the extra time you spend rereading and rewriting by focusing you on where your writing needs work.Write Effectively TodayDangl...…
-
Office software
commercial software Microsoft OfficeMicrosoft Office is a family of client software, server software, and services developed by Microsoft. It was first announced by Bill Gates on August 1, 1988, at COMDEX in Las Vegas. Initially a marketing term ...…
-
How to use the ubuntu for GPU server
窗口操作:创建窗口: screen -S xxx (screen’s name)激活窗口: screen -r xxx (screen’s name)查看窗口序列: screen -ls退出窗口: Ctrl + A + Dkill窗口: screen -S screenname -X quit screen -S yourname -> 新建一个叫yourname的session screen -ls -> 列出当前所有的session screen -r yourna...…
-
beamer for powerpoint
example for beamer\documentclass{beamer}\usepackage[english]{babel} \%如果去掉,中英混合会出错\usepackage[noindent]{ctex} \%可使用 \usepackage{CJK}\usepackage{beamerthemesplit}\% Or whatever. Note that the encoding and the font should match. If T1\% does not...…
-
Template
…
-
yield for python
a example of codedef fun(): for i in range(20): x = yield i print('good', x, i)if __name__ == '__main__': a = fun() a.__next__() a.__next__() x1 = a.send(5) x2 = a.send(3) next(a) next(a) print(x1, x2)resul...…
-
A script for download all papers on ICML conference
script code# coding=utf-8from multiprocessing import Poolimport requestsfrom bs4 import BeautifulSoupimport tracebackimport reimport osimport pdbprefix = 'http://proceedings.mlr.press/v80/'save_dir = 'icml2018'def get_pdf(data): href, title = d...…
-
at for python
a example of codedef func1(a): def b(*args, **kwargs): print('a = ', a) output = a(*args, **kwargs) output = output ** 2 print('func1 =', output) return output return b@func1def func2(b): output = b + 2...…
-
curl
command line tool and library for transferring data with URLsSupportsDICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, Telnet and TFTP. curl supports SSL certificates,...…
-
GNU Wget
Introduction to GNU WgetGNU Wget is a free software package for retrieving files using HTTP, HTTPS, FTP and FTPS the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs,...…