| 名称 | Name | Link |
|---|---|---|
| 弓 | bow | 🔗 |
| 钓鱼竿 | fishing_rod | 🔗 |
| 剪刀 | shears | 🔗 |
| 打火石 | flint_and_steel | 🔗 |
| 盾牌 | shield | 🔗 |
| 三叉戟 | trident | 🔗 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:latest AS build | |
| WORKDIR /build | |
| RUN apt update -qq && apt install --yes -qq unzip curl | |
| RUN curl -fSsL https://minecraft.azureedge.net/bin-linux/bedrock-server-1.19.30.04.zip --output bedrock-server-1.19.30.04.zip | |
| RUN unzip bedrock-server-1.19.30.04 -d ./bin/ |
PS > Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}- Open Developer Mode
- Settings -> About -> Build No
Keep Tapping on BuildNo
- Settings -> About -> Build No
- OEM unlock
- Settings -> System -> Developer Options -> OEM Unlock & USB Debug
- USB Cable to Phone and PC
- flash latest factory image
- use canary version of magisk to patch
boot.img fastboot flash boot magisk_boot.img
- get
devinfo.img
C:\ $ adb shell
raven:/ $ su
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.AspNetCore.Mvc; | |
| using System.Net.Sockets; | |
| namespace SimpleSocket.Controllers; | |
| [ApiController] | |
| [Route("[controller]")] | |
| public class WeatherForecastController : ControllerBase | |
| { | |
| [HttpGet(Name = "GetWeatherForecast")] |