Skip to content

Instantly share code, notes, and snippets.

View kker4m's full-sized avatar

Kerem Mert İzmir kker4m

View GitHub Profile
@trongnghia203
trongnghia203 / install_pyenv.md
Last active April 4, 2025 17:41
Install pyenv
@munro
munro / selenium_wait_for_images_loaded.py
Last active February 4, 2025 15:15
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 April 21, 2025 12:59
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