摘要:
SERVER :Go to the folder where you want to create a new git source.And then runcd ~/Code/git initgit add *git commit -m "initial commit."git config -... 阅读全文
摘要:
配置pycharm远程连接,点击pycharm的tools,选择deployment选项,选择configuration。2点击左侧的加号按钮,新增一个连接,取个名字,根据个人配置选择协议,这里选择sftp。34填写完成之后,测试是否配置正确,点击Test SFTP connection5完成之后点... 阅读全文
摘要:
奇数行和偶数行合并为一行:Like:Sequence number: 5398Sequence name: Glyma.16G123500.1Sequence number: 5399Sequence name: Glyma.16G169500.1Sequence number: 5400Seque... 阅读全文
摘要:
git init # 初始化本地git仓库(创建新仓库)git config --global user.name "xxx" # 配置用户名git conf... 阅读全文
摘要:
注册时选择License serverhttp://idea.lanyus.com/然后点击OKPycharm --License serverhttp://idea.lanyus.com/ 阅读全文
摘要:
It is a easy problem.But we can have two ways to solve this problem.The first way is simulation that calculate each number repeatedly.The second way i... 阅读全文
摘要:
转自:http://codingstandards.iteye.com/blog/604541MySQL中导出CSV格式数据的SQL语句样本如下:select * from test_info into outfile '/tmp/test.csv' fields terminated by ','... 阅读全文
摘要:
转自:http://blog.chinaunix.net/uid-23284114-id-3196638.htmlMYSQL LOAD DATA INFILE命令可以把csv平面文件中的数据导入到数据库中。linux下:LOADDATA INFILE'/home/test/dump/ip_loca... 阅读全文
摘要:
转自:http://www.cnblogs.com/clover-toeic/p/3845210.html前言 良好的计时器可帮助程序开发人员确定程序的性能瓶颈,或对不同算法进行性能比较。但要精确测量程序的运行时间并不容易,因为进程切换、中断、共享的多用户、网络流量、高速缓存访问及转移预测等因素都... 阅读全文
摘要:
用bash脚本读文件的方法有很多。请看第一部分,我使用了while循环及其后的管道命令(|)(cat $FILE | while read line; do …),并在循环当中递增 i 的值,最后,我得到了非我所想的 i 。主要的原因是,管道命令会发起子shell来读取文件,而任何在(子shell的... 阅读全文