2019年11月4日

Mongodb笔记

摘要: Linux下启动/关闭Mongo服务 service mongod start service mongod stop 连接Mongo service mongod start mongo 阅读全文

posted @ 2019-11-04 10:39 达摩克利斯 阅读(86) 评论(0) 推荐(0) 编辑

2019年8月18日

TTL macro登陆linux服务器

摘要: ;log文件路径 logFilePath="C:\Users\18430\Desktop\java\logfiles" ;登陆user USERNAME = 'root' ;登陆密码 PASSWORD = '123456' ;连接登陆命令 COMMAND = '192.168.188.128' strconcat COMMAND ':22 /ssh /2 /auth=password /user= 阅读全文

posted @ 2019-08-18 20:08 达摩克利斯 阅读(282) 评论(0) 推荐(0) 编辑

2019年7月15日

c#笔记

摘要: ASP.NET: F5 debug启动服务 Ctrl+F5 不debug启动;清空缓存,可以在服务启动的时候改代码,Ctrl+Shift+B 重新编译即可 F5启动中转debug模式,使用attach to process (快捷键 Ctrl+Alt+P) C#快捷键 Ctrl+K+D 快速对齐代码 阅读全文

posted @ 2019-07-15 10:01 达摩克利斯 阅读(95) 评论(0) 推荐(0) 编辑

2019年6月17日

C#笔记

摘要: ide:visual studio 1.快捷键封装属性:ctrl+r+e 阅读全文

posted @ 2019-06-17 23:00 达摩克利斯 阅读(70) 评论(0) 推荐(0) 编辑

2019年3月17日

git merge

摘要: 步骤: 1.本地checkout为master分支 2.点击merge,选择要merge到master的分支 3.再push master分支 阅读全文

posted @ 2019-03-17 22:29 达摩克利斯 阅读(91) 评论(0) 推荐(0) 编辑

2019年3月14日

VBA练习题

摘要: 1.执行程序后,将B,C,D列非空行的A列值设为1 Sub test() Intersect(Columns(1), Range("B:D").SpecialCells(xlCellTypeConstants).EntireRow) = 1 2.VBA连接sql_server 阅读全文

posted @ 2019-03-14 23:42 达摩克利斯 阅读(569) 评论(0) 推荐(0) 编辑

2019年3月12日

DOS笔记

摘要: 1.统计文件中指定字符串个数: find /c "aiss" C:\Users\18430\Desktop\test\a.txt 2.for循环 根目录下 for /l %a in (1,1,10) do gpupdate/force && shutdown -r 3.for循环创建文件夹 for 阅读全文

posted @ 2019-03-12 22:40 达摩克利斯 阅读(149) 评论(0) 推荐(0) 编辑

2019年3月3日

卸载jdk

摘要: win10电脑之前安装过jdk10,需要卸载后装上jdk1.8。 1.用win10自带的软件工具进行卸载。 2.删除注册表:win+R ==> regedit ==> 删除 javasoft 文件夹 3.找到环境变量下的path下的javapath如:C:\Program Files (x86)\C 阅读全文

posted @ 2019-03-03 10:40 达摩克利斯 阅读(1493) 评论(0) 推荐(0) 编辑

SpringMVC框架@Resource注解报错

摘要: JDK10下@Resource注解报错,换成JDK1.8就可以了。 阅读全文

posted @ 2019-03-03 10:24 达摩克利斯 阅读(887) 评论(0) 推荐(0) 编辑

2019年1月25日

C语言小练习

摘要: //递归求数的阶乘 #include long recursion(int n); void main() { int n; long result; scanf("%d",&n); result=recursion(n); printf("%d!=%ld\n",n,result); } long recursion(int n) { long tmp_result; if(... 阅读全文

posted @ 2019-01-25 23:10 达摩克利斯 阅读(110) 评论(0) 推荐(0) 编辑

导航