作者:guopengfa

git常用命令

git branch -a # 展示所有branchgit branch -m <old branch name> <new branch name> # m为move,可重命名和移动branchgit checkout <branch name> # 切换

guopengfa guopengfa 发布于 2021-09-02

C语言暂停

guopengfa guopengfa 发布于 2021-08-13

c语言数据类型

guopengfa guopengfa 发布于 2021-08-13

matplotlib笔记

from matplotlib import pyplot as pltfig, axs = plt.subplots(2) # 一个画布有两个子图file_name = 'title'fig.suptitle(file_name) # 设置子图标题axs[0].plot(xs=list_x,

guopengfa guopengfa 发布于 2021-08-13

adb常用命令记录

adb常用命令adb root # 使用root模式运行adbadb remount # 使用remount模式运行adbadb shell # 进入内核linux模式adb pull phone_dir computer_dir # 移动手机内部文件phone_dir到computer_d

guopengfa guopengfa 发布于 2021-08-12

winsows10专业版激活码,可从其他版本升级到专业版

淘宝9购入windows10激活码,现share给大家从未激活到激活10专业:M7WK3-8NP8G-WHXV2-34BHK-WTXHDwin10密钥:激活:1.去【开始——设置——更新——激活】点击更改产品密钥,然后把我发给你的密钥复制粘贴进去:激活成功 【当场带图当场评 价 以后安 装免费送一个

guopengfa guopengfa 发布于 2021-08-06

退出线程

import timefrom threading import Threadimport inspectimport ctypesdef te1(): while True: print('te1') time.sleep(1)def _async_raise(t

guopengfa guopengfa 发布于 2021-08-02