Skip to content

Instantly share code, notes, and snippets.

View Bhupesh-V's full-sized avatar

Bhupesh Varshney Bhupesh-V

View GitHub Profile
# A barebones cache with a TTL
import threading
import time
class Cache:
def __init__(self):
self.cache = {}
# 4 seconds
self.TTL = 4
@Bhupesh-V
Bhupesh-V / aws-certified-developer-associate-courses.md
Last active February 15, 2023 18:48
Courses for AWS Certified Developer - Associate Certification Exam
@Bhupesh-V
Bhupesh-V / filesystem-alpine.txt
Last active January 25, 2024 14:13
Filesystem analysis of alpine:latest" docker image as of Jan 2024
-----File-----
Analysis for alpine:latest:
FILE SIZE
/bin 790.7K
/bin/arch 12B
/bin/ash 12B
/bin/base64 12B
/bin/bbconfig 12B
@Bhupesh-V
Bhupesh-V / tea-spinner-with-work.go
Created January 31, 2024 16:46
bubble tea with work
package main
import (
"fmt"
"net/http"
"os"
"time"
"github.com/charmbracelet/bubbles/spinner"
tea "github.com/charmbracelet/bubbletea"