Skip to content

Instantly share code, notes, and snippets.

@trongnghia203
trongnghia203 / install_pyenv.md
Last active June 20, 2024 08:50
Install pyenv
@munro
munro / selenium_wait_for_images_loaded.py
Last active June 15, 2024 01:12
Selenium wait for all images to load, including background images.
from textwrap import dedent
def wait_until_images_loaded(driver, timeout=30):
"""Waits for all images & background images to load."""
driver.set_script_timeout(timeout)
driver.execute_async_script(dedent('''
// Function to extract URL from CSS 'url()' function
function extractCSSURL(text) {
var url_str = text.replace(/.*url\((.*)\).*/, '$1');
@tom-galvin
tom-galvin / mapwacom
Last active January 17, 2024 12:23
Mapwacom script
#!/bin/bash
# mapwacom script
MAPWACOM=$(basename $0)
EXIT_CODE_BAD_DEVICE=82
EXIT_CODE_NO_SUCH_DEVICE=80
EXIT_CODE_NO_SUCH_SCREEN=81
EXIT_CODE_MISSING_DEPS=83
EXIT_CODE_USAGE=64