Skip to content

Instantly share code, notes, and snippets.

@Aaron1011
Aaron1011 / new_fake_paste.sh
Last active October 22, 2018 20:13
Real fake paste
sleep 0.2
export DISPLAY=:0
contents=$(xclip -out -selection clipboard )
xdotool type "$contents"
sleep 0.2
@Aaron1011
Aaron1011 / fake_paste.sh
Created October 21, 2018 23:10
Fake paste
sleep 0.2
export DISPLAY=:0
contents=$(xclip -out -selection clipboard )
xdotool type $contents
BISECT: running pass (1) Simplify the CFG on function (_ZN38_$LT$core..option..Option$LT$T$GT$$GT$5ok_or17h4281056672a8d3efE)
BISECT: running pass (2) SROA on function (_ZN38_$LT$core..option..Option$LT$T$GT$$GT$5ok_or17h4281056672a8d3efE)
BISECT: running pass (3) Early CSE on function (_ZN38_$LT$core..option..Option$LT$T$GT$$GT$5ok_or17h4281056672a8d3efE)
BISECT: running pass (4) Simplify the CFG on function (_ZN38_$LT$core..option..Option$LT$T$GT$$GT$6unwrap17hb5bd41d1ab85ed34E)
BISECT: running pass (5) SROA on function (_ZN38_$LT$core..option..Option$LT$T$GT$$GT$6unwrap17hb5bd41d1ab85ed34E)
BISECT: running pass (6) Early CSE on function (_ZN38_$LT$core..option..Option$LT$T$GT$$GT$6unwrap17hb5bd41d1ab85ed34E)
BISECT: running pass (7) Simplify the CFG on function (_ZN3std2rt10lang_start17h87222d106ff7b973E)
BISECT: running pass (8) SROA on function (_ZN3std2rt10lang_start17h87222d106ff7b973E)
BISECT: running pass (9) Early CSE on function (_ZN3std2rt10lang_start17h87222d106ff7b973E)
BISECT: running pass (10)
This file has been truncated, but you can view the full file.
[19:51:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[19:51:10] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
[19:51:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
[19:51:10] [main/INFO] [FML]: Forge Mod Loader version 14.23.4.0 for Minecraft 1.12.2 loading
[19:51:10] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_171, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_171\jre
[19:51:10] [main/WARN] [FML]: The coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin) is not signed!
[19:51:10] [main/WARN] [FML]: The coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin) is not signed!
[19:51:10] [main/INFO] [FML]: Searching C:\Almura-3.0\.\mods for mods
[19:51:10] [main/INFO] [FML]: Loading tweaker org.spongepowered.asm.launch.M
com.google.common.util.concurrent.UncheckedExecutionException: java.lang.ArrayIndexOutOfBoundsException: 19
at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2051) ~[guava-23.6-jre.jar:na]
at com.google.common.cache.LocalCache.get(LocalCache.java:3962) ~[guava-23.6-jre.jar:na]
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3966) ~[guava-23.6-jre.jar:na]
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4951) ~[guava-23.6-jre.jar:na]
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4957) ~[guava-23.6-jre.jar:na]
at com.google.inject.internal.util.StackTraceElements.forMember(StackTraceElements.java:71) ~[guice-4.2.0.jar:na]
at com.google.inject.internal.Messages.formatParameter(Messages.java:282) ~[guice-4.2.0.jar:na]
at com.google.inject.internal.Messages.formatInjectionPoint(Messages.java:273) ~[guice-4.2.0.jar:na]
at com.google.inject.internal.Messages.formatSource(Messages.java:229) ~[guice-4.2.0.jar:na]
---- Minecraft Crash Report ----
WARNING: coremods are present:
Techguns Core (techguns-1.12.2-2.0.1.0.jar)
SpongeCoremod (spongeforge-1.12.2-2655-7.1.0-BETA-3065.jar)
Inventory Tweaks Coremod (InventoryTweaks-1.64-dev.jar)
BetterFoliageLoader (BetterFoliage-MC1.12-2.1.10.jar)
EnderCorePlugin (EnderCore-1.12.2-0.5.22.jar)
Contact their authors BEFORE contacting forge
@Aaron1011
Aaron1011 / guess_url.py
Last active January 15, 2018 02:38
Permanent Redirect Guesser
import requests
import sys
import time
import datetime
URL = "https://permanent-redirect.xyz/pages/{}"
def main():
start = datetime.datetime.now()
for minute in range(start.minute, -1, -1):
@Aaron1011
Aaron1011 / bookmarklet.js
Created October 19, 2017 17:59
Kahoot guessing bookmarklet
javascript:(function() {
input = $("input");
button = $("button");
function rand() { return Math.floor(((Math.random() * (999999) - (100000)) + 100000)) }
function guess() { input.val(rand().toString()); input.trigger('change'); input.trigger('input'); button.click(); latest = setTimeout(guess, 5000) }
guess();
})();
# Sample TOML configuration file for building Rust.
#
# To configure rustbuild, copy this file to the directory from which you will be
# running the build, and name it config.toml.
#
# All options are commented out by default in this file, and they're commented
# out with their default values. The build system by default looks for
# `config.toml` in the current directory of a build for build configuration, but
# a custom configuration file can also be specified with `--config` to the build
# system.