Skip to content

Instantly share code, notes, and snippets.

View chylex's full-sized avatar

chylex

View GitHub Profile
@chylex
chylex / gist:65f2531da79185bdf199
Created April 21, 2015 14:25
FML Loading Screen - laptop
[16:22:34] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:89]: ---- Minecraft Crash Report ----
// Daisy, daisy...
Time: 21.4.15 16:22
Description: Loading screen debug info
java.lang.Throwable
at cpw.mods.fml.client.SplashProgress.start(SplashProgress.java:88)
at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:190)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:480)
@chylex
chylex / gist:787116eb1631456672c0
Created April 21, 2015 14:35
FML Loading Screen - desktop with mods
[16:27:59] [Client thread/INFO] [STDOUT/]: [cpw.mods.fml.client.SplashProgress:start:89]: ---- Minecraft Crash Report ----
// Quite honestly, I wouldn't worry myself about that.
Time: 21.4.15 16:27
Description: Loading screen debug info
java.lang.Throwable
at cpw.mods.fml.client.SplashProgress.start(SplashProgress.java:88)
at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:190)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:480)
@chylex
chylex / OpenEye_tweaks.user.js
Created April 26, 2015 17:02
Greasemonkey script - OpenEye magic button (removes duplicates and unwanted reports)
// ==UserScript==
// @name OpenEye tweaks
// @namespace http://chylex.com/
// @include http://openeye.openmods.info/crashes
// @include https://openeye.openmods.info/crashes
// @include http://openeye.openmods.info/crashes?page=1
// @include https://openeye.openmods.info/crashes?page=1
// @version 1
// ==/UserScript==
@chylex
chylex / ItemStack.java
Last active September 19, 2015 01:27
ItemStack block fix?
public class ItemStack{
private final Block linkedBlock;
public ItemStack(Block block, ...){
this(...);
this.block = linkedBlock;
}
public Item getItem(){
if (linkedBlock != null && (delegate == null || delegate.get() == null)){
@chylex
chylex / gist:28a512ab744b33a8fe51
Created March 19, 2016 00:27
[1.9] Forge living mount crash
---- Minecraft Crash Report ----
// Everything's going to plan. No, really, that was supposed to happen.
Time: 19.3.16 1:21
Description: Ticking entity
java.lang.NullPointerException: Ticking entity
at net.minecraft.entity.player.EntityPlayer.func_70098_U(EntityPlayer.java:452)
at net.minecraft.world.World.func_72866_a(World.java:1930)
at net.minecraft.world.WorldServer.func_72866_a(WorldServer.java:836)
@chylex
chylex / gist:becca5b57b446eac72f225dabcc346d5
Created August 25, 2016 11:23
TweetDuck RT/Fav list scrollbar hack
.js-column-social-proof > div {
height: 100%;
overflow-y: auto;
scrollbar-face-color: #505254;
scrollbar-highlight-color: #505254;
scrollbar-shadow-color: #505254;
scrollbar-darkshadow-color: #505254;
scrollbar-track-color: #292F33;
scrollbar-3dlight-color: #505254;
scrollbar-arrow-color: #8899a6;
@chylex
chylex / gist:b367a4684e956fc502c446fb5ed21605
Created October 13, 2016 04:07
TweetDuck CSS - Fix Retweet Icon Color
.icon-retweet.activity-indicator { color: #19CF86 }
[23:03:31 INFO]: UUID of player chylex is a1936a78-e447-4148-98dc-a1bf49ac6582
[23:03:31 DEBUG]: OUT: [LOGIN:3] net.minecraft.network.login.server.SPacketEnableCompression
[23:03:31 DEBUG]: OUT: [LOGIN:2] net.minecraft.network.login.server.SPacketLoginSuccess
[23:03:31 DEBUG]: Set listener of net.minecraft.network.NetworkManager@4fea7cf2 to net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1@516c3679
[23:03:31 DEBUG]: Enabled auto read
[23:03:31 INFO]: Connection received without FML marker, assuming vanilla.
[23:03:31 INFO]: [Server thread] Server side vanilla connection established
[23:03:31 INFO]: chylex[/127.0.0.1:58321] logged in with entity id 407 at (78.1896787597161, 71.0, 131.1528051218031)
[23:03:31 DEBUG]: OUT: [PLAY:35] net.minecraft.network.play.server.SPacketJoinGame
[23:03:31 DEBUG]: OUT: [PLAY:24] net.minecraft.network.play.server.SPacketCustomPayload
$(".js-app").on("mouseenter", "a[data-user-name]", function(){
TD.cache.twitterUsers.getByScreenName($(this).attr("data-user-name")).addCallback(n => $TD.displayTooltip(n.name, false))
}).on("mouseenter", "a[rel=user]", function(){
$TD.displayTooltip($(this).attr("href").replace(/.*\//, "@"), false);
}).on("mouseleave", "a[data-user-name], a[rel=user]", e => $TD.displayTooltip(null, false));
@chylex
chylex / gist:44ac3a670817ce633db8297496cb9018
Created April 7, 2018 11:31
TweetDuck - CSS - Column Colors
/*
* The number inside nth-child(...) is the column, counting from 1.
* Increase or decrease -3px to change the thickness.
*
* The first number inside hsl(..., 50%, 50%) is the color hue, goes from 0 to 360.
* The percentages control saturation and level/brightness.
*
* Increase or decrease -3px to change the thickness.
*
* The example below is for 3 columns, add more with custom colors as you wish.