美国信息学奥赛讲解

美国信息学奥赛讲解

电脑技术
录播课程: https://ke.qq.com/course/4543831   配套代码: https://gitee.com/myie9/usaco
自动杀mdsync

自动杀mdsync

电脑技术
脚本: #!/bin/sh echo -n "runing" while true; do ps -ef|grep mdsync|grep -v grep if [ $? -ne 0 ] then sleep 1 else sudo pkill -f mds...
mac vscode python 进程占满cpu的解决方法

mac vscode python 进程占满cpu的解决方法

电脑技术
Open the command palette (View > Command Palette...) Run the "Preferences: Open Settings (JSON)" command. This will open the user s...
ubuntu install paddleGan

ubuntu install paddleGan

电脑技术
sudo apt-get install python3.7 update-alternatives --install /usr/bin/python python /usr/bin/python3.7 pip  install --upgrade pip pip  ...
mac vscode配置c++环境

mac vscode配置c++环境

电脑技术
https://zhuanlan.zhihu.com/p/339185300   launch.json { // Use IntelliSense to learn about possible attributes. // Hover to view d...
docker 删除所有容器和镜像的命令

docker 删除所有容器和镜像的命令

电脑技术
1、杀死运行的容器: # docker kill $(docker ps -a -q) 2、删除所有容器: # docker rm $(docker ps -a -q) 3、强制删除所有镜像: # docke...
快应用微信登录

快应用微信登录

电脑技术
https://segmentfault.com/a/1190000020722768?utm_source=tag-newest 2.微信账号授权 微信账号授权也有很多坑,微信账号的那个签名要在开发工...