上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
  2019年8月13日
摘要: 停止表继续插入 hbase shell>disable 'tbname' 制作快照hbase shell> snapshot 'tbname', 'tbsnap' 克隆快照为新的名字hbase shell> clone_snapshot 'tbsnap', 'newtb' 删除快照hbase she 阅读全文
posted @ 2019-08-13 09:24 啊哈咧 阅读(341) 评论(0) 推荐(0) 编辑
  2019年8月1日
摘要: JSON.toJSONString(..., SerializerFeature.DisableCircularReferenceDetect) 阅读全文
posted @ 2019-08-01 16:13 啊哈咧 阅读(302) 评论(0) 推荐(0) 编辑
  2019年5月27日
摘要: String uuid = UUID.randomUUID().toString(); 阅读全文
posted @ 2019-05-27 14:48 啊哈咧 阅读(232) 评论(0) 推荐(0) 编辑
  2019年3月12日
摘要: 在<build>中添加如下配置 <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</incl 阅读全文
posted @ 2019-03-12 09:48 啊哈咧 阅读(2120) 评论(0) 推荐(0) 编辑
  2019年2月18日
摘要: 格式化代码 1. Ctrl + A2. Code -> Reformat Code,格式化快捷键 Ctrl + Alt + L 给文件重命名 点击你要改的单词,右键refactor ->rename 阅读全文
posted @ 2019-02-18 13:51 啊哈咧 阅读(257) 评论(0) 推荐(0) 编辑
  2019年2月15日
摘要: 设置anaconda环境 1、点击Create New Project选项 2、选择 Existing interpreter,在弹出来的页面中配置 删除工程 1、在菜单中选择:file——>close project 2、选择需要删除的项目右上角的“×”号进行删除工程项目 3、找到工程项目的存放路 阅读全文
posted @ 2019-02-15 15:55 啊哈咧 阅读(2653) 评论(0) 推荐(0) 编辑
  2018年12月14日
摘要: 在windows-preferences-java-debug下选择SuspendVM 也可在设置断点时直接将断点类型设置为suspend vm 阅读全文
posted @ 2018-12-14 15:48 啊哈咧 阅读(1170) 评论(0) 推荐(0) 编辑
  2018年11月19日
摘要: 加入用户组: sudo groupadd -g groupid -d dir <newgrp> 加入用户: sudo useradd -g grp -u userid <newuser> 加入sudo组: sudo usermod -aG sudo <newuser> 删除用户: sudo delu 阅读全文
posted @ 2018-11-19 15:49 啊哈咧 阅读(2738) 评论(0) 推荐(0) 编辑
  2018年8月9日
摘要: A robot on an infinite grid starts at point (0, 0) and faces north. The robot can receive one of three possible types of commands: -2: turn left 90 de 阅读全文
posted @ 2018-08-09 14:48 啊哈咧 阅读(130) 评论(0) 推荐(0) 编辑
  2018年8月5日
摘要: 在leetcode中遇到一个题目涉及到数组的删除元素的操作:remove和del 题目大意是将一个数组中的重复数据删除 提交的代码如下(python3): 根据代码执行及找到的资料总结如下: 1、del删除的是对数据对象的引用,并不触及到数据本身,removeDuplicates2中使用del(el 阅读全文
posted @ 2018-08-05 17:32 啊哈咧 阅读(1546) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页