Skip to content

Instantly share code, notes, and snippets.

View JayWood's full-sized avatar

JayWood

View GitHub Profile
# RandomPatches configuration
[29Apr2020 18:48:09.109] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 31.1.47, --fml.mcpVersion, 20200414.225201, --fml.mcVersion, 1.15.2, --fml.forgeGroup, net.minecraftforge, nogui]
[29Apr2020 18:48:09.112] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 5.0.0-milestone.4+67+b1a340b starting: java version 11.0.7 by Ubuntu
[29Apr2020 18:48:09.316] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust
[29Apr2020 18:48:09.450] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8 Source=file:/home/minecraft/servers/plunger/mods/MixinBootstrap-1.0.2.jar Service=ModLauncher Env=SERVER
[29Apr2020 18:48:09.967] [main/INFO] [STDERR/]: [jdk.nashorn.api.scripting.NashornScriptEngine:<init>:143]: Warning: Nashorn engine is planned to be removed from a future JDK release
[29Apr2020 18:48:10.034] [main/INFO] [STDERR/]: [jdk.nashorn
This file has been truncated, but you can view the full file.
[29Apr2020 18:48:09.109] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 31.1.47, --fml.mcpVersion, 20200414.225201, --fml.mcVersion, 1.15.2, --fml.forgeGroup, net.minecraftforge, nogui]
[29Apr2020 18:48:09.112] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 5.0.0-milestone.4+67+b1a340b starting: java version 11.0.7 by Ubuntu
[29Apr2020 18:48:09.121] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,testharness,fmlclient,fmlserver]
[29Apr2020 18:48:09.128] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : []
[29Apr2020 18:48:09.139] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [eventbus,object_holder_definalize,runtime_enum_extender,capability_inject_definalize,accesstransformer,runtimedistcleaner]
[29Apr2020 18:48:09.145] [main/DEBUG] [cpw.mods.m
This file has been truncated, but you can view the full file.
[29Apr2020 18:48:09.109] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 31.1.47, --fml.mcpVersion, 20200414.225201, --fml.mcVersion, 1.15.2, --fml.forgeGroup, net.minecraftforge, nogui]
[29Apr2020 18:48:09.112] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 5.0.0-milestone.4+67+b1a340b starting: java version 11.0.7 by Ubuntu
[29Apr2020 18:48:09.121] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,testharness,fmlclient,fmlserver]
[29Apr2020 18:48:09.128] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : []
[29Apr2020 18:48:09.139] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [eventbus,object_holder_definalize,runtime_enum_extender,capability_inject_definalize,accesstransformer,runtimedistcleaner]
[29Apr2020 18:48:09.145] [main/DEBUG] [cpw.mods.m
@JayWood
JayWood / phpstorm-livetemplate-wpcli-scaffold.txt
Created June 21, 2019 14:57
A live template for PHPStorm to create WP-CLI commands on-the-fly.
namespace $var1$;
use Exception;
use WP_CLI;
class $class$ {
/**
* The WP-CLI Command Arguments
*
* Nothing to see here.
<?php
/**
* Include all non-core taxonomies in the sync request, limiting by publicly queryable.
*
* @param array The list of existing taxonomies.
* @return array The new array list.
*/
function sync_non_core_taxonomies( $taxonomies ) {
$taxes = get_taxonomies();
foreach ( $taxes as $taxonomy ) {
@JayWood
JayWood / default.conf
Created January 13, 2019 03:57
Don't want to download your uploads from the remote, me either...
# Directives to send expires headers and turn off 404 error logging.
location ~* .(js|css|png|jpg|jpeg|gif|ico|mp3|mov|tif|tiff|swf|txt|html)$ {
expires 24h;
log_not_found off;
try_files $uri $uri/ @production;
}
location @production {
resolver 8.8.8.8;
# replace www.livesite.com with the production site URL
/vendor/
.gitignore
composer.*
readme.md
/.git/
uploads/
upgrade/
*node_modules*
*.gitignore
*.gitmodules
<?php
namespace JW\CLI;
use WP_CLI;
use WP_CLI_Command;
/**
* A shortcode scraper class.
*/
@JayWood
JayWood / shortcode-scraper.php
Created September 10, 2018 11:00
A tool to provide reports for short-codes created.
<?php
namespace JW\CLI;
use WP_CLI;
use WP_CLI_Command;
/**
* A shortcode scraper class.
*/