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
async function start() { | |
await dosomething(".expando-button"); | |
console.log('next step') | |
await wait(20000) | |
await loopWheel(); | |
console.log('next step') | |
await wait(20000) | |
await dosomething("button.res-media-controls-download.res-icon"); | |
console.log('next step') | |
await wait(20000) |
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
G28 ; home all axes | |
G1 Z5 F5000 ; lift nozzle | |
M420 S1 | |
M109 S[first_layer_temperature] | |
G92 E0 ;Reset Extruder | |
G1 Z2.0 F3000 ;Move Z Axis up | |
G1 X20 Y5.1 Z0.28 F5000.0 ;Move to start position | |
G1 X200.0 Y5.1 Z0.28 F1500.0 E15 ;Draw the first line |
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 youtube popup killer | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description try to take over the world! | |
// @author Selbereth | |
// @match https://*.youtube.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.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
from qbittorrentapi import Client | |
# instantiate a Client using the appropriate WebUI configuration | |
client = Client(host='https://localhost:8080', username='YOUR_USERNAME', password='YOUR_PASSWORD',VERIFY_WEBUI_CERTIFICATE=False) | |
# Loop through all torrents | |
for torrent in client.torrents_info(status_filter='completed', category='named_category_that_is_an_issue'): | |
# Check if the tracker status is 'not contacted yet' | |
for tracker in torrent.trackers: | |
if tracker.status == 1: |