インストールするたびに元の設定に戻せなくて発狂してしまうのでスクショを取っておく
2022 年 10 月 10 日のバージョン (12.2.05.469624536-release-arm64-v8a)
| 言語 > 日本語 | 設定 | テキストの修正 |
|---|---|---|
ときの対処法
Microsoft Store からアップデートする
| choco install microsoftazurestorageexplorer | |
| choco install dotnetcore-sdk | |
| choco install keepass.install | |
| choco install rapidee | |
| choco install vscode | |
| # requies restart | |
| Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform | |
| Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux |
| [user] | |
| name = xl1 | |
| email = shiba200712@gmail.com | |
| [core] | |
| autocrlf = input | |
| [init] | |
| templatedir = ~/.git_template | |
| [gui] | |
| encoding = utf-8 | |
| [push] |
| const convert = { | |
| binary: { | |
| toArrayBuffer(binary) { | |
| return Uint8Array.from(binary, s => s.charCodeAt(0)).buffer; | |
| }, | |
| toBlob(binary, mimeType) { | |
| return new Blob([binary], { type: mimeType }); | |
| }, | |
| toBase64: binary => btoa(binary) | |
| }, |
| using System; | |
| using System.IO; | |
| using System.Text; | |
| namespace Sample | |
| { | |
| public static class ByteArrayExtension | |
| { | |
| public static string ConvertToString(this byte[] bytes) | |
| { |