\n是换行符: 使用时需要放在字符串里面,成为字符串的一部分(不要嫌乱,这是我之前犯的错误)。 示例: >>>print("I am Guido \n what's yonr name?") >>>I am Guido >>>what's your name? \t是制表符: 使用时效果如下。 示例 ...
分类:
其他好文 时间:
2016-12-17 07:42:15
阅读次数:
142
Now, it's clear. OPPO R9s 这一刻 更清晰。 I want a new mobile phone, because the one I am using is broken. But I don't have enough money to buy one. What a p ...
分类:
其他好文 时间:
2016-12-16 01:30:07
阅读次数:
128
Git patch git format-patch [commid_start]…[commitid_end] 注意,commitid_end这次的提交并不会产生patch git am < XXXX.patch或者 git am * 打入路径内所有patch 为什么不使用review合入远程库? ...
分类:
其他好文 时间:
2016-12-14 14:17:57
阅读次数:
259
Q1: makefile.am 与 makefile.in是什么文件,干嘛用? 它对编译程序有用吗/ A1: 避免重复编译,减少等待时间之用。 A2: make install 时用 A3: automake 读取 Makefile.am 来产生 Makefile.in, configure 读取 ...
分类:
其他好文 时间:
2016-12-13 19:30:21
阅读次数:
185
本文转自:http://www.tech-coder.com/2015/07/how-to-add-new-table-in-nopcommerce.html Hey guys I am back after a long time near about 2 year. And hope my pr ...
分类:
其他好文 时间:
2016-12-13 19:19:04
阅读次数:
174
1.简单的linq语法 //1 var ss = from r in db.Am_recProScheme select r; //2 var ss1 = db.Am_recProScheme; //3 string sssql = "select * from Am_recProScheme"; ...
分类:
其他好文 时间:
2016-12-13 06:34:21
阅读次数:
185
I am trying to set up my spring boot application that authenticates its users using the jdbcAuthentication and the default database scheme provided in ...
分类:
数据库 时间:
2016-12-12 02:30:57
阅读次数:
1028
git pull 拉远程分支并合并到本地 git fetch 拉远程分支不做合并 忽略文件 .gitignore 添加文件 git add . 提交所有修改 git commit -am ‘备注信息’ 推送本地分支到仓库 git push origin master:master 删除远端分支 gi ...
分类:
其他好文 时间:
2016-12-11 01:22:54
阅读次数:
120