We recommend the following extensions or their equivalent for your IDE of choice:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| s = [x*2 | x <- [1..10]] | |
| -- s = [2,4,6,8,10,12,14,16,18,20] |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| quick instructions | |
| ================== | |
| you will need https://github.com/containerd/containerd/releases/tag/v1.7.3 | |
| installed and running with default config | |
| you will also need a proper CNI installed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ErrorActionPreference="Stop" | |
| $containerdDir = join-path $env:ProgramFiles containerd | |
| if (!(Test-Path $containerdDir)){ | |
| mkdir $containerdDir | |
| } | |
| $downloadPath = Join-Path $env:Tmp "containerd.tar.gz" | |
| $downloadLink = "https://github.com/containerd/containerd/releases/download/v1.7.5/containerd-1.7.5-windows-amd64.tar.gz" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # this is work in progress | |
| # the following script was from Gabriel | |
| # will modify it to run with the v1.0.0 CNI spec. | |
| # | |
| $ErrorActionPreference="Stop" | |
| $containerdDir = join-path $env:ProgramFiles containerd |
-
Install docker
-
Install
registry.exefrom distribution/distribution: The toolkit to pack, ship, store, and deliver container content (github.com)- Since they don’t have a Windows distribution, install Go.
- Run:
OlderNewer