Source: atc0005/notes#20 (comment)
cargo install mdbook
cargo install mdbook-epub
git clone https://github.com/rust-lang/book rust-book
or any other rust-bookcd rust-book
- Modify book.toml (add "[output.epub]" at the end)
mdbook build
Source: atc0005/notes#20 (comment)
cargo install mdbook
cargo install mdbook-epub
git clone https://github.com/rust-lang/book rust-book
or any other rust-bookcd rust-book
mdbook build
1. Change Account picture | |
Determine your account's SID in PowerShell: | |
$user = New-Object System.Security.Principal.NTAccount("USERNAME") | |
$sid = $user.Translate([System.Security.Principal.SecurityIdentifier]) | |
echo $sid.Value | |
This should produce the SID which looks something like this: S-1-5-21-999999999-999999999-9999999999-9999 | |
Create 40x40, 96x96, 200x200, 240x240, 448x448 jpg images and place them somewhere. e.g. "C:\Users\Public\AccountPictures\USERNAME" |
echo OFF | |
set godotexe=godot.windows.opt.tools.64.exe | |
dir %godotexe% | find "<SYMLINK>" && ( | |
echo Already fixed. | |
goto FIN | |
) | |
if exist %godotexe% ( | |
ren %godotexe% godot.exe |