摘要:
import os '''huanglei 说 python 是世界上最好的语言 20240805 ''' def rename_file(old_name, new_name): os.rename(old_name, new_name) def get_filenames(directory): 阅读全文
摘要:
pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
摘要:
https://www.cnblogs.com/ctypyb2002/p/9793000.html select * from pg_stat_activity; # 查看一些插件 select * from pg_available_extensions where name like '%plp 阅读全文
摘要:
import lombok.Data; import net.sf.json.JSONObject; import java.io.Serializable; import java.util.Date; /** * 流程日志扩展类 * @author hxy * @email huangxiany 阅读全文
摘要:
<plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.1.1.RELEASE</version> <con 阅读全文
摘要:
which java ls -lrt /bin/java 阅读全文
摘要:
搜索 复制 阅读全文
摘要:
public static void main(String[] args) { String a="love234csdn"; String regEx="[^0-9]"; // 匹配所有的非数字 Pattern p = Pattern.compile(regEx); Matcher m = p. 阅读全文
摘要:
添加环境变量 -e PASSWORD_AUTHENTICATION="md5" https://github.com/kartoza/docker-postgis 阅读全文
摘要:
kpi sql 积累 -- 2021-10-28 update kpi_value_in set value = replace (value , E'%',''):: numeric / 100 where position ('%' in value) > 0 and value is not 阅读全文
摘要:
学习postgis 的funciton select 'LINESTRING(40 100, 98 100, 100 150, 60 90)'::geometry; -- 先画一条线 select ST_Buffer('LINESTRING(40 100, 98 100, 100 150, 60 9 阅读全文
摘要:
pip install mysqlclient 阅读全文
摘要:
阅读全文
摘要:
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <excludes> <e 阅读全文
摘要:
pip3 install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple 阅读全文
摘要:
https://www.codenong.com/30323224/ if __name__ == '__main__': app.run(debug=True,host='0.0.0.0') 阅读全文
摘要:
生成爬虫 启动爬虫 阅读全文
摘要:
idea ctrl+e 最近打开的文件 idea alt+CapsLock 列编辑 阅读全文
摘要:
kubectl exec -it ds-test-m9mrh bash 进入到某个pod里面 kubectl exec -it ds-test-m9mrh bash job.yaml kubectl create -f .\job.yaml apiVersion: batch/v1 kind: Jo 阅读全文
摘要:
jeecg-boot 私服 阅读全文
摘要:
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c find ./ -mtime +10 -exec rm -f {} \; #删除10天以前的所有日志。 阅读全文
摘要:
command_type, 1 入职, 2 修改 , 3 离职 阅读全文
摘要:
update zt_soa_users_origin set processed=0 where pri_key in( select pri_key from zt_soa_users_origin zsuo where processed = -1 and import_date >'2020- 阅读全文
摘要:
pip install -r requirements.txt --timeout 90000000 requirements.txt 中的格式 如下 Flask==1.1.1其中 docx 模块为 python-docx==0.8.10 阅读全文
摘要:
# https://blog.csdn.net/qq_31156277/article/details/90374872 pg_dump -h localhost -p 5432 -U zt -F c -b -v -f /home/deployer/backup/itom2 itom pg_rest 阅读全文
摘要:
SELECT to_json('some "text"'::text)select array[to_json('Some "text"'::TEXT)] ; select array_to_json(array[to_json('Some "text"'::TEXT)]) ; select arr 阅读全文
摘要:
转自 https://blog.csdn.net/qq_27948659/article/details/80895860 public R downLoadFiles(){ logger.info("执行开始下载命令"); String cmd = //"hadoop fs -ls /files/ 阅读全文
摘要:
@ApiOperation(value = "获取子公司sub,省分prov,总部hq, 全部 total 指标值中的 最高分,最低分,平均分") @RequestMapping(value = "/getMaxAndMinAndAverageKpiValue", method = RequestM 阅读全文
摘要:
带有逗号的先用字符串去接收,转double的时候进行处理 public PmsInfo convertTo(PmsInfo2 pmsInfo2) { PmsInfo pmsInfo= new PmsInfo(); try { Class clz = pmsInfo.getClass(); Class 阅读全文
摘要:
kpi_id 139 能力商店上架率(在能力商店上架的能力数)、 kpi_id 1575 数据中台使用度(API调用次数、标签调用次数、数据服务调用次数、框架组件订购量)、 kpi_id 164 划小工单流程处理效率(倒三角划小集团工单平均处理时长、倒三角划小省分工单平均处理时长、倒三角划小市分工单 阅读全文
摘要:
阅读全文
摘要:
添加触发器 阅读全文
摘要:
说明:主从复制现在遇到大问题,关闭两个postgresq互相通信的端口后,再重新打开,数据库的日志一直报错。 现在,就需要解决这个问题。 1.首先要了解主从复制是怎么搭建起来的 参考 https://blog.51cto.com/wn2100/2238996 以下命令可以登入数据库 su deplo 阅读全文
摘要:
-- 更新自动化序列 这个常常要用到的 select setval('dm_table_column_id_seq',(select max(id) from dm_table_column)); select setval('dm_table_id_seq',(select max(id) from dm_table)); select setval('dm_database_i... 阅读全文
摘要:
public static void main(String[] args) { try { // 文件流甚是牛逼 Stream stream = Files.lines(Paths.get("pom.xml")); stream.forEach(System.out::println); ... 阅读全文
摘要:
fastjson在java开发中有妙用 阅读全文
摘要:
在使用idea的时候,在springboot中使用内置的tomcat控制台中中文乱码,这个问题困扰我好长时间了,今天终于解决了 https://blog.csdn.net/colcool/article/details/85180935 阅读全文