摘要:
# 1. 创建目录 cd $HOME && mkdir -P .mine/bin && cd .mine/bin && touch d-use gedit d-use # 将下面内容复制到d-use中 #2. 加入环境变量 vim ~/.bashrc export PATH=.mine/bin:$P 阅读全文
摘要:
只要include头文件就能使用,单例模式 #ifndef MONITORING_LOGGER_H #define MONITORING_LOGGER_H #include <iostream> #include <string> #include <sstream> #include <mutex 阅读全文
摘要:
问题描述 李四和王五同时下载了dev分支代码,main.cpp代码为: #include <stdio.h> void main(void) { printf("hello"); } 李四修改代码后提交并push,李四修改的代码 #include <stdio.h> void main(void) 阅读全文
摘要:
如何在博客园中修改皮肤 博客园是一个提供给用户分享技术文章和知识的平台。许多用户希望自定义博客园的外观来反映自己的个性和风格。本文将详细说明如何在博客园中修改皮肤,包括添加黑色小猫、在右侧添加阅读目录、设置文章页面背景以及在最上方添加看板娘。 一、前期准备 1. 登录博客园 首先,您需要登录您的博客 阅读全文
摘要:
git命令大全 https://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html git及gitlab教程 https://www.bilibili.com/video/BV1NK421Y7XZ/?spm_id_from=333.337.sea 阅读全文
摘要:
老版本 https://zhuanlan.zhihu.com/p/54477708 新版本 https://blog.csdn.net/JXAU_LCY/article/details/121175438 阅读全文
摘要:
ubuntu最多4个工作区,如果要用新的工作区,直接使用ctrl+alt +down即可 不同工作区独立,使用如下命令 gsettings set org.gnome.shell.extensions.dash-to-dock isolate-workspaces true 参考链接 https:/ 阅读全文
摘要:
参考链接 https://www.cnblogs.com/mkdirhao/p/11486062.html 1、给eclipse所安装的目录 777权限,项目目录777权限 2、在普通用户下启动eclipse等软件,别在root模式下启动 原因好像是,root模式下,输入法没有权限(看别人博客这么说 阅读全文
摘要:
更换了清华的源后,需要去home目录下,把**.condarc**中带有default的那一行删除 阅读全文
摘要:
https://blog.csdn.net/weixin_44724865/article/details/100864076 进入conda环境中,执行该命令即可 unset all_proxy && unset ALL_PROXY 阅读全文