Skip to content

Instantly share code, notes, and snippets.

View beauloxe's full-sized avatar

Oleksandr beauloxe

  • Kharkiv, Ukraine
View GitHub Profile
@beauloxe
beauloxe / 1_url-runner.py
Last active February 17, 2026 09:49
URL runner intended for opening various university-related links from CLI or dmenu-compatible launchers (conference, Moodle course, attendance page)
#!/usr/bin/env python3
import argparse
import configparser
import os
import shlex
import subprocess
import sys
import textwrap
PROGRAM_NAME = "url-runner" # Change the name here
@beauloxe
beauloxe / google-meet-captions-logger.js
Last active February 24, 2026 09:27
Initial version of Google Meet captions logger (Tampermonkey userscript)
// ==UserScript==
// @name Google Meet Captions Logger -> .txt
// @namespace meet-captions-to-txt
// @version 0.1
// @description Collects Google Meet live captions text and downloads as a .txt file
// @match https://meet.google.com/*
// @grant none
// ==/UserScript==
(() => {