首页
关于
壁纸
直播
留言
友链
统计
Search
1
《吞食天地1》金手指代码
8,047 阅读
2
白嫖Emby
7,014 阅读
3
Emby客户端IOS破解
6,964 阅读
4
《三国志英杰传》攻略
6,801 阅读
5
破解emby-server
4,599 阅读
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
登录
Search
标签搜索
ubuntu
mysql
openwrt
zerotier
springboot
centos
openvpn
jdk
吞食天地2
synology
spring
idea
windows11
吞食天地1
transmission
google-play
Japanese
xcode
群晖
kiftd
MoonjerX
累计撰写
383
篇文章
累计收到
466
条评论
首页
栏目
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
页面
关于
壁纸
直播
留言
友链
统计
搜索到
383
篇与
moonjerx
的结果
2022-06-06
git常用命令
1.检出远程代码git clone https://www.xxxcode.com/program-test.git2.增加文件(预提交)git add test.txtgit add .3.提交到本地版本库git commit -m 'Add a test.txt file'4.推送到远程版本库git push origin mastergit push origin branch15.列出所有分支git branch -a6.创建分支git branch branch1git checkout -b branch17.切换分支git checkout branch18.合并分支(先切换到主分支,然后pull更新代码,再执行合并分支命令)git merge branch19.冲突处理使用vi命令或者idea编辑器修改冲突文件然后执行 git add 和 git commit 命令即可解决冲突
2022年06月06日
158 阅读
0 评论
0 点赞
2022-05-16
hbuilder本地离线打包
1.Hbuilderx生成本地打包App资源生成资源包如图:2.在打包指南链接中下载Sdk包https://nativesupport.dcloud.net.cn/AppDocs/download/android下载完后解压,得到以下文件3.Android Studio创建空工程在新工程目录 src/main/assets 中创建apps目录,1.将hbuilderx生成的资源包文件放到src/main/assets/apps/目录下2.将打包指南中下载的sdk包中的 Android-SDK@3.4.7.81308_20220424/SDK/assets/data 文件放入 src/main/assets 目录3.修改 dcloud_control.html 中的 appid 为 hbuilderx 生成的资源包文件名 __UNI__B356F03 4.将 Android-SDK@3.4.7.81308_20220424/SDK/libs 中的 lib.5plus.base-release.aar 拷贝到新工程的 app/libs 目录下5.在 androidmanifest.xml 中添加 activity<activity android:name="io.dcloud.PandoraEntry" android:configChanges="orientation|keyboardHidden|keyboard|navigation" android:label="@string/app_name" android:launchMode="singleTask" android:hardwareAccelerated="true" android:theme="@style/TranslucentTheme" android:screenOrientation="user" android:windowSoftInputMode="adjustResize" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="io.dcloud.PandoraEntryActivity" android:launchMode="singleTask" android:configChanges="orientation|keyboardHidden|screenSize|mcc|mnc|fontScale|keyboard" android:hardwareAccelerated="true" android:permission="com.miui.securitycenter.permission.AppPermissionsEditor" android:screenOrientation="user" android:theme="@style/DCloudTheme" android:windowSoftInputMode="adjustResize"> <intent-filter> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <action android:name="android.intent.action.VIEW" /> <data android:scheme="h56131bcf" /> </intent-filter> </activity>io.dcloud.PandoraEntry 和 io.dcloud.PandoraEntryActivity 报错在app/build.gradle中添加maven依赖包 implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: []) implementation 'com.alibaba:fastjson:1.1.46.android'Installed Build Tools revision 32.0.0 is corrupted.的解决方法出现这个问题的原因是sdk缺少了两个文件: dx.bat , dx.jar 这两个文件在sdk中都有,只是名字错了,需要复制一份重命名:具体解决方案:找到并进入 C: <本地Android Sdk实际路径> AndroidSdkbuild-tools32.0.0 目录 提示 :AppData是一个隐藏文件夹,打开隐藏项就可以看到AppData文件夹找到 d8.bat 的文件(Windows批处理文件),复制并粘贴在 当前文件夹 ,重新命名为 dx.bat 进入 C: <本地Android Sdk实际路径> AndroidSdkbuild-tools32.0.0lib 目录复制 d8.jar 并粘贴在当前文件夹,重新命名为 dx.jar .然后重新编译项目
2022年05月16日
444 阅读
0 评论
0 点赞
2022-04-25
docker安装aria2离线下载器
参数说明--name=aria2容器名设置为aria2-v 本地文件夹1:/downloadsAria2下载位置-v 本地文件夹2:/configAria2配置文件位置-e PUID=1026Linux用户UID-e PGID=100Linux用户GID-e SECRET=yourtokenAria2 token-e CACHE=1024MAria2磁盘缓存配置-e PORT=6800RPC通讯端口-e WEBUI=true启用WEBUI-e WEBUI_PORT=8080WEBUI端口-e BTPORT=32516DHT和BT监听端口-e UT=true启动容器时更新trackers-e CTU=启动容器时更新自定义trackes地址-e RUT=true每天凌晨3点更新trackers-e SMD=true保存磁力链接为种子文件-e FA=磁盘预分配模式none,falloc,trunc,prealloc-p 6800:6800Aria2 RPC连接端口-p 6881:6881Aria2 tcp下载端口-p 6881:6881/udpAria2 p2p udp下载端口--restart unless-stopped自动重启容器docker run -d \ --name=aria2 \ -e PUID=1026 \ -e PGID=100 \ -e TZ=Asia/Shanghai \ -e SECRET=yourtoken \ -e CACHE=512M \ -e PORT=6800 \ -e BTPORT=32516 \ -e WEBUI=true \ -e WEBUI_PORT=8080 \ -e UT=true \ -e RUT=true \ -e FA=falloc \ -e QUIET=true \ -e SMD=true \ -p 32516:32516 \ -p 32516:32516/udp \ -p 6800:6800 \ -p 8080:8080 \ -v $PWD/config:/config \ -v $PWD/downloads:/downloads \ --restart unless-stopped \ superng6/aria2:webui-latest
2022年04月25日
211 阅读
0 评论
0 点赞
2022-04-24
此内容被密码保护
加密文章,请前往内页查看详情
2022年04月24日
19 阅读
0 评论
0 点赞
2022-04-23
ubuntu安装docker
海外服务器一条命令安装sudo apt-get update && \ sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common && \ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | \ sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg && \ echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | \ sudo tee /etc/apt/sources.list.d/docker.list > /dev/null && \ sudo apt-get update && \ sudo apt-get install -y docker-ce docker-ce-cli containerd.io && \ sudo systemctl start dockerubuntu下自带了docker的库,不需要添加新的源。但是ubuntu自带的docker版本太低,需要先卸载旧的再安装新的。1.卸载旧版本sudo apt-get remove docker docker-engine docker.io containerd runc2.安装前提依赖sudo apt update && sudo apt-get install ca-certificates curl gnupg lsb-release3.安装GPG证书sudo curl -fsSL http://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -4.写入软件源信息sudo add-apt-repository "deb [arch=amd64] http://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"非大陆执行:sudo add-apt-repository "deb [arch=amd64] http://mirrors.cloud.aliyuncs.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"5.安装新版本sudo apt-get install docker-ce docker-ce-cli containerd.io6.配置用户组一行命令添加docker用户组sudo usermod -a -G docker $USER && newgrp docker添加docker用户组sudo groupadd docker为了避免每次命令都要输入sudo,可以设置当前用户到docker用户组,注销重新登录生效sudo gpasswd -a $USER docker或者sudo usermod -a -G docker $USER然后更新docker用户组newgrp docker7.启动dockersudo systemctl start docker8.docker换源修改 /etc/docker/daemon.json (如果该文件不存在,则创建){ "registry-mirrors": [ "https://hub-mirror.c.163.com" ] }安装必要的一些系统工具apt-get -y install apt-transport-https ca-certificates curl software-properties-common添加 docker 配置 /etc/docker/daemon.json{ "exec-opts": ["native.cgroupdriver=systemd"], "log-driver": "json-file", "log-opts": { "max-size": "100m" }, "storage-driver": "overlay2", "registry-mirrors": ["docker镜像仓库国内加速"] }重启 dockerservice docker restart
2022年04月23日
136 阅读
0 评论
0 点赞
1
...
38
39
40
...
77
您的IP: