会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
JustinBeebor
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
2024年5月11日
git使用
摘要: 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
阅读(47)
评论(0)
推荐(0)
2024年4月28日
Android dx baksmali使用
摘要: 把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
阅读(37)
评论(0)
推荐(0)
2024年4月7日
ubuntu22.04创建idea快捷方式
摘要: 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
阅读(296)
评论(0)
推荐(0)
git移除已经加入版本控制的文件
摘要: 使用 git rm -r --cached "要取消版本控制的文件或文件夹" 例子:git rm -r --cached .idea 将本地的 .idea 文件夹取消版本控制。
阅读全文
posted @ 2024-04-07 18:33 JustinBeebor
阅读(181)
评论(0)
推荐(0)
2021年9月8日
JAVA服务器部署
摘要: 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
阅读(70)
评论(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
阅读(42)
评论(0)
推荐(0)
2020年12月30日
Android复制文字
摘要: public static void copyText(Context context, String text){ ClipboardManager clipboardManager = (ClipboardManager) context.getSystemService(Context.CLI
阅读全文
posted @ 2020-12-30 12:08 JustinBeebor
阅读(110)
评论(0)
推荐(0)
上一页
1
2
公告