This gist contains information about the different default configs of the ForceResourcepacks Bukkit and Bungee plugin.
π₯
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
/* | |
~~ 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 |
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
"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" |
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
/* ==UserStyle== | |
@name Different cursors for different links | |
@namespace github.com/Phoenix616 | |
@version 1.0.0 | |
@license unlicense | |
@preprocessor default | |
==/UserStyle== */ | |
@namespace url(http://www.w3.org/1999/xhtml); |
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:
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
for(item in Jenkins.instance.items) { | |
println("job $item.name") | |
if (item.hasProperty("blockBuildWhenUpstreamBuilding")) { | |
item.blockBuildWhenUpstreamBuilding = true | |
println("set to $item.blockBuildWhenUpstreamBuilding") | |
} | |
} |
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
/* ==UserStyle== | |
@name Dark Javadocs | |
@namespace 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/DarkJavadocs.user.css | |
==/UserStyle== */ |
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
<!-- | |
Simple Directory List | |
Copyright (C) 2020 Max Lee aka Phoenix616 ([email protected]) | |
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, |
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)
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
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; |