- Pick something and implement it
- The topics are open-ended
- Pairing is suggested
- Want to try some new tech, this is a great time
- You may use any tools that you like, including code generators and AI, but make sure you can roughly explain what your code is going at the end
- Towards the end, we'll ask people to show off their work. A demo or quick code walk through. Nothing crazy, just a couple minutes.
- You must decide what you implement. Consider time, what you can deliver, what you can reasonably demo, and wow factor.
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
#!/bin/bash | |
set -eio pipefail | |
IMAGE="$1" | |
TAG="$2" | |
TOKEN=$(curl -s "https://auth.docker.io/token?scope=repository:$IMAGE:pull&service=registry.docker.io" | jq -r .token) | |
MANIFEST=$(curl -s -L -H "Accept: application/vnd.docker.distribution.manifest.v2+json" -H "Authorization: Bearer $TOKEN" https://registry-1.docker.io/v2/$IMAGE/manifests/$TAG) |
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
package main | |
import ( | |
"bytes" | |
"fmt" | |
"os" | |
"path/filepath" | |
"strings" | |
"github.com/BurntSushi/toml" |
OlderNewer