Skip to content

Instantly share code, notes, and snippets.

View billygl's full-sized avatar

Billy Grados billygl

View GitHub Profile
// ==UserScript==
// @name Claude Usage Time Progress Bars (Live Updates)
// @namespace http://tampermonkey.net/
// @version 2.1
// @description Adds live-updating time elapsed progress bars below token usage bars on Claude.ai settings
// @author You
// @match https://claude.ai/*
// @run-at document-idle
// @grant none
// ==/UserScript==
@billygl
billygl / manage_calendar.gs
Created January 23, 2026 02:07
move_events_tasks_from_one_day_to_another
const CALENDAR_IDS = [
'micorreo@gmail.com',
'micalendarioID@group.calendar.google.com'//
]
const TASK_LIST_ID = 'milistadetareaID';//
function main() {
// Format: YYYY-MM-DD
const ORIGINAL_DATE_STR = '2026-01-17';
const NEW_DATE_STR = '2026-02-02';
@billygl
billygl / tetris.py
Created February 4, 2025 02:44
tetris python by o3-mini
import pygame
import random
# Global Variables
CELL_SIZE = 30
COLS = 10
ROWS = 20
WIDTH = CELL_SIZE * COLS
HEIGHT = CELL_SIZE * ROWS