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
| 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'; |
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
| import pygame | |
| import random | |
| # Global Variables | |
| CELL_SIZE = 30 | |
| COLS = 10 | |
| ROWS = 20 | |
| WIDTH = CELL_SIZE * COLS | |
| HEIGHT = CELL_SIZE * ROWS |