摘要: 1,创建新仓库命令 echo "# Note" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin git@github.com:j 阅读全文
posted @ 2024-05-11 21:01 JustinBeebor 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 把class编译成dex dx --dex --output=classes.dex ./HomeActivity.class 把dex反编译成smali ./d2j-baksmali.sh ~/Documents/android-projects/test/app/build/intermedia 阅读全文
posted @ 2024-04-28 16:53 JustinBeebor 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1,cd /usr/share/applications 2,touch idea.desktop 3,sudo vim idea.desktop 4,在idea.desktop加入以下内容:注意替换自己的idea.sh路径 [Desktop Entry]Name=IntelliJ IDEAComm 阅读全文
posted @ 2024-04-07 18:38 JustinBeebor 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 使用 git rm -r --cached "要取消版本控制的文件或文件夹" 例子:git rm -r --cached .idea 将本地的 .idea 文件夹取消版本控制。 阅读全文
posted @ 2024-04-07 18:33 JustinBeebor 阅读(9) 评论(0) 推荐(0) 编辑
摘要: nohup java -jar server-0.0.1-SNAPSHOT.jar --server.port=3003 > ./3003/app.log 2>&1 &nohup java -jar server-0.0.1-SNAPSHOT.jar --server.port=3004 > ./3 阅读全文
posted @ 2021-09-08 08:56 JustinBeebor 阅读(50) 评论(0) 推荐(0) 编辑
摘要: //创建数据库 create database user default character set utf8mb4 collate utf8mb4_unicode_ci; //删除数据库 drop database user; //导出数据库 mysqldump -u 用户名 -p 数据库名 > 阅读全文
posted @ 2021-09-08 08:51 JustinBeebor 阅读(19) 评论(0) 推荐(0) 编辑
摘要: public static void copyText(Context context, String text){ ClipboardManager clipboardManager = (ClipboardManager) context.getSystemService(Context.CLI 阅读全文
posted @ 2020-12-30 12:08 JustinBeebor 阅读(93) 评论(0) 推荐(0) 编辑