A Pen by Michael Salaverry on CodePen.
This file contains 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
# backup at Z5nYiUJM https://rentry.co/7d98g63q | |
from playwright.sync_api import sync_playwright | |
import requests | |
import schedule | |
from time import sleep | |
from datetime import datetime, UTC | |
from loguru import logger |
This file contains 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
#!/bin/sh | |
mkdir -p /mnt/fourtera | |
DISK=$(fdisk -l | grep 2047 | cut -d " " -f2 | sed "s/:/2/") | |
logger $DISK | |
mount.exfat-fuse $DISK /mnt/fourtera |
This file contains 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
// ==UserScript== | |
// @name Text-To-Speech Toggle | |
// @namespace http://tampermonkey.net/ | |
// @version 0.4 | |
// @description text to speech for qireader articles with toggle button | |
// @author Michael Salaverry | |
// @match https://www.qireader.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=qireader.com | |
// @grant none | |
// ==/UserScript== |
This file contains 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
// ==UserScript== | |
// @name Show in stock on KSP | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://ksp.co.il/web/cat/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=co.il | |
// @grant GM.xmlHttpRequest | |
// @connect ksp.co.il |
This file contains 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
FROM busybox | |
CMD [ "sh", "/run/secrets/my_secret" ] |
This file contains 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
<script setup> | |
import { ref } from 'vue' | |
const hover = ref(false) | |
const key = ref('') | |
const events = ref([]) | |
document.addEventListener('keydown', (e) => { | |
key.value = e.key; | |
events.value.push({ key: e.key, hover: hover.value.toString() }) |
This file contains 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
classDiagram | |
direction RL | |
Tasmota --> MqttBroker: Tasmota publishes sensor readings to broker | |
class Tasmota{ | |
publish() | |
} | |
class MqttBroker { | |
message_queue | |
} | |
Mqttjs --> Chartjs: onRecieve pushes new data and updates Chart |
Tesseract.js based OCR from Webcam

NewerOlder