Skip to content

Instantly share code, notes, and snippets.

View yspreen's full-sized avatar
🦆
Working

Nick Spreen yspreen

🦆
Working
View GitHub Profile
This file has been truncated, but you can view the full file.
[10:55:02] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[10:55:02] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[10:55:02] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
[10:55:02] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2854 for Minecraft 1.12.2 loading
[10:55:02] [main/INFO] [FML]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_275, running on Linux:amd64:5.4.0-64-generic, installed at /usr/lib/jvm/java-8-openjdk-amd64/jre
[10:55:03] [main/INFO] [FML]: Searching /root/aboe/./mods for mods
[10:55:03] [main/INFO] [FML]: Searching /root/aboe/./mods/1.12.2 for mods
[10:55:03] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in AppleCore-mc1.12.2-3.4.0.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
[10:55:03] [main/WARN] [FML]: The coremod AppleCore (squeek.applec
---- Minecraft Crash Report ----
// Why is it breaking :(
Time: 2021-01-29 11:14:43 UTC
Description: Watching Server
java.lang.Error: ServerHangWatchdog detected that a single server tick took 60.00 seconds (should be max 0.05)
at net.minecraft.world.World.isOutsideBuildHeight(World.java:225)
at net.minecraft.world.World.getBlockState(World.java:905)
at ivorius.reccomplex.world.gen.feature.structure.generic.transformers.TransformerNaturalAir.lambda$null$4(TransformerNaturalAir.java:126)
---- Minecraft Crash Report ----
// Sorry :(
Time: 2021-01-29 10:54:04 UTC
Description: Watching Server
java.lang.Error: ServerHangWatchdog detected that a single server tick took 60.00 seconds (should be max 0.05)
at gnu.trove.impl.hash.TObjectHash.indexRehashed(TObjectHash.java:216)
at gnu.trove.impl.hash.TObjectHash.index(TObjectHash.java:181)
at gnu.trove.impl.hash.TObjectHash.contains(TObjectHash.java:153)
#!/bin/bash
## Use as ./convert_all.sh [DIRECTORY]
##
## i.e. ./convert_all.sh ~/Downloads
download_file() {
bash AAXtoMP3 --aac -c -e:m4b -t "./out" "$1"
}
#!/bin/sh
vlcconvert() {
######################## Transcode the files using ... ########################
vcodec="mp4v"
acodec="mp4a"
vb="1024"
ab="128"
mux="mp4"
###############################################################################
@yspreen
yspreen / DictionaryKeyPath.swift
Last active November 30, 2022 22:41 — forked from dfrib/DictionaryKeyPath.swift
Swift: Reading and writing to (possible) nested dictionaries for a given key path, using a recursive approach
/*
Copyright 2022 @yspreen
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
do_cut = false
fc = function()
hkc:disable()
if hs.window.focusedWindow():application():bundleID() == "com.apple.finder" then
hs.eventtap.keyStroke({"cmd"}, "C")
do_cut = false
else
hs.eventtap.keyStroke({"cmd"}, "C")
end
@yspreen
yspreen / index.html
Created September 5, 2019 14:58
qBWpbbr
<div class="container">
<span class="lead">Wohnung zur Zwischenmiete:</span>
<span class="lead bg-success ja">Noch Da!</span><br><br>
<p class="lead">
Bitte melden unter <a href="tel:+49123456789">+49 123 456789</a>
</p>
</div>
@yspreen
yspreen / egpu_wake.sh
Last active February 16, 2019 16:45
Automatically keep your MacBook from sleeping, when an eGPU is connected
#!/bin/bash
function no_sleep {
if ! [ -n "${last_pid+x}" ]; then
caffeinate -d &
last_pid=$! &&
echo start caffeinate
fi
sleep 60
}
@yspreen
yspreen / index.html
Created February 10, 2019 16:11
Mars 404 Error Page
<div class="mars"></div>
<img src="https://mars-404.templateku.co/img/404.svg" class="logo-404" />
<img src="https://mars-404.templateku.co/img/meteor.svg" class="meteor" />
<p class="title">Oh no!!</p>
<p class="subtitle">
You’re either misspelling the URL <br /> or requesting a page that's no longer here.
</p>
<div align="center">
<a class="btn-back" href="#">Back to previous page</a>
</div>