摘要: hosts文件修改: 1.在应用程序里面打开终端(terminal) 2.输入 sudo vi /etc/hosts 3.接着输入 i 进入编辑模式 4.将添加的域名,ip拷贝进去,我随便取了个域名:192.168.1.51 svnserver 5.编辑完成之后,按esc,输入 ": wq" 可能有 阅读全文
posted @ 2020-03-10 19:30 姚狗蛋 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.jianshu.com/p/7241f7c83f4a 阅读全文
posted @ 2020-03-10 18:38 姚狗蛋 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1 数据库 1-1 切换数据库,如不存在则创建 use ec14 1-2 查询有哪些数据库 show dbs 1-3 查询当前数据库 db 1-4 删除数据库 db.dropDatabase() 2 Collection 2-1 创建集合(表) db.createCollection("stu") 阅读全文
posted @ 2020-03-10 18:37 姚狗蛋 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Module build failed: Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (72) For more information on 阅读全文
posted @ 2020-03-10 18:36 姚狗蛋 阅读(1367) 评论(0) 推荐(0) 编辑
摘要: 怎样打包jar 在maven clean先清除 在maven中选择package 就可以在项目所在在的target目录下找到打包好的包 jar包怎样运行 进jar包目录 输入下面代码java -jar jar包的名字.jar 阅读全文
posted @ 2020-03-10 18:30 姚狗蛋 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-10 18:27 姚狗蛋 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 1打开终端,输入: cd ~ 会进入~文件夹 2 然后输入:sudo vim .bash_profile 回车执行,需要输入root用户密码。sudo是使用root用户修改环境变量文件。 3 在文档的最下方输入软件的bin目录 例如:export PATH=${PATH}:/usr/local/my 阅读全文
posted @ 2020-03-10 18:23 姚狗蛋 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 因为在Mac下/usr/local/…默认是隐藏状态,所以需要打开/usr/local并更改文件的话. 只需:打开Finder,command+shift+G,在目录中搜索所需要的路径 阅读全文
posted @ 2020-03-10 18:22 姚狗蛋 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 0.前言 一直以来都是以word文档做笔记,存在很多问题,比如代码格式、高亮等。这次公司要求使用markdown,感觉眼前一亮,以前word的问题都得到了解决,而且可以生成电子书,或者直接通过gitbook放到网络中,非常棒。 但是很多的同事可能与我一样,之前对markdown并不熟悉,所以对语法、 阅读全文
posted @ 2020-03-10 18:19 姚狗蛋 阅读(149) 评论(0) 推荐(0) 编辑
摘要: public class MyArray { private long[] arr; private int elements;//数组长度 public MyArray(){ arr = new long[50]; } public MyArray(int maxsize){ arr = new 阅读全文
posted @ 2020-03-10 13:06 姚狗蛋 阅读(77) 评论(0) 推荐(0) 编辑