首页
分类
学无止境
我的笔记
踩过的坑
碎碎念
动态
文件
关于我
可乐呢o3o
少些比较,多些谦虚。
累计撰写
49
篇文章
累计创建
71
个标签
累计收到
0
条评论
栏目
首页
分类
学无止境
我的笔记
踩过的坑
碎碎念
动态
文件
关于我
目 录
CONTENT
以下是
我的笔记
相关的文章
2024-11-25
MacOS install labelStudio
macos部署labelStudio git clone https://github.com/HumanSignal/label-studio.git # install dependencies cd label-studio pip install poetry poetry install
2024-11-25
40
0
0
我的笔记
2024-07-14
如何科学上网
安卓 安装包下载 添加订阅地址 软件支持直接使用机场订阅链接来添加节点信息,点击软件主界面左上角三道杠按钮,在弹出窗口进入系统设置界面,然后点击订阅设置 在弹出的订阅设置主界面,点击右上角的 ➕ 号按钮即可出现添加订阅界面,在备注处输入自己能区分这个订阅节点的内容,然后在地址(url)处输入订阅地址
2024-07-14
48
0
0
我的笔记
2024-04-12
Linux i3wm配置文件(不完全版)
Linux i3wm配置文件(不完全版) 最近也只是刚开始用i3wm。 这个帖子会不断完善。 i3wm config set $mod Mod4 # i3字体 font xft:URWGothic-Book 11 # 使用 win来移动窗口 floating_modifier $mod # 使用 w
2024-04-12
44
0
0
我的笔记
2024-04-09
Arch双系统引导修复
Arch双系统引导修复 当前是两块硬盘,硬盘1有一个引导,启动windows 硬盘2有一个grub启动arch 现在想要通过硬盘2的引导分区启动windows。 在arch中修改 /etc/default/grub GRUB_DISABLE_OS_PROBER=false 使用os-prober
2024-04-09
63
0
0
我的笔记
2024-04-01
Nginx自用反代模板
nginx 自用配置模板 server { listen 80; server_name example.liukersun.com; return 301 https://$host$request_uri; } server { listen 443 ssl;
2024-04-01
63
0
0
我的笔记
2024-03-13
python Retry装饰器
python Retry装饰器 from functools import wraps from typing import Callable, Any from time import sleep def retry(retries: int = 3, delay: float = 1) ->
2024-03-13
76
0
0
我的笔记
2024-03-09
linux硬盘清理小记
清理 journal 日志 查看 journal 日志占用的硬盘空间: journalctl -x --disk-usage 清理 journal 日志: journalctl --vacuum-size=10M journalctl --vacuum-time=1d 清理journal 不能使
2024-03-09
42
0
0
我的笔记
2024-03-07
在windows上使用wget
项目主页: GNU wget 下载好后配置环境变量即可使用。
2024-03-07
33
0
0
我的笔记
2024-02-27
我在用的chrome插件
react-developer-tools 地址: react-developer-tools 用法: 如果你访问 基于 React 构建的网站 时,右上角的工具小图标(地址栏右侧)会发生改变 详细功能参考:React调试利器:React DevTools - 掘金 Wappalyzer - Tec
2024-02-27
27
0
0
我的笔记
2024-01-02
python发布自己的包
参考python的setuptools setup.py中的配置参考 https://docs.python.org/3.11/distutils/apiref.html from distutils.core import setup setup( name="pytos", ve
2024-01-02
43
0
0
我的笔记
1
2
3