8种机械键盘轴体对比
本人程序员,要买一个写代码的键盘,请问红轴和茶轴怎么选?
下载android源码方法:
我的系统是ubuntu 18.04,主要参考了blog通过清华大学镜像下载Android源码并编译源码,通过国内镜像网站下载要比从google下载快的多
按照一下步骤操作即可:终端输入一下命令:
mkdir ~/bin
PATH=~/bin:$PATH
curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo -o ~/bin/repo #使用tuna的git-repo镜像
chmod a+x ~/bin/repo
打开bin文档夹下的repo文档,将
REPO_URL = 'https://gerrit.googlesource.com/git-repo'
改为
REPO_URL = 'https://mirrors.tuna.tsinghua.edu.cn/git/git-repo'
使用每月更新的初始化包,使用方法如下(repo sync的时候使用-j进行多线程下载时参考下清华镜像的说明,不要太高,我用的是加j4):
wget -c https://mirrors.tuna.tsinghua.edu.cn/aosp-monthly/aosp-latest.tar # 下载初始化包
tar xvf aosp-latest.tar
cd aosp# 解压得到的 aosp工程目录
# 这时 ls 的话什么也看不到,因为只有一个隐藏的 .repo 目录
r