会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
BuzzWeek
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
下一页
2023年6月15日
Rust入门教程推荐
摘要: > https://course.rs/about-book.html
阅读全文
posted @ 2023-06-15 13:16 BuzzWeek
阅读(15)
评论(0)
推荐(0)
编辑
Windows上安装Rust
摘要: # 1. 下载RUSTUP-INIT.EXE 下载地址:https://www.rust-lang.org/tools/install ![image](https://img2023.cnblogs.com/blog/2065202/202306/2065202-20230615130904110
阅读全文
posted @ 2023-06-15 13:08 BuzzWeek
阅读(233)
评论(0)
推荐(0)
编辑
2023年6月6日
git换行符CRLF设置
摘要: # autocrlf ```bash # 提交时转换为LF,检出时转换为CRLF git config --global core.autocrlf true # 提交时转换为LF,检出时不转换 git config --global core.autocrlf input # 提交检出均不转换 g
阅读全文
posted @ 2023-06-06 18:24 BuzzWeek
阅读(294)
评论(0)
推荐(0)
编辑
2023年6月5日
git入门
摘要: # 下载仓库 ``` bash git clone git@github.com:.../blog.git ``` # 配置默认编辑器为vim ``` bash git config --global core.editor vim # --edit 编辑配置 git config -e # 编辑全
阅读全文
posted @ 2023-06-05 20:46 BuzzWeek
阅读(6)
评论(0)
推荐(0)
编辑
2023年4月8日
切分pdf脚本
摘要: 安装依赖 requirement.txt PyPDF2~=2.0 安装依赖 python3 -m pip install -r requirement.txt 切分pdf脚本 from PyPDF2 import PdfFileWriter, PdfFileReader def pdf_split(
阅读全文
posted @ 2023-04-08 16:47 BuzzWeek
阅读(21)
评论(0)
推荐(0)
编辑
2023年3月26日
fatal: early EOF fatal: index-pack failed
摘要: 浅clone # 关闭compression git config --global core.compression 0 # 部分clone,浅clone git clone --depth 1 <repo_URI> # 下载剩下的没clone部分 git fetch --unshallow #
阅读全文
posted @ 2023-03-26 20:51 BuzzWeek
阅读(58)
评论(0)
推荐(0)
编辑
2023年3月23日
ubuntu apt安装指定版本vscode
摘要: 列出vscode所有版本 $ apt-cache madison code code | 1.76.1-1678294265 | http://packages.microsoft.com/repos/code stable/main amd64 Packages code | 1.76.0-167
阅读全文
posted @ 2023-03-23 23:11 BuzzWeek
阅读(319)
评论(0)
推荐(0)
编辑
2023年3月16日
tags
摘要: ctags # 安装 sudo apt install universal-ctags # 查看版本 ctags --version # 当前目录生成tags ctags -R . # 指定具体文件生成tags ctags filename.c filename1.c file.h # 指定类型生成
阅读全文
posted @ 2023-03-16 23:20 BuzzWeek
阅读(250)
评论(0)
推荐(0)
编辑
2023年3月1日
Ubuntu22 vim配置
摘要: 插件管理器 vim-plug # 下载插件管理器 sh -c 'curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
阅读全文
posted @ 2023-03-01 23:32 BuzzWeek
阅读(46)
评论(0)
推荐(0)
编辑
2023年2月22日
ubuntu22.04LTS下编译glfw
摘要: 环境准备 # 预装cmake sudo apt install cmake # 下载源码 git clone https://github.com/glfw/glfw.git 编译 # cmake初始配置,生成编译文件 cd glfw cmake -S . -B build # 编译 cd buil
阅读全文
posted @ 2023-02-22 23:26 BuzzWeek
阅读(100)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
8
下一页
公告