Also you can watch the video.
https://www.youtube.com/watch?v=8S7s-p_enSY
- Press
Win+Skeys, and searchregeditthen openRegedit (Registry Editor).
| # THIS LINUX SETUP SCRIPT HAS MORPHED INTO A WHOLE PROJECT: HTTPS://OMAKUB.ORG | |
| # PLEASE CHECKOUT THAT PROJECT INSTEAD OF THIS OUTDATED SETUP SCRIPT. | |
| # | |
| # | |
| # Libraries and infrastructure | |
| sudo apt update -y | |
| sudo apt install -y \ | |
| docker.io docker-buildx \ | |
| build-essential pkg-config autoconf bison rustc cargo clang \ |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| # Download latest dotnet/codeformatter release from github | |
| $repo = "dotnet/codeformatter" | |
| $file = "CodeFormatter.zip" | |
| $releases = "https://api.github.com/repos/$repo/releases" | |
| Write-Host Determining latest release | |
| $tag = (Invoke-WebRequest $releases | ConvertFrom-Json)[0].tag_name |
Here's how to disable the package that is responsible for loading the Git source control support in Visual Studio. Use at your own risk!
devenv.exe in you Visual Studio's Common7\IDE (you'll need elevation for this)[$RootKey$\Packages\{7fe30a77-37f9-4cf2-83dd-96b207028e1b}]
[$RootKey$\SourceControlProviders\{11b8e6d7-c08b-4385-b321-321078cdd1f8}]
devenv /updateconfiguration| // Don't do this, because you don't need async if you're only calling one | |
| // downstream async method and returning its value, unprocessed. | |
| public async Task<int> DoSomething(int x, int y) | |
| { | |
| return await SlowMath.AddAsync(x, y); | |
| } | |
| // Do this instead: | |
| public Task<int> DoSomething(int x, int y) | |
| { |