Skip to content

Instantly share code, notes, and snippets.

View timothywarner's full-sized avatar
🤓
Remaining quiet and relaxed is the ultimate power pose.

Tim Warner timothywarner

🤓
Remaining quiet and relaxed is the ultimate power pose.
View GitHub Profile
@timothywarner
timothywarner / decontainer.json
Created October 21, 2024 17:36 — forked from Marin-Kitagawa/decontainer.json
My complete `DevContainer` configuration with all the 798 features configured (as of 07th December 2023)
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/anaconda:1": { "version": "latest" },
"ghcr.io/devcontainers/features/aws-cli:1": { "version": "latest" },
"ghcr.io/devcontainers/features/azure-cli:1": {
"installBicep": true,
"version": "latest"
},
"ghcr.io/devcontainers/features/common-utils:2": {
@timothywarner
timothywarner / decontainer.json
Created October 21, 2024 17:36 — forked from Marin-Kitagawa/decontainer.json
My complete `DevContainer` configuration with all the 798 features configured (as of 07th December 2023)
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/anaconda:1": { "version": "latest" },
"ghcr.io/devcontainers/features/aws-cli:1": { "version": "latest" },
"ghcr.io/devcontainers/features/azure-cli:1": {
"installBicep": true,
"version": "latest"
},
"ghcr.io/devcontainers/features/common-utils:2": {
@timothywarner
timothywarner / gist-cli.py
Created September 27, 2024 14:54 — forked from costa86/gist-cli.py
Gist CLI
import requests
import json
from tabulate import tabulate
import questionary
import webbrowser
API_ENDPOINT = "https://api.github.com/gists"
AUTH_TOKEN = ""
USERNAME = ""