Skip to content

Instantly share code, notes, and snippets.

View Phoenix616's full-sized avatar
🔥
👀

Max Lee Phoenix616

🔥
👀
View GitHub Profile
@Phoenix616
Phoenix616 / ForceResourcepacks information.md
Last active February 7, 2024 21:02
Bukkit/Spigot and Velocity/Bungee default configs for the ForceResourcepacks plugin: https://frp.phoenix616.dev
@Phoenix616
Phoenix616 / GW2 Total Control v1.1 (mod by The Moep) AHK-Binds.ahk
Last active February 12, 2019 17:33 — forked from buboscandiacus/GW2-Total-Control-by-CoryOp-v1-AHK-Binds
Steam Controller companion script to make some functions that the controller config doesn't support (mainly text input) https://s.moep.tv/gwsc
/*
~~ GW2 Total Control Steam Controller config companion script ~~
By CoryOp (https://redd.it/5vix4x), modified by The Moep aka Phoenix616
See https://s.moep.tv/gwsc for more information!
Changelog:
v1.1:
- Used methods to simplify keybinds
- Added emotes
@Phoenix616
Phoenix616 / gw2 total control v1.1 (mod by the moep)_0.vdf
Created February 12, 2019 18:23
Based on CoryOp's v1 configuration. See https://s.moep.tv/gwsc for more info. Updated to use layers and to provide an emote menu.
"controller_mappings"
{
"version" "3"
"revision" "226"
"title" "GW2 Total Control v1.1 (mod by The Moep)"
"description" "Based on CoryOp's v1 configuration. See s.moep.tv/gwsc for more info. Updated to use layers and to provide an emote menu."
"creator" "76561198022182680"
"controller_type" "controller_steamcontroller_gordon"
"Timestamp" "403439616"
"actions"
@Phoenix616
Phoenix616 / Different-cursors-for-different-links.user.css
Last active October 10, 2023 20:57
Different cursors for different links Stylus style

Keybase proof

I hereby claim:

  • I am Phoenix616 on github.
  • I am phoenix616 (https://keybase.io/phoenix616) on keybase.
  • I have a public key whose fingerprint is 7A2E 6B10 8BA3 486B AD2D A9FA CD3E 65A8 A356 C4D4

To claim this, I am signing this object:

@Phoenix616
Phoenix616 / jenkins-set-all-jobs-to-block-on-upstream.groovy
Created February 12, 2020 15:39
This is a small groovy script to be used in Jenkins' Groovy console to change all jobs to block when upstream jobs build. (Or any other property)
for(item in Jenkins.instance.items) {
println("job $item.name")
if (item.hasProperty("blockBuildWhenUpstreamBuilding")) {
item.blockBuildWhenUpstreamBuilding = true
println("set to $item.blockBuildWhenUpstreamBuilding")
}
}
@Phoenix616
Phoenix616 / DarkJavadocs.user.css
Last active May 15, 2023 15:45
Dark Java 9-18 Javadocs Userstyle
/* == UserStyle==
@name Dark Javadocs
@namespace https://phoenix616.dev
@description Dark Java 9-18 Javadocs Userstyle
@author Max Lee aka Phoenix616 (https://phoenix616.dev)
@version 0.1.13
@homepageURL https://gist.github.com/Phoenix616/cc725e0f417af2f987b92e711ad37a98/
@license CC0
@updateURL https://gist.github.com/Phoenix616/cc725e0f417af2f987b92e711ad37a98/raw/27f6db9b5f0dd05930e0b9b8c853d2e35bfe99d0/DarkJavadocs.user.css
==/UserStyle== */
@Phoenix616
Phoenix616 / list.php
Last active June 13, 2022 20:03
Simple Directory List
<!--
Simple Directory List
Copyright (C) 2020 Max Lee aka Phoenix616 (max@themoep.de)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
@Phoenix616
Phoenix616 / Anonvite.md
Last active September 27, 2020 22:25
Simple php scripts to redirect to anonymous Discord invite links from a server's widget settings.

Anonvite

Simple php scripts to redirect to anonymous Discord invite links from a server's widget settings.

These will not show a specific user who invited as well as automatically connect to the text channel specified in the widget settings. (And if the widget/invite is disabled it will just not work)

Example

Usage

package de.minebench.mbutils.bukkit.modules;
import com.Acrobot.ChestShop.Events.ItemInfoEvent;
import de.minebench.mbutils.bukkit.MbUtils;
import org.bukkit.ChatColor;
import org.bukkit.GameMode;
import org.bukkit.NamespacedKey;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;