linux mint下使用fcitx5-rime指南

benojan 发布于 2024-01-13 18:44
用户目录 $HOME/.local/share/fcitx5/rime
标签: Linux

linux mint下,安裝最新版nodejs,安裝yarn

benojan 发布于 2024-01-12 16:17
添加Node.js PPA curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash - 安裝nodejs sudo apt-get install nodejs 安裝yarn sudo npm i -g yarn 添加国内源 yarn config set registry https:/...
标签: Linux nodejs

linux mint 美化

benojan 发布于 2024-01-10 22:45
避坑 避免使用界面缩放,特别是使用ibus输入法框架的时候,会不跟随光标。 桌面美化 主题 安装主题CBlack、CBlue 主题中的应用程序选择CBlack 主题中的图标选择Papirus 主题中的桌面选择CBlue 类mac扩展坞 安装plank sudo apt install plank 管理plank 按住Ctrl键,同时在plan...
标签: Linux

Python之虚拟环境

benojan 发布于 2024-01-09 21:37
一、创建环境 python -m venv ENV_DIR 二、激活环境 .\ENV_DIR\Scripts\activate 三、安装环境 pip install django pip install djangorestframework pip install pymysql pip install django-cors-headers

C语言

benojan 发布于 2023-12-20 21:29
C编程常用 EXIT_SUCCESS // 退出成功 EXIT_FAILURE // 推出失败

vim常用配置

benojan 发布于 2023-12-05 09:19
vim 常用配置 autocmd BufNewFile *.c 0r ~/模板/c.c autocmd BufNewFile *.cc 0r ~/模板/c++.cpp autocmd BufNewFile *.cxx 0r ~/模板/c++.cpp autocmd BufNewFile *.cpp 0r ~/模板/c++.cpp set ai ...
标签: Linux vim

linux mint下,编译boost及librime

benojan 发布于 2023-12-01 16:30
编译boost 下载boost 如:boost_1_82_0 https://www.boost.org/ 安装boost cd path/to/boost_1_82_0 # ./bootstrap.sh sudo ./b2 install 编译librime 拉取源代码 git clone --recursive https://githu...
标签: boost Linux

c语言静态库、动态库制作

benojan 发布于 2023-11-30 19:58
静态库制作及步骤 将 .c 生成 .o 文件 gcc -c add.c -o add.o 使用 ar 工具,制作静态库 ar rcs lib库名.a add.o sub.o div.o 编译静态库到可执行文件中 gcc test.c lib库名.a -o a.out 动态库制作及使用步骤 将 .c 生成 .o 文件 gcc -c add.c -o ad...

关于C++里的查询

benojan 发布于 2023-11-27 12:52
一、str.find() 在字符串str中查询子串的位置 #include <iostream> using namespace std; int main() { string str = "abcdefg"; size_t pos = str.find("bcd"); if(pos != string::npos...

术语的理解

benojan 发布于 2023-10-23 10:12
抽象 朱光潜《形象思维在文艺中的作用和思想性》“抽象就是‘提炼’,也就是毛泽东同志在《实践论》里所说的‘将丰富的感觉材料加以去粗取精、去伪存真、由此及彼、由表及里的改造制作工夫。’”