Thanks to @jogerj and @PrimeCicada for the method! Original script: https://gist.github.com/jogerj/0339e61a92e0de2e360c5212a94854e8
Thanks to @SleepingPanda for 3.8 change info
Open powershell, then copy paste this script:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <link rel="icon" type="image/x-icon" href="/favicon.ico"> | |
| <title>Rebane's Discord Pin Compressor</title> | |
| <meta charset="UTF-8"> | |
| <meta name="description" content="Rebane's Discord Pin Compressor"> | |
| <meta name="author" content="rebane2001"> | |
| <style> | |
| /* |
Thanks to @jogerj and @PrimeCicada for the method! Original script: https://gist.github.com/jogerj/0339e61a92e0de2e360c5212a94854e8
Thanks to @SleepingPanda for 3.8 change info
Open powershell, then copy paste this script:
These are the breaking changes of pycord version 2.0. This gist is copied from breaking-changes-dpy.md and will be maintained for pycord.
"Breaking change" includes:
| Add-Type -AssemblyName System.Web | |
| Write-Host "Paimon.moe Wish Importer" -ForegroundColor Cyan | |
| Write-Host "1. Open Genshin Impact in this PC" | |
| Write-Host "2. Then open the wish history and wait it to load" | |
| Write-Host "3. When you are ready press [ENTER] to continue! (or any key to cancel)" | |
| Write-Host "Waiting..." | |
| $keyInput = [Console]::ReadKey($true).Key | |
| if ($keyInput -ne "13") { |
| import * as Constants from './constants'; | |
| const randomInArray = <T>(arr: readonly T[]): T => | |
| arr[Math.floor(Math.random() * arr.length)]; | |
| export interface Card { | |
| suit: typeof Constants.SUITS[number]; | |
| face: typeof Constants.FACES[number]; | |
| baseValue: number; | |
| }; |
If you share this list, please use this link instead: https://lambdaurora.dev/optifine_alternatives
It may still be only a redirection link, but it will have a better web display of the list soon. And the list being on GitHub/GitHub pages improves load times.
The gist version of this list will stop being updated.
| # SGR color constants | |
| # rene-d 2018 | |
| class Colors: | |
| """ ANSI color codes """ | |
| BLACK = "\033[0;30m" | |
| RED = "\033[0;31m" | |
| GREEN = "\033[0;32m" | |
| BROWN = "\033[0;33m" | |
| BLUE = "\033[0;34m" |
| import requests # dependency | |
| url = "<your url>" # webhook url, from here: https://i.imgur.com/f9XnAew.png | |
| # for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook | |
| data = { | |
| "content" : "message content", | |
| "username" : "custom username" | |
| } |
| // ==UserScript== | |
| // @name Quizlet Match Hack | |
| // @namespace Gabe B. Talafous | |
| // @version 1.6 | |
| // @description The time will freeze at 0.5 and the answers will be the same color | |
| // @author You | |
| // @match https://quizlet.com/*/* | |
| // @grant none | |
| // @license MIT | |
| // ==/UserScript== |