摘要: Java用三个关键字在类的内部设定边界: public、private、protected public 和 private 好说。顾名思义,分别是public - 任何人都能访问,private - 创建者和内部方法才能访问。 protected和private之间的差别仅在于,继承的类能访问pr 阅读全文
posted @ 2019-01-07 20:59 huanlegu0426 阅读(198) 评论(0) 推荐(0) 编辑
摘要: git notes Maven command Splunk search script # normal search index=opd_raw sourcetype=volserver_debug #case sensitive index=opd_raw sourcetype=volserv 阅读全文
posted @ 2019-01-07 20:45 huanlegu0426 阅读(207) 评论(0) 推荐(0) 编辑
摘要: Think this command not only works in Windows, but also works in Mac & Linux. It will generate a private & public key pair in your user directory foler 阅读全文
posted @ 2018-07-11 12:18 huanlegu0426 阅读(179) 评论(0) 推荐(0) 编辑
摘要: There are two way to connect your github repository, they are https & ssh. ssh link like "git@github.com:yourGithubAccount/githubRepositoryName.git" i 阅读全文
posted @ 2018-07-10 23:25 huanlegu0426 阅读(140) 评论(0) 推荐(0) 编辑
摘要: common issues: 1. un-reverting mylaptop MINGW64 /c/devspace/myproject (master|REVERTING) solution: $ git reset --hard HEAD common commands: 1. delete stash: A stash created with @... 阅读全文
posted @ 2018-07-09 18:23 huanlegu0426 阅读(89) 评论(0) 推荐(0) 编辑
摘要: linux kernel syscall part1 appendix https://www.ibm.com/developerworks/cn/linux/kernel/syscall/part1/appendix.html 阅读全文
posted @ 2018-05-10 09:16 huanlegu0426 阅读(76) 评论(0) 推荐(0) 编辑
摘要: https://tools.ietf.org/html/rfc7231#section-6 阅读全文
posted @ 2017-07-30 18:02 huanlegu0426 阅读(361) 评论(0) 推荐(0) 编辑
摘要: the way we call python 2.x or 3.x should be python or python3. 阅读全文
posted @ 2017-07-30 17:07 huanlegu0426 阅读(122) 评论(0) 推荐(0) 编辑
摘要: In [1]: import builtwith Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/IPytho 阅读全文
posted @ 2017-07-30 16:16 huanlegu0426 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 1 .... 阅读全文
posted @ 2017-07-19 16:38 huanlegu0426 阅读(224) 评论(0) 推荐(0) 编辑
returnTop $(function(){ $('#returnTop').click(function () { $('html,body').animate({ scrollTop: '0px' }, 800); returnfalse; }); });