This gist contains the topic wise FREE courses available on skillbuilder to be ready for AWS Certified Developer - Associate Exam.
This file contains 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
# A barebones cache with a TTL | |
import threading | |
import time | |
class Cache: | |
def __init__(self): | |
self.cache = {} | |
# 4 seconds | |
self.TTL = 4 |
This file contains 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
-----File----- | |
Analysis for alpine:latest: | |
FILE SIZE | |
/bin 790.7K | |
/bin/arch 12B | |
/bin/ash 12B | |
/bin/base64 12B | |
/bin/bbconfig 12B |
This file contains 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 ( | |
"fmt" | |
"net/http" | |
"os" | |
"time" | |
"github.com/charmbracelet/bubbles/spinner" | |
tea "github.com/charmbracelet/bubbletea" |
OlderNewer