This file contains hidden or 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
""" | |
Generate icons for a Tauri Application | |
---------------------- | |
By Ibai Farina | |
For correct functionality, the base logo should be 512x512 or larger (keeping the aspect ratio). | |
""" | |
__title__ = 'Tauri Icon Generator' | |
__author__ = 'Ibai Farina' | |
__license__ = 'MIT' |
This file contains hidden or 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
import asyncio | |
import json | |
import time | |
from pystyle import Colors, Colorate | |
from typing import Dict, Any, List, Tuple | |
from aiohttp import ClientSession | |
from yarl import URL |
This file contains hidden or 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
/* Weird code to access the iframe and its variables as this code | |
is intended to run in the 'javascript:' context in the search bar. | |
Used in Chromebook with both dev console and extensions blocked :) */ | |
function run_() { | |
/* Get iframe's document and window (to access the variables of its context) */ | |
const iframe_ = document.getElementById("class_iframe"); | |
const iWindow = iframe_.contentWindow; | |
const iDocument = iWindow.document; | |
/* Get all correction buttons */ | |
let els = iDocument.querySelectorAll(".js-correct, .js-save"); |
This file contains hidden or 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
// ASSAULT CUBE Go external cheat. | |
// The objective of this script is to show how to perform operations such as writing / reading the memory of a process. | |
// With this script, you can change the rifle ammo inside the game. | |
// You can set the ammo's value, ammo's address offset, and more inside the main() function. | |
// Note: The window must be windowed for this to work. | |
// BY AUAX 2006 | |
package main | |
import ( |