上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 18个Java8日期处理代码块,工作必用! Java 8 推出了全新的日期时间API,在教程中我们将通过一些简单的实例来学习如何使用新API。 Java处理日期、日历和时间的方式一直为社区所诟病,将 java.util.Date设定为可变类型,以及SimpleDateFormat的非线程安全使其应用 阅读全文
posted @ 2021-09-10 11:32 泊月居 阅读(42) 评论(0) 推荐(0) 编辑
摘要: Windows上PostgreSQL安装配置教程 这篇文章主要为大家详细介绍了Windows上PostgreSQL安装配置教程,具有一定的参考价值,感兴趣的小伙伴们可以参考一下 PostgreSQL的扩展PostGIS是最著名的开源GIS数据库。 安装PostgreSQL是第一步。 1.下载Post 阅读全文
posted @ 2021-09-10 11:31 泊月居 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 1. elasticsearch 1.1 常用命令 Kibana 基本语法 API method url desc PUT localhost:9200/索引名称/类型名称/文档id 创建文档(指定文档id) POST localhost:9200/索引名称/类型名称 创建文档(随机id) POST 阅读全文
posted @ 2021-08-05 12:00 泊月居 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1.Git操作命令 Git global setup git config --global user.name "xxx" git config --global user.email "xxx2035@163.com" Create a new repository git clone xxx. 阅读全文
posted @ 2021-08-05 11:59 泊月居 阅读(185) 评论(0) 推荐(0) 编辑
摘要: Table of Contents 1. Install XRDP 2. Connect to GNOME desktop environment via XRDP 1 Install XRDP Install xrdp. #!/bin/sh -e # Xorg doesn't need Tiger 阅读全文
posted @ 2020-11-03 19:36 泊月居 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 关闭步骤:在进行远程连接的时候,取消选择 显示->全屏显示时显示连接栏(B)。 如果要退出远程连接的话,Ctrl+ Alt+ Home,在全屏模式下,激活连接栏,然后叉掉就好了。 阅读全文
posted @ 2020-11-03 19:29 泊月居 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 参考以下两种解决: 1.zip While using git-bash, you may need the zip command to zip files. Then you will get error like “command not found“. This is because git 阅读全文
posted @ 2020-04-06 18:48 泊月居 阅读(6009) 评论(0) 推荐(0) 编辑
摘要: arxiv的镜像地址:cn.arxiv.org,备用地址:xxx.itp.ac.cn。 可将arxiv.org/pdf/xxx.pdf转换成cn.arxiv.org/pdf/xxx.pdf或xxx.itp.ac.cn/pdf/xxx.pdf。 第一种试的时候不行,就选择第二个地址 阅读全文
posted @ 2020-03-29 19:21 泊月居 阅读(3931) 评论(0) 推荐(0) 编辑
摘要: divmod函数处理结果,第一个是商,第二个余数1 def humanize_time(secs): 2 """ 4 """ 5 mins, secs = divmod(secs, 60) 6 hours, mins = divmod(mins, 60) 7 return '%02d:%02d:%0 阅读全文
posted @ 2020-03-13 19:57 泊月居 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 网络下载的python代码,版本参差,从python2.x迁移python3.x的过程中,存在print语法问题,即python2.x中print无括号,python3.x中print有括号。 逐行添加括号未免效率过低,因此,可使用正则表达式的方法,提供解决方法。 1、在pycharm编译器中,Ct 阅读全文
posted @ 2020-01-14 13:59 泊月居 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页