hadoop fs -ls "/project/data/new_energy/gps1"
hadoop fs -cat "/project/data/new_energy/gps1"/input/a.txt
dependency:copy-dependencies -DoutputDirectory=E:\lib
cat /proc/devices
curl -H "Content-Type:application/json" -XPOST http://localhost:8080/test/v1/login -d '{"loginName": "15123855412","password": "123456"}'
curl -H "Content-Type:application/json" -H "Authorization:RRM1RNsWqZEMvjshuTGypjcplA" -XPOST https://www.test.com/test/v/conn/test -d '{"type":1001,"id":"0cc009a5b"}'
nohup python3 -u text.py > text.log 2>&1 &
<dependency>
<groupId>net.dreamlugroupId>
<artifactId>mica-coreartifactId>
<version>2.0.9-GAversion>
dependency>
<dependency>
<groupId>net.dreamlugroupId>
<artifactId>mica-xssartifactId>
<version>2.0.9-GAversion>
<exclusions>
<exclusion>
<artifactId>jsoupartifactId>
<groupId>org.jsoupgroupId>
exclusion>
exclusions>
dependency>
<dependency>
<groupId>org.jsoupgroupId>
<artifactId>jsoupartifactId>
<version>1.14.2version>
dependency>
pip install pyinstaller
# 豆瓣源
pip install -i https://pypi.douban.com/simple/ pyinstaller
# 清华源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller
# 打包exe
pyinstaller -F test.py
# 不带控制台的打包
pyinstaller -F -w test.py
# 打包指定exe图标打包(左上角)
pyinstaller -F -i abc.ico test.py
# 打包指定exe图标打包(图标)
pyinstaller --onefile --icon=iso.ico runserver.py
原因: 可能header中带下划线 “", 经过 nginx 转发后, 会过滤掉该 header, 将下划线 "” 改为 "-"即可
certutil -hashfile "test.pdf" MD5
import psutil
for proc in psutil.process_iter():
print(proc)
import os
import signal
pid=10086
os.kill(pid, signal.SIGTERM)
import base64
# 要编码的二进制数据
binary_data = b'abc'
# 编码为Base64
encoded_data = base64.b64encode(binary_data)
print("Base64编码后的数据:", encoded_data)
# 解码Base64
decoded_data = base64.b64decode(encoded_data).decode('utf-8')
print("Base64解码后的数据:", decoded_data)
# 要编码的中文文本
chinese_text = "你好,世界!"
# 将Unicode字符串编码为UTF-8二进制数据
binary_data = chinese_text.encode('utf-8')
# 编码为Base64
encoded_data = base64.b64encode(binary_data)
print("Base64编码后的数据:", encoded_data)
# 解码Base64
decoded_data = base64.b64decode(encoded_data)
# 将解码后的二进制数据转换为Unicode字符串
decoded_text = decoded_data.decode('utf-8')
print("Base64解码后的文本:", decoded_text)
set > D:/environment_variables.txt
在C盘用户目录下, 当前用户文件夹下创建文件夹命名为 pip
在 pip 文件夹下创建文件 pip.ini, 写入
[global]
index-url=https://mirrors.aliyun.com/pypi/simple/
trusted-host=mirrors.aliyun.com
以上为阿里源, 还可以配置其它源
# 阿里源
[global]
index-url=https://mirrors.aliyun.com/pypi/simple/
trusted-host=mirrors.aliyun.com
# 豆瓣源
[global]
index-url=http://pypi.douban.com/simple/
trusted-host=pypi.douban.com
# 清华大学源
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple/
trusted-host=pypi.tuna.tsinghua.edu.cn
# 中国科技大学源
[global]
index-url=https://pypi.mirrors.ustc.edu.cn/simple/
trusted-host=pypi.mirrors.ustc.edu.cn
此配置不仅对本地 python 环境有效, 对 conda 之下的虚拟环境仍然有效