会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
豆浆D
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
9
10
···
39
下一页
2022年1月26日
nginx上传文件超出默认大小限制-附件,提示:413 Request Entity Too Large
摘要: Nginx 限制文件上传大小,相应配置参数:client_max_body_size 注意:该参数在nginx.conf中默认是没有配置的,不配置的情况下,nginx默认限制请求附件大小为:1M。 即:默认当你通过nginx代理上传附件,大于1M的文件时,浏览器会抛出如下异常。 处理方式: 找到ng
阅读全文
posted @ 2022-01-26 13:43 豆浆D
阅读(748)
评论(0)
推荐(0)
编辑
2022年1月25日
win10远程桌面教程(修改远程桌面端口)
摘要: https://www.codenong.com/cs106461750/
阅读全文
posted @ 2022-01-25 16:26 豆浆D
阅读(47)
评论(0)
推荐(0)
编辑
2022年1月24日
python定时任务Schedule
摘要: https://zhuanlan.zhihu.com/p/23086148 https://mp.weixin.qq.com/s/iJMlTZx58KQMbSBLZVfliw
阅读全文
posted @ 2022-01-24 18:38 豆浆D
阅读(24)
评论(0)
推荐(0)
编辑
tomcat重启脚本
摘要: 脚本如下(带参数): 注意bash变量赋值左右不能有空格 #!/bin/sh # 定义tomcat目录和appname tomcat_dir=$1 app_name=$2 # 删除app目录 `rm -rf $tomcat_dir/webapps/$app_name ` # 执行重启 pid=`ps
阅读全文
posted @ 2022-01-24 18:16 豆浆D
阅读(166)
评论(0)
推荐(0)
编辑
Python3-定时任务四种实现方式
摘要: https://blog.51cto.com/huangyg/2367088 https://segmentfault.com/a/1190000016999497
阅读全文
posted @ 2022-01-24 14:05 豆浆D
阅读(77)
评论(0)
推荐(0)
编辑
2022年1月19日
python全屏截图
摘要: 代码 # 导入模块 import tkinter import cv2 from PIL import ImageGrab def jydp_screenshot(img_out_dir): # 获取当前分辨率下的屏幕尺寸 win = tkinter.Tk() width = win.winfo_s
阅读全文
posted @ 2022-01-19 16:37 豆浆D
阅读(377)
评论(0)
推荐(0)
编辑
随机点名系统
摘要: 源代码(默认读取同目录下的names.txt,也可手动读取txt文件) import random import re import time import threading from tkinter import * from tkinter import ttk from base64 imp
阅读全文
posted @ 2022-01-19 13:38 豆浆D
阅读(1901)
评论(0)
推荐(0)
编辑
2022年1月17日
import(__all__)控制模块被全部导入的内容
摘要: 问题 当使用’from module import *’ 语句时,希望对从模块或包导出的符号进行精确控制。 解决方案 在你的模块中定义一个变量 __all__ 来明确地列出需要导出的内容。 举个例子: # somemodule.py def spam(): pass def grok(): pass
阅读全文
posted @ 2022-01-17 13:26 豆浆D
阅读(76)
评论(0)
推荐(0)
编辑
2022年1月12日
pandas指定列索引和行索引
摘要: 1、使用 set_index() 在 Pandas DataFrame 中指定列作为索引2、使用 read_excel 或 read_csv 中的 index_col 参数在 Pandas DataFrame 中将列作为索引 通常,在 Pandas Dataframe 中,我们默认以 0 到对象长度
阅读全文
posted @ 2022-01-12 17:20 豆浆D
阅读(19373)
评论(0)
推荐(0)
编辑
2022年1月6日
强大易用!新一代爬虫利器 Playwright
摘要: https://mp.weixin.qq.com/s/dJjyZhnt1lUSm5ejmJOv_g
阅读全文
posted @ 2022-01-06 14:30 豆浆D
阅读(143)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
9
10
···
39
下一页
公告