I hereby claim:
- I am rangho on github.
- I am rangho (https://keybase.io/rangho) on keybase.
- I have a public key ASCNCHdNynYEDESylX9YcZDvwEUZ60QAjwlPi2oyNFPhFQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| pushd "%~dp0" | |
| dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt | |
| for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /Online /NoRestart /Add-Package:"%SystemRoot%\servicing\Packages\%%i" | |
| del hyper-v.txt | |
| dism /Online /Enable-Feature /FeatureName:Microsoft-Hyper-V /LimitAccess /All | |
| pause |
| --- | |
| BasedOnStyle: WebKit | |
| AlignAfterOpenBracket: BlockIndent | |
| AlignTrailingComments: true | |
| BinPackArguments: false | |
| BinPackParameters: false | |
| ColumnLimit: 100 | |
| NamespaceIndentation: None | |
| ReflowComments: true | |
| SortIncludes: true |
| pushd "%~dp0" | |
| dir /b %SystemRoot%\servicing\Packages\*Containers*.mum >sandbox.txt | |
| for /f %%i in ('findstr /i . sandbox.txt 2^>nul') do dism /Online /NoRestart /Add-Package:"%SystemRoot%\servicing\Packages\%%i" | |
| del sandbox.txt | |
| dism /Online /Enable-Feature /FeatureName:Containers-DisposableClientVM /LimitAccess /All | |
| pause |
| # <type>(<scope>)!: <description> (72 characters maximum) | |
| # |<--- preferably using up to 50 characters --->|<------------------->| | |
| # Optional <body> | |
| # |<------------- try limiting to 72 characters per line ------------->| | |
| # Optional <footer> | |
| # ----- END COMMIT MESSAGE ----- | |
| # |
| <script> | |
| import { getColorScheme } from "$lib/color-scheme.svelte"; | |
| let scheme = getColorScheme(); | |
| </script> | |
| <div> | |
| <input id="light" type="checkbox" bind:checked={scheme.isLight} /> | |
| <label for="light">Toggle light or dark mode</label> | |
| </div> |