0%

配置bash代理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//配置部分代理
git config --global http.https://github.com.proxy https://127.0.0.1:xxx
git config --global https.https://github.com.proxy https://127.0.0.1:xxx
//配置全局代理
git config --global https.proxy http://127.0.0.1:xxx
git config --global http.proxy https://127.0.0.1:xxx
//取消部分代理
git config --global --unset https.https://github.com.proxy
git config --global --unset http.https://github.com.proxy
//取消全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
//查看当前局部代理
git config --global --get https.https://github.com.proxy
git config --global --get http.https://github.com.proxy
//查看当前全局代理
git config --global --get https.proxy
git config --global --get http.proxy

提交PR

1
2
3
4
5
6
git checkout -b dev
# fix something
git add .
git commit -m "msg"
git push origin dev
# login

第一章:绪论

计算

  • 计算=信息处理

  • 计算:借助某种工具,遵照一定规则,以明确而机械的方法进行

  • 计算模型=计算机=信息处理工具

Read more »

GRE

6 sections

  • 作文 6
    • AW:analytical writing section
    • ISSUE:30min : Writing task 2 in IELTS
  • 语文 verbal 170
  • 数学 quant 170

计划有变,被迫退考(

Read more »

Assembly language

machine language:机器语言是机器指令的集合,机器指令就是机器可以正确执行的命令,由于机器语言难以理解和记忆,产生了汇编语言

汇编语言主体是汇编指令,汇编指令是机器指令的助记符

编译器:将汇编指令转化为机器指令

Read more »