- Create a folder at the root of your user home folder
(Example:
C:/Users/uname/) called.ssh. - Create the following files if they do not already exist (paths begin from the root of your user home folder):
.ssh/config
| goroutine 7309 [running]: | |
| runtime/pprof.writeGoroutineStacks({0x15fc1c0, 0x7f040b03c0}) | |
| runtime/pprof/pprof.go:819 +0x6c | |
| runtime/pprof.writeGoroutine({0x15fc1c0?, 0x7f040b03c0?}, 0x7f084051e0?) | |
| runtime/pprof/pprof.go:782 +0x2c | |
| runtime/pprof.(*Profile).WriteTo(0x1ec1990?, {0x15fc1c0?, 0x7f040b03c0?}, 0xc?) | |
| runtime/pprof/pprof.go:408 +0x144 | |
| net/http/pprof.handler.ServeHTTP({0xb66259, 0x9}, {0x16050d0, 0x7f040b03c0}, 0x7f0f233b80) | |
| net/http/pprof/pprof.go:273 +0x414 | |
| net/http.(*ServeMux).ServeHTTP(0x0?, {0x16050d0, 0x7f040b03c0}, 0x7f0f233b80) |
| [branch] | |
| autosetuprebase = always | |
| [core] | |
| autocrlf = false | |
| ignorecase = false | |
| [push] | |
| default = simple | |
| [pull] | |
| default = simple |
| function Create-Directory($dirPath) { | |
| if (!(Test-Path $dirPath)) { | |
| New-Item -ItemType directory -Path $dirPath | |
| } | |
| } |
| Get-AppxPackage *3dbuilder* | Remove-AppxPackage | |
| Get-AppxPackage *bingfinance* | Remove-AppxPackage | |
| Get-AppxPackage *bingnews* | Remove-AppxPackage | |
| Get-AppxPackage *bingsports* | Remove-AppxPackage | |
| Get-AppxPackage *bingweather* | Remove-AppxPackage | |
| Get-AppxPackage *getstarted* | Remove-AppxPackage | |
| Get-AppxPackage *officehub* | Remove-AppxPackage | |
| Get-AppxPackage *onenote* | Remove-AppxPackage | |
| Get-AppxPackage *people* | Remove-AppxPackage | |
| Get-AppxPackage *photos* | Remove-AppxPackage |
| /** | |
| * @param {Number} value | |
| * @param {Number} [bitCount = 0] | |
| * | |
| * @returns {String} binary representation of the two's complement of `value`. | |
| */ | |
| function twosComplement(value, bitCount) { | |
| let binaryStr; | |
| if (value >= 0) { |
| #---------------------------------------# | |
| # Project Ignores # | |
| #---------------------------------------# | |
| # output | |
| /.temp | |
| /.tmp | |
| /build | |
| /dist |
| # Project | |
| * text eol=lf | |
| # Language Diffs | |
| *.cs diff=csharp | |
| *.css diff=css |
| // ---- | |
| // Sass (v3.4.14) | |
| // Compass (v1.0.3) | |
| // ---- | |
| @function prepend-slash($value) { | |
| @return unquote('"\\#{$value}"'); | |
| } | |
| // calling `prepend-slash` is only necessary when using a variable |
| # Project | |
| * text eol=crlf | |
| # .NET Framework | |
| *.dll binary diff=exif | |
| *.exe binary diff=exif |