- AWS re:Invent 2023, Las Vegas, USA https://youtu.be/W9bNN7etyKw?si=qI8at25mCVEoeDif
- Xpand Conference, Jordan https://youtu.be/lcE8c11himA?si=gSTdknDhxhydv9-D
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
| [Finch CLI - Open source clilent for container development](https://github.com/runfinch/finch) |
Go clients for Databases:
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
| sequenceDiagram | |
| Participant D as Developer | |
| Participant I as IDE | |
| Participant Doc as Docker | |
| Participant M as Minikube | |
| Participant TC as Testcontainers | |
| D->>I: Write Code/Tests | |
| I-->>D: Run Unit Tests | |
| D->>Doc: Build Images |
- Create a new Ubuntu or Amazon Linux lightsail instance with a SSH keypair
- Open port 3000 on IPv4 firewall
- Go to https://github.com/gitpod-io/openvscode-server/releases and note down the latest version number (as of writing this gist the version number is 1.81.1)
- SSH into lightsail instance
export SERVER_VERSION=1.81.1 # Replace with the latest version#Install Linux Kernel for WSL2, and use WSL2
Invoke-WebRequest -Uri https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi -OutFile wsl_update_x64.msi -UseBasicParsing
.\wsl_update_x64.msi /passive
wsl --set-default-version 2
wsl --update
# Download Amazon Linux 2023 distribution
Invoke-WebRequest -Uri https://github.com/rlove/AmazonLinux-2023-WSL/releases/download/v2023.1.20230705.0/AL2023.zip -OutFile $env:TMP\AL2023.zip
Expand-Archive -Path $env:TMP\AL2023.zip -DestinationPath C:\WSL\AL2023NewerOlder