// 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
| # ps3decrs 2.0.1 (https://github.com/Redrrx/ps3dec/releases/tag/2.0.1) as a Docker container. | |
| # Works on any OS. | |
| # | |
| # Instructions | |
| # | |
| # 1. Download this Dockerfile and put it in a folder | |
| # 2. Build the image: `docker build -t ps3decrs .` | |
| # 3. In a folder, lets call it X, create a folder called "keys" and put your dkeys in there | |
| # 4. In the X folder, put your encrypted ISO's, with same filename as your dkey (minus the .dkey part) | |
| # 5. Your X folder should now look like this: |
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
| # assumes you are connected to the internet (try pinging google) | |
| # apply swedish keyboard layout | |
| loadkeys sv-latin1 | |
| # apply swedish timezone | |
| timedatectl set-ntp true | |
| ln -sf /usr/share/zoneinfo/Europe/Stockholm /etc/localtime | |
| hwclock --systohc |
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 | |
| # requires bc, lm-sensors, nvidia-smi | |
| CPU_MODEL=$(cat /proc/cpuinfo | grep "model name" | uniq | sed 's/model name[[:space:]]*:[[:space:]]*//') | |
| SENSORS_OUTPUT="" | |
| # Helper functions for min/max tracking | |
| declare -A MIN_VALUES | |
| declare -A MAX_VALUES |
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
| http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/secure/themerlinshow/rotl_0482.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/secure/themerlinshow/rotl_0484.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/themerlinshowhi/rotl_0035.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/themerlinshowhi/rotl_0036.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/themerlinshowhi/rotl_0037.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/themerlinshowhi/rotl_0038.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/www.merlinmann.com/storage/b2w-031.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/www.merlinmann.com/storage/rotl/ballew-rotl-song.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/www.merlinmann.com/storage/rotl/rotl-0018.mp3 | |
| http://www.podtrac.com/pts/redirect.mp3/www.merlinmann.com/storage/rotl/rotl_00023.mp3 |
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, json, csv, sys, subprocess | |
| from tqdm import tqdm | |
| # Export from Spotify using exportify.app, then run this on it when you have the songs! | |
| metaFile = "meta.json" | |
| audioExts = [".mp3", ".flac", ".ogg", ".opus", ".wav", ".m4a", ".aac"] | |
| musicDir = "/Volumes/Media/Music/Organized/" # CHANGE THIS! | |
| playlistBasepath = "../" # CHANGE THIS relative to musicDir from the playlists perspective |
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
| # requirements: | |
| # pip3 install bs4 requests | |
| # 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 |
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: |
NewerOlder
