// Returns all tags related to this ability
UFUNCTION(BlueprintPure, Category="GAS|Ability|Tags")
void GetTags(FGameplayTagContainer & OutAbilityTags, FGameplayTagContainer & OutCancelAbilitiesWithTags, FGameplayTagContainer & OutBlockAbilitiesWithTags, FGameplayTagContainer & OutActivationOwnedTags, FGameplayTagContainer & OutActivationRequiredTags, FGameplayTagContainer & OutActivationBlockedTags, FGameplayTagContainer & OutSourceRequiredTags, FGameplayTagContainer & OutSourceBlockedTags, FGameplayTagContainer & OutTargetRequiredTags, FGameplayTagContainer & OutTargetBlockedTags, FGameplayTagContainer & OutCooldownTags);
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
# usage: | |
# python3 myrient_size.py URL | |
# OR | |
# python3 myrient_size.py URLS.txt | |
# (where URLS.txt contains 1 URL per line) | |
from bs4 import BeautifulSoup | |
import sys, requests | |
import urllib.parse |
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/sh | |
set -e | |
do_install() { | |
echo "#######################################################" | |
echo "# Chromium Install Script (modified 2024-12-07 19:29) #" | |
echo "#######################################################" | |
if [ -f "/etc/apt/sources.list" ]; then | |
# This is unneccessary (doesnt exist) for node:20 images atleast but just in case... | |
echo "Backing up existing sources.list" |
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 subprocess, time, os, requests | |
CHECK_INTERVAL = 1 # check changes every n secs | |
DISCORD_WEBHOOK = "https://discord.com/api/webhooks/..." | |
LAST_CACHE = "last.txt" | |
# read last commit from cache file | |
last = 0 | |
if os.path.isfile(LAST_CACHE): | |
with open(LAST_CACHE,'r') as f: |
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 | |
def get_running_exes(): # https://www.geeksforgeeks.org/python-get-list-of-running-processes/ | |
wmic_output = os.popen('wmic process get description, processid').read().strip() | |
items = wmic_output.split("\n") | |
exes = [] | |
for line in items: | |
if ".exe" in line.strip(): | |
exe = line.split(" ")[0].rstrip() |
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
@echo off | |
REM put this in your .../World of Warcraft/_game_version_/Fonts folder | |
REM then drag n drop a font onto it to replace the games fonts | |
del ARIALN.ttf | |
del DAMAGE.ttf | |
del FRIENDS.ttf | |
del FRIZQT__.ttf | |
del MORPHEUS.ttf |
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
SceneManager.LoadScene(SceneManager.GetActiveScene().name); |
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
// Requires yt-dlp.exe in %PATH% !! | |
using System.Collections; | |
using UnityEngine; | |
using UnityEngine.Events; | |
using UnityEngine.Windows; | |
public class IllegalScript : MonoBehaviour | |
{ | |
private string savefolder; | |
private string current_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
using TMPro; | |
using UnityEngine; | |
[RequireComponent(typeof(OnlineScoreRecorder))] | |
public class OldSchoolNameEntry : MonoBehaviour | |
{ | |
[SerializeField] private TMP_Text _firstLetterButton; | |
[SerializeField] private TMP_Text _secondLetterButton; |
NewerOlder