上一页 1 2 3 4 5 6 7 ··· 22 下一页
摘要: 1.通过这个博客下载重置插件 https://blog.csdn.net/qq_33624866/article/details/119773440 2.通过这个博客下载2021.3版本的pycharm https://www.cnblogs.com/codeguide/p/15924438.htm 阅读全文
posted @ 2022-04-21 10:54 楠海 阅读(53) 评论(0) 推荐(0)
摘要: 统计磁盘总容量 df -h | grep -E "^/dev|^ " | grep "/[a-z]*$" | awk '{print "磁盘使用率:\t剩余空间:"$(NF-2),"已使用:"$(NF-1),"分区:"$NF}' 如何限制开发人员权限 比如nginx: 修改nginx就给的suid权 阅读全文
posted @ 2022-04-14 10:02 楠海 阅读(35) 评论(0) 推荐(0)
摘要: 1.losf介绍: lsof(list open files)是一个列出当前系统打开文件的工具。在linux环境下,任何事物都以文件的形式存在,通过文件不仅仅可以访问常规数据,还可以访问网络连接和硬件。所以如传输控制协议 (TCP) 和用户数据报协议 (UDP) 套接字等,系统在后台都为该应用程序分 阅读全文
posted @ 2022-04-13 14:50 楠海 阅读(155) 评论(0) 推荐(0)
摘要: mysql 连接占满处理方式 最近数据库莫名卡顿, 通过排查发现连接拉满 mysql> show processlist; # 查看线程情况 + + + + + + + + + | Id | User | Host | db | Command | Time | State | Info | + + 阅读全文
posted @ 2022-04-13 13:51 楠海 阅读(669) 评论(0) 推荐(0)
摘要: python 操作jmeter脚本获取修改参数 from xml.etree import ElementTree as et from pathlib import Path # 比如我想把一段xml插入到一个xml中可以将其内容构建一个新的xml result_collector = """<? 阅读全文
posted @ 2022-04-07 16:42 楠海 阅读(38) 评论(0) 推荐(0)
摘要: import os from pathlib import Path from django.http import HttpResponse, StreamingHttpResponse from tcp_client.settings import BASE_DIR DEFAULT_DIR_PA 阅读全文
posted @ 2022-03-13 15:38 楠海 阅读(211) 评论(0) 推荐(0)
摘要: 630. 课程表 III 在看这道题的题解的时候总结下 package main import ( "container/heap" "sort" ) /* @如寒灬 的评论, https://leetcode-cn.com/u/wanyan/ 这是他的主页 为了更好的了解其贪心原则的使用我们来看看 阅读全文
posted @ 2021-12-14 13:42 楠海 阅读(126) 评论(0) 推荐(0)
摘要: 0.问题产生原因 我们项目在后台生成了pdf报告,和png图片, 组长想给pdf报价一个预览功能. 一开始想了很多办法没成功, 搜索时看到有人使用django 静态目录. 1. 首先了解静态文件 比如图片, css, js, pdf等文件(音频文件不包括他属于django的另一个类型media类型) 阅读全文
posted @ 2021-12-08 13:56 楠海 阅读(422) 评论(0) 推荐(0)
摘要: 1.alias Defines a replacement for the specified location. For example, with the following configuration location /i/ { alias /data/w3/images/; } on re 阅读全文
posted @ 2021-12-07 17:33 楠海 阅读(74) 评论(0) 推荐(0)
摘要: 看代码 import datetime from pathlib import Path from docx import Document from docx.oxml import OxmlElement, ns from docx.shared import Inches, Pt, Cm, M 阅读全文
posted @ 2021-11-26 17:25 楠海 阅读(276) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 22 下一页