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 Lost Ark Fixer | |
| // @namespace https://lostarkmap.com/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://lostarkmap.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=lostarkmap.com | |
| // @grant GM_addStyle | |
| // ==/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
| // ==UserScript== | |
| // @name Potato Hider | |
| // @description Hides them numbers. | |
| // @version 0.6 | |
| // @match https://www.twitch.tv/videos* | |
| // @match https://www.twitch.tv/*/videos* | |
| // @match https://www.twitch.tv/directory/following/videos* | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js | |
| // @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
| private float HorizontalSpacing => canvasRectWidth * 0.3f; // The horizontal spacing between nodes | |
| private float VerticalSpacing => canvasRectHeight + 24; // The vertical spacing between nodes | |
| private HashSet<DialogueEntry> visited = new(); | |
| private HashSet<DialogueEntry> subtreeVisited = new(); | |
| private HashSet<DialogueEntry> subtreeWidthAdded = new(); | |
| private Dictionary<DialogueEntry, float> subTreeWidths = new(); | |
| private void ArrangeNodes() | |
| { | |
| CalculatePositions(currentConversation.dialogueEntries[0], 0, 0); |
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/env bash | |
| # This script is public domain. | |
| # If your government doesn't allow that, it doesn't matter. What're they gonna do? Sue me? | |
| # Just a useful script for changing the name of your repo. | |
| # Variables | |
| ROOT_FOLDER=~/ | |
| OLD=${1:-main} | |
| NEW=${2:-master} |
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
| namespace Sirenix.OdinInspector | |
| { | |
| #pragma warning disable | |
| using System; | |
| using UnityEngine; | |
| [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)] | |
| [System.Diagnostics.Conditional("UNITY_EDITOR")] | |
| public class SizedBoxGroupAttribute : PropertyGroupAttribute |
OlderNewer