Use the filters: Filter by Data: Today, Last hour, This week, Sort by: Upload date,
- IMG (Smartphone)
- MVI (Smartphone)
- -YMD- (20230726) (Smartphone)
| // ==UserScript== | |
| // @name Add to Calendar Link for EIC Seminários | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-07-15 | |
| // @description This script adds a link to each seminar card on the EIC Seminários page that allows users to add the seminar to their Google Calendar with the date and time extracted from the card. | |
| // @license MIT | |
| // @author Nicolas Vycas Nery | |
| // @match https://eic-seminarios.com/seic* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=eic-seminarios.com | |
| // @grant none |
| import sys | |
| import subprocess | |
| import os | |
| from rich.console import Console | |
| from rich.progress import ( | |
| Progress, | |
| SpinnerColumn, | |
| TextColumn, | |
| BarColumn, | |
| TimeElapsedColumn, |
| import os | |
| import subprocess | |
| import math | |
| from PIL import Image | |
| from rich.console import Console | |
| from rich.progress import ( | |
| Progress, | |
| SpinnerColumn, | |
| TextColumn, | |
| BarColumn, |
| import os | |
| import hashlib | |
| import re | |
| import time | |
| from collections import defaultdict | |
| from tqdm import tqdm | |
| from difflib import SequenceMatcher | |
| def normalize_name(filename): |