上一页 1 2 3 4 5 6 7 ··· 20 下一页
摘要: 1,安装python3 2,安装vscode 3,vscode安装python插件 打开vscode扩展 搜索python扩展(microsoft) 4,配置工作区 在自己的工作目录创建一个文件夹,这里暂命名为 vspython 选择 vspython 文件夹作为工作文件夹,然后创建一个测试文件 t 阅读全文
posted @ 2022-01-18 15:58 乱炖er 阅读(8625) 评论(0) 推荐(0) 编辑
摘要: edge浏览器 edge://net-internals/#dns chrome浏览器 chrome://net-internals/#dns 阅读全文
posted @ 2022-01-12 18:05 乱炖er 阅读(596) 评论(0) 推荐(0) 编辑
摘要: 1,检测是否安装过homebrew xxx@bogon ~ % brew -v Homebrew 3.3.7-9-gb819c11 Homebrew/homebrew-core (git revision e9819063c6d; last commit 2021-12-07) Homebrew/h 阅读全文
posted @ 2022-01-10 11:44 乱炖er 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1,安装git 查看mac上是否已安装git git --version 如果没有,可以通过安装Xcode后配置,或者通过 xcode-select --install 安装。具体安装方法请百度。 2,创建github账号 创建github的邮箱后面会用到 3,创建ssh,配置本地git 参考:Gi 阅读全文
posted @ 2021-12-28 16:09 乱炖er 阅读(503) 评论(0) 推荐(0) 编辑
摘要: 初次运行 Git 前的配置 既然已经在系统上安装了 Git,你会想要做几件事来定制你的 Git 环境。 每台计算机上只需要配置一次,程序升级时会保留配置信息。 你可以在任何时候再次通过运行命令来修改它们。 Git 自带一个 git config 的工具来帮助设置控制 Git 外观和行为的配置变量。 阅读全文
posted @ 2021-12-28 15:11 乱炖er 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 在~/.zshrc文件最后,增加一行 source ~/.bash_profile 如果没有 .zshrc 文件,在相应目录下添加 .zshrc(和.bash_profile同目录) touch .zshrc 阅读全文
posted @ 2021-12-27 23:45 乱炖er 阅读(118) 评论(0) 推荐(0) 编辑
摘要: macbook pro m1 pro下运行git报错 xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/Com 阅读全文
posted @ 2021-12-27 17:45 乱炖er 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 直接使用 smoothScrollToPosition(position) 时,如果要定位的数据在集合下半部分,则滚动结束后,需要显示的数据是在手机界面地步 可以使用 ((LinearLayoutManager) ((RecyclerView)getView(R.id.rv)).getLayoutM 阅读全文
posted @ 2021-09-15 22:40 乱炖er 阅读(1360) 评论(0) 推荐(0) 编辑
摘要: POSTING 默认,表示事件处理函数的线程跟发布事件的线程在同一个线程。哪个线程发就哪个线程收。 MAIN 表示事件处理函数的线程在主线程(UI)线程,因此在这里不能进行耗时操作。 MAIN_ORDERED 无论事件发布者在主线程或者是子线程,都不会造成线程阻塞。 如果是用的MAIN,进行耗时操作 阅读全文
posted @ 2021-09-14 23:45 乱炖er 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 将 setTheme 的调用放到 super.onCreate() 前执行即可 @Override protected void onCreate(Bundle savedInstanceState) { setTheme(R.style.xTheme); super.onCreate(savedI 阅读全文
posted @ 2021-09-12 18:40 乱炖er 阅读(661) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 20 下一页