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
| { | |
| "output": { | |
| "1": { | |
| "inputs": { | |
| "unet_name": "Fluximate_v1_Q8_0.gguf" | |
| }, | |
| "class_type": "UnetLoaderGGUF", | |
| "_meta": { | |
| "title": "Unet Loader (GGUF)" | |
| } |
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
| #!/bin/bash | |
| # Step 0: Check if CUDA is available before proceeding | |
| if ! python -c "import torch; print(torch.cuda.is_available())" | grep -q "True"; then | |
| echo "CUDA is not available. Proceeding with termination process." | |
| # Download and install runpodctl | |
| echo "Downloading and installing runpodctl..." | |
| wget -qO- cli.runpod.net | bash |
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 os | |
| import json | |
| import torch | |
| from safetensors.torch import load_file | |
| # Define the base paths | |
| checkpoint_dir = "./models/checkpoints" | |
| pony_base_path = os.path.join(checkpoint_dir, "ponyDiffusionV6XL_v6StartWithThisOne.safetensors") | |
| results_file = 'similarity_results.json' | |
| results = {} |
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
| // ==UserScript== | |
| // @name Discord Image Metadata Copier | |
| // @run-at document-start | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.5 | |
| // @description Add a new link to copy Discord image metadata to clipboard | |
| // @author You | |
| // @match https://discord.com/* | |
| // @grant none | |
| // ==/UserScript== |
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 { LimitOrder, MakerTraits, Address } from "@1inch/limit-order-sdk" | |
| import { Wallet } from 'ethers' | |
| import { Api, HttpProviderConnector } from "@1inch/limit-order-sdk" | |
| import axios, { AxiosRequestHeaders } from 'axios'; | |
| // Implementing the HttpProviderConnector interface | |
| class AxiosHttpProviderConnector implements HttpProviderConnector { | |
| async get<T>(url: string, headers: AxiosRequestHeaders): Promise<T> { | |
| const response = await axios.get<T>(url, { headers }); |
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 DPSUnit from '../../classes/DPSUnit'; | |
| import AoEHelper from '../../classes/AOEHelper.js'; // Path to the AoEHelper class | |
| import DamageValues from '../classes/DamageValues.js'; // Path to the AoEHelper class | |
| class Pyrotechnic extends DPSUnit { | |
| static defaultImage = "pyrotechnic.png"; | |
| static name = "Pyrotechnic"; | |
| constructor(config) { | |
| super(config); |
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
| { | |
| "name": "Crystalmancer", | |
| "talents": [ | |
| [ | |
| { | |
| "name": "CrystalArcanist", | |
| "label": "Crystal Arcanist", | |
| "description": "Mages have a chance to appear with a crystal. Merging this mage summons an Arcanist, which can reduce armor by 0.5% with its attacks. The Arcanist also has a 40% chain attack possibility.", | |
| "extraFields": [ | |
| { |
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
| [ | |
| { | |
| "name": "AbsorptionOfEvil", | |
| "label": "Absorption of Evil", | |
| "description": "Marks are distributed among the highest-ranked Hunters upon merging or absorbing marked Hunters. Damage increases with each mark.", | |
| "extraFields": [ | |
| { | |
| "name": "marks", | |
| "label": "Marks", | |
| "type": "number", |
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
| const TeleBot = require('telebot'); | |
| const devKey = ''; | |
| const bot = new TeleBot(devKey); | |
| var lastMessage; | |
| var photoUrl = 'https://telegram.org/img/tl_card_destruct.gif'; | |
| bot.on('/start', msg => { | |
| console.log('message_id', msg.message_id, 'sender_chat_id', msg.sender_chat.id, 'chat_id', msg.chat.id); |
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
| <h1>Click and hold anywhere, then move the cursor</h1> | |
| <div class="wheel"> | |
| <div class="arc"><i class="fas fa-home"></i></div> | |
| <div class="arc"><i class="fas fa-question"></i></div> | |
| <div class="arc"><i class="fas fa-bell"></i></div> | |
| <div class="arc"><i class="fas fa-camera"></i></div> | |
| <div class="arc"><i class="fas fa-trash-alt"></i></div> | |
| <div class="arc"><i class="fas fa-save"></i></div> | |
| <div class="arc"><i class="fas fa-flag"></i></div> |
NewerOlder