首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
cn2linux
行动起来,活在当下
累计撰写
128
篇文章
累计创建
1
个标签
累计收到
0
条评论
栏目
首页
Linux
服务部署
Nginx
MySQL
Docker
Jenkins
Python
Golang
前端
javascript
react
其它
传送门
目 录
CONTENT
最新文章
草稿:Python 类、静态、实例方法说明
创建一个测试类 class MyClass: def method(self): """ Instance methods need a class instance and can access the instance through `s
2023-12-16
12
0
0
Python
MacOS 取消虚拟内存
查看是否使用虚拟内存 memory_pressure | grep Swap 如果结果都是0,说明当前没有使用虚拟内存。 删除虚拟内存文件 cd /private/var/vm && \ sudo rm -R swapfile*
2023-12-16
81
0
0
其它
服务部署 安装Varnish Cache 6
安装部署 安装服务 Rocky Linux 8 Varnish Cache 是6.0的版本 dnf install varnish -y 服务完整配置 vim /etc/varnish/default.vcl vcl 4.0; # 加载后端轮询模块 import directors; #######
2023-12-16
25
0
0
服务部署
草稿:Python 判断key 或者值在枚举里
from enum import Enum class testEnum(Enum): key1 = 0 key2 = 1 "key1" in testEnum.__members__ 0 in testEnum._value2member_map_
2023-12-16
10
0
0
Python
解决使用 df 命令时的无响应问题
在某些情况下,运行 df 命令可能会导致无响应的情况。这可能是由于系统在尝试获取特定文件系统的状态信息时遇到了问题。 问题分析 通过 strace 命令追踪 df 命令的执行过程,我们发现命令在执行到以下位置时卡住: stat("/proc/sys/fs/binfmt_misc", {st_mode
2023-12-16
94
0
0
MySQL 多字段模糊查询
基本查询方式 SELECT * FROM `test1` WHERE CONCAT(`name`, `age`) LIKE "%关键字%"; 针对字段包含NULL SELECT * FROM `test1` WHERE CONCAT(IFNULL(`name`, ''),
2023-12-16
9
0
0
Python 使用动态变量名访问变量值
使用 locals() 函数 locals() 函数返回当前局部符号表的字典,我们可以使用变量名作为键来访问其对应的值。示例代码如下: var = "This is a string" varName = 'var' s = locals()[varName] print(s) # 输出:This
2023-12-16
10
0
0
Python
Python pycurl安装
错误输出 pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend 解决方式 export PYCURL_SSL_LIBRARY=nss pip install --compile -
2023-12-16
23
0
0
草稿
Python 检测证书是否有效
import os import logging import socket import ssl from ssl import SSLError import urllib.request import argparse # 配置日志 logging.basicConfig(level=log
2023-12-16
10
0
0
Python
Python 线程
import time import threading class FuncThread(threading.Thread): def __init__(self, func, *args, **kwargs): super(FuncThread, self)
2023-12-16
47
0
0
Python
1
...
4
5
6
...
13