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 NieR: Automata UI Light | |
| * @version 1.4 | |
| * @description Glory to Mankind. || | |
| * Thanks to JulioDRai for letting me use their cursors! | |
| * ~https://www.deviantart.com/juliodrai || | |
| * Thanks to GOmonkeymanGO for letting me use some of their code | |
| * ~https://github.com/ChaseIngebritson/YoRHa-Discord-Theme || | |
| * @website https://github.com/AccraZed/YoRHA-UI-BetterDiscord | |
| * @author Accrazed#2710 |
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
| $API_KEY = Get-Content (Join-Path -Path $PSScriptRoot -ChildPath "VirusTotal_API_KEY"); | |
| # Hashtable to hold filepaths and their corresponding sha256s | |
| $sha256s = [ordered]@{} | |
| $failed = @() | |
| foreach ($file in $Args) { | |
| $PATH_TO_FILE = $file; | |
| Write-Host "Uploading... ($PATH_TO_FILE)"; |
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
| $API_KEY = 'YOUR API KEY'; | |
| $PATH_TO_FILE = '@BepInEx/plugins/ThatsLit-Release.dll'; | |
| $json = curl.exe --request POST ` | |
| --header 'accept: application/json' ` | |
| --header 'content-type: multipart/form-data' ` | |
| --header "x-apikey: ${API_KEY}" ` | |
| --form "file=${PATH_TO_FILE}" ` | |
| 'https://www.virustotal.com/api/v3/files'; | |
| $j = $json | ConvertFrom-Json; |
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 https from "https"; | |
| import { DependencyContainer } from "tsyringe"; | |
| import { IPostDBLoadMod } from "@spt-aki/models/external/IPostDBLoadMod"; | |
| import { RagfairServer } from "@spt-aki/servers/RagfairServer"; | |
| import { DatabaseServer } from "@spt-aki/servers/DatabaseServer"; | |
| import { ILogger } from "@spt-aki/models/spt/utils/ILogger"; | |
| import { LogTextColor } from "@spt-aki/models/spt/logging/LogTextColor"; | |
| import { LogBackgroundColor } from "@spt-aki/models/spt/logging/LogBackgroundColor"; | |
| import { RagfairPriceService } from "@spt-aki/services/RagfairPriceService"; | |
| import { RagfairOfferService } from "@spt-aki/services/RagfairOfferService"; |
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
| ---- Minecraft Crash Report ---- | |
| // Surprise! Haha. Well, this is awkward. | |
| Time: 2023-05-03 14:42:46 | |
| Description: Exception ticking world | |
| java.lang.RuntimeException: Mixin transformation of net.minecraft.class_2658 failed | |
| at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.getPostMixinClassByteArray(KnotClassDelegate.java:427) | |
| at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.tryLoadClass(KnotClassDelegate.java:323) | |
| at net.fabricmc.loader.impl.launch.knot.KnotClassDelegate.loadClass(KnotClassDelegate.java:218) |
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
| #TabsToolbar.browser-toolbar { | |
| display: inline-block !important; | |
| position: absolute; | |
| top: -22px !important; | |
| right: 10px; | |
| } | |
| .tabbrowser-tab { | |
| display: none !important; | |
| } |
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
| /*Basic Settings*/ | |
| :root { | |
| --navbarWidth : 90vw; /* Set width of navbar. Use px for a fixed width | |
| or vw for a percentage of your window. */ | |
| --animationSpeed : 0.5s; | |
| } | |
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
| MKDIR ..\world\serverconfig | |
| DEL ..\world\serverconfig\*.toml | |
| XCOPY ..\serverconfig\*.toml ..\world\serverconfig\ | |
| PAUSE |
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
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| using CommandLine; | |
| using Google.Cloud.Firestore; | |
| using Google.Cloud.Firestore.V1; | |
| Console.WriteLine("Hello, World!"); | |
| Console.WriteLine("Available operations:\n- write100\n- write1000\n- write10000\n- query100\n- query1000\n- query10000\n- queryAll\n- count"); |
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
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class UIReorderer : MonoBehaviour | |
| { | |
| [Tooltip("The gameobjects get reordered accoring to this. Disable this cause no side effect.")] | |
| public GameObject[] order; | |
| [Tooltip("These are always lower then order[].")] |
NewerOlder