Skip to content

Instantly share code, notes, and snippets.

View OmegaRogue's full-sized avatar
🏳️‍⚧️

OmegaRogue OmegaRogue

🏳️‍⚧️
View GitHub Profile
@OmegaRogue
OmegaRogue / Directory_Prompts_WT_Uninstall.reg
Last active June 24, 2024 10:52
Registry script to add windows terminal with cmd, powershell and ubuntu profiles to the explorer context menu with normal and admin permissions. To use, replace <Username> with your username
Windows Registry Editor Version 5.00
; Windows terminal
[-HKEY_CLASSES_ROOT\Directory\shell\MenuWindowsTerminal]
[-HKEY_CLASSES_ROOT\Directory\background\shell\MenuWindowsTerminal]
[-HKEY_CLASSES_ROOT\Directory\LibraryFolder\shell\MenuWindowsTerminal]
@OmegaRogue
OmegaRogue / gist:6e776cf89fc736be91ce808e9d10ffee
Last active March 26, 2020 11:42
Jetbrain Darcula Colors
--panel-background: #3C3F41;
--panel-foreground: #ADADAD;
--button-hover-background: #4B4F51;
--editor-background: #2B2B2B;
--editor-foreground: #A9B7C6;
--editor-sidebar-background: #313335;
--line-number: #606366;
--current-line: #A4A3A3;
--selected-tool: #343638;
@OmegaRogue
OmegaRogue / CheckerPlusDarcula.css
Last active April 20, 2024 11:01
Checker Plus for Gmail skin, based on the Darcula theme for JetBrains IDEs, skin based on "Dark Red by Occam"
/*background color*/
.mail,
body.popup app-toolbar:not(.accountHeader),
#betaCalendar .fc-month-view .timedEvent .fc-content:hover .fc-title,
app-header,
.fc-unthemed .fc-list-item:hover td,
.label {
background-color: var(--primary-background-color) !important;
}
paper-item:hover,
Name: node01
Roles: master
Labels: beta.kubernetes.io/arch=arm
beta.kubernetes.io/os=linux
kubernetes.io/arch=arm
kubernetes.io/hostname=node01
kubernetes.io/os=linux
node-role.kubernetes.io/master=
Annotations: kubeadm.alpha.kubernetes.io/cri-socket: /var/run/dockershim.sock
node.alpha.kubernetes.io/ttl: 0
[Message: BepInEx] BepInEx 5.0.0.0 RC1 - Nimbatus
[Message: BepInEx] Compiled in Unity v2018 mode
[Info : BepInEx] Running under Unity v2018.4.6.13492667
[Message: BepInEx] Preloader started
[Info : MonoMod] Collecting target assemblies from mods
[Info : BepInEx] Loaded 1 patcher methods from BepInEx.MonoMod.Loader
[Debug : BepInEx] Loaded 0 patcher methods from Mono.Cecil.Mdb
[Debug : BepInEx] Loaded 0 patcher methods from Mono.Cecil.Pdb
[Debug : BepInEx] Loaded 0 patcher methods from MonoMod.Utils
[Info : BepInEx] 2 patcher plugin(s) loaded
System.Configuration.ConfigurationErrorsException: Error Initializing the configuration system. ---> System.ArgumentException: The 'ExeConfigFilename' argument cannot be null.
at System.Configuration.ExeConfigurationHost.CheckFileMap (System.Configuration.ConfigurationUserLevel level, System.Configuration.ExeConfigurationFileMap map) [0x0001b] in <6059efc7edf04e0e961e7c6d07f605e4>:0
at System.Configuration.ExeConfigurationHost.InitForConfiguration (System.String& locationSubPath, System.String& configPath, System.String& locationConfigPath, System.Configuration.Internal.IInternalConfigRoot root, System.Object[] hostInitConfigurationParams) [0x00030] in <6059efc7edf04e0e961e7c6d07f605e4>:0
at System.Configuration.InternalConfigurationSystem.InitForConfiguration (System.String& locationConfigPath, System.String& parentConfigPath, System.String& parentLocationConfigPath) [0x00000] in <6059efc7edf04e0e961e7c6d07f605e4>:0
at System.Configuration.Configuration..ctor (System.Configuration.InternalConfigu
[Message: BepInEx] BepInEx 5.0.0.0 RC1 - Nimbatus
[Message: BepInEx] Compiled in Unity v2018 mode
[Info : BepInEx] Running under Unity v2018.4.6.13492667
[Message: BepInEx] Preloader started
[Debug : BepInEx] Loaded 0 patcher methods from Assembly-CSharp.API.mm
[Info : MonoMod] Collecting target assemblies from mods
[Info : BepInEx] Loaded 1 patcher methods from BepInEx.MonoMod.Loader
[Info : BepInEx] 2 patcher plugin(s) loaded
[Info : BepInEx] Patching [UnityEngine.CoreModule] with [BepInEx.Chainloader]
[Info : BepInEx] Patching [Assembly-CSharp] with [BepInEx.MonoMod.Loader/BepInEx.MonoMod.Loader.Patcher]
@OmegaRogue
OmegaRogue / PrepareLeonModuleDev.sh
Created October 24, 2019 18:12
Leon AI prepare module folder for development
touch __init__.py
touch README.md
touch version.txt
echo 0.0.0 >> version.txt
mkdir config
touch config/config.sample.json
@OmegaRogue
OmegaRogue / Digirule2JnR
Last active July 22, 2019 18:32
Digirule2JnR
// Some handy constants
%define grounded 240
%define AirTime 241
%define Area1 242
%define Area1.2 243
%define Area2.1 244
%define Area2.2 245
%define Area3.1 246
%define Area3.2 247
%define Area4.1 248
import java.io.*;
import java.net.URL;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;