In the .h file you forward declare:
#include ...
#include "...generated.h"
| 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() |
| @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 |
| SceneManager.LoadScene(SceneManager.GetActiveScene().name); |
| // 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; |
| using TMPro; | |
| using UnityEngine; | |
| [RequireComponent(typeof(OnlineScoreRecorder))] | |
| public class OldSchoolNameEntry : MonoBehaviour | |
| { | |
| [SerializeField] private TMP_Text _firstLetterButton; | |
| [SerializeField] private TMP_Text _secondLetterButton; |
| # if you know you know | |
| import os, shutil | |
| out_folder = "./bundled/" | |
| pkg_folder = "./packages/" | |
| rap_folder = "./exdata/" | |
| rap_files = [] |
| REM Killall oculus to get rid of the botnets... or if Oculus Link just is stubborn for some reason... | |
| REM Killing everything Oculus related, and then opening the Oculus app again usually fixes it | |
| REM Run as admin! | |
| REM Multiples because theyre stubborn sometimes | |
| taskkill /f /im OculusClient.exe | |
| taskkill /f /im OVRRedir.exe | |
| taskkill /f /im oculus-platform-runtime.exe |
| # -*- coding: utf-8 -*- | |
| # usage: caption.py image.jpg "The text" | |
| # you can use a | to force a newline | |
| # settings | |
| strokew = 4 # outline width | |
| stroke_color = "#101010" # outline color | |
| font_color = "#f0f0f0" # ebeb0b=yellow, f0f0f0=white |
| import netatmo, json, sys | |
| if len(sys.argv) < 5: | |
| # get clientid/secret from here https://dev.netatmo.com/apps/ | |
| print("usage: script.py clientid clientsecret username password") | |
| sys.exit(1) | |
| ws = netatmo.WeatherStation( { | |
| 'client_id': sys.argv[1], | |
| 'client_secret': sys.argv[2], |