This bookmarklet extracts data from worlometers country pages into a downloadable csv file.
To install it:
- If your bookmarks bar is hidden, display it: Ctrl + Shift + b.
- Copy the following code into your clipboard. You'll need it in a sec.
Welcome to the world of Skydimo scripting!
This guide will help you learn how to create your own RGB lighting effects using Lua scripts from scratch, whether you are a beginner or an advanced user.
| Gem combination: | |
| Grade difference = 0: | |
| gem.damageMin 0.83 0.71 1.2 * rand() | |
| gem.damageMax 0.87 0.71 2.4 * rand() | |
| gem.range 0.694 0.388 | |
| gem.reloadingSpeed 0.74 0.44 | |
| gem.bloodBoundRatioPerHitStep 0.78 0.31 | |
| gem.slowPower 0.81 0.35 | |
| gem.poisonDamage 0.96 0.85 |
Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
Console tab| # This is minimal demonstration on how to obtain text metadata and album art from Sendspin and display it using LVGL on an ESP32-S3 Box 3. | |
| # The track title is displayed below the cover art will scroll if too long for the screen. | |
| # Touching the screen pops up controls for 5 seconds where you can pause/resume and go to the previous/next track | |
| # Swiping left or right will go to a different page. It should show a picture of the artist (but there are some bugs on the MA side, so this doesn't work consistently) | |
| # Uses the current Sendspin PR: https://github.com/esphome/esphome/pull/12284 | |
| substitutions: | |
| name: esp32-s3-box-3 | |
| friendly_name: ESP32 S3 Box 3 Sendspin | |
| font_glyphsets: "GF_Latin_Core" |
These are very disorganized because I wrote these as I reversed various bits and pieces. If I'm wrong about something, please let me know so I can forget to update this.
For me this was the Achilles' heel, Crackproof creates a debug log if a certain folder in %temp% is present. The folder name is 12 hex characters long, and different between executables. The easiest way to find it is to break on/hook CreateFileW.
Once you create it, any Crackproofed modules will spit out logs as they unpack. Lines contain status codes, indicating roughly what the unpacker is doing at a given time (see below). Lines with additional debug information are also included, sometimes they can be very handy.
| import argparse | |
| import multiprocessing | |
| from multiprocessing.dummy import Pool, Queue | |
| from multiprocessing import Manager | |
| import os | |
| class TreeCrawler(object): | |
| def __init__(self, base_path, callback=None): |