上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 70 下一页
摘要: 1 安装 下载直接拖入应用中。 2 配置 2.1 配置oh my zsh https://github.com/robbyrussell/oh-my-zsh 一键安装: sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh 阅读全文
posted @ 2018-07-29 15:11 PhoenixTree(梧桐树) 阅读(272) 评论(0) 推荐(0)
摘要: 1 不能像使用windows一样使用mac 因为mac卸载不方便。 2 gcc的问题 就使用系统默认的gcc,即clang,要想使用原声的gcc是不行的,mac本身不支持。 阅读全文
posted @ 2018-07-27 07:01 PhoenixTree(梧桐树) 阅读(281) 评论(0) 推荐(0)
摘要: 1 springboot工程自动生成网址 http://start.spring.io/ 2 工具 Spring Boot CLI 阅读全文
posted @ 2018-07-26 15:07 PhoenixTree(梧桐树) 阅读(302) 评论(0) 推荐(0)
摘要: 使用mybatis的话,很方便。 使用useGeneratedKeys和keyProperty,keyProperty是插入的java对象的属性名,不是表的字段名。 这样,在插入该条记录之后,生成的主键将会被赋值给该插入对象的该属性。 阅读全文
posted @ 2018-07-25 19:40 PhoenixTree(梧桐树) 阅读(445) 评论(0) 推荐(0)
摘要: rz是receive zmodem的缩写,sz是send zmodem的缩写。 传输文件使用的是zmodem协议,所以叫zmodem。 r和s是以服务器为主体的,服务器接收就是r,服务器发送就是s。 阅读全文
posted @ 2018-07-25 12:59 PhoenixTree(梧桐树) 阅读(353) 评论(0) 推荐(0)
摘要: 1 使用Calendar的好处 不用关心一个月多少天,比如6.30,加一天之后直接是7.1。 2 使用Calendar的特别注意事项 Calendar类的Month是从0开始的,不是从1开始的。 下面的设置将会得到2016/11/13-15:26:0. 阅读全文
posted @ 2018-07-11 19:34 PhoenixTree(梧桐树) 阅读(115) 评论(0) 推荐(0)
摘要: 1 目的 给python应用一个独立的运行环境,独立于其它的python应用也独立于系统的python环境。 环境升级不影响其它应用。 避免包冲突。 2 创建方式 2.1 pycharm中创建 project interpreter处点击配置按钮 new environment 然后选择一个loca 阅读全文
posted @ 2018-06-21 18:12 PhoenixTree(梧桐树) 阅读(782) 评论(0) 推荐(0)
摘要: 1 别名 from xxx import xxx as xxx; 阅读全文
posted @ 2018-06-19 17:39 PhoenixTree(梧桐树) 阅读(119) 评论(0) 推荐(0)
摘要: 创建一个自己的setting xxx.setting export DJANGO_SETTINGS_MODULE="xxx.setting" 然后在项目中import原生的settings 阅读全文
posted @ 2018-06-18 17:11 PhoenixTree(梧桐树) 阅读(461) 评论(0) 推荐(0)
摘要: ROOT_URLCONF root URLconf module urlpatterns “include” other URLconf modules chops off whatever part of the URL matched up to that point and sends the 阅读全文
posted @ 2018-06-18 16:14 PhoenixTree(梧桐树) 阅读(146) 评论(0) 推荐(0)
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 70 下一页