Skip to content

Instantly share code, notes, and snippets.

View allout58's full-sized avatar
🤠
Wrangling code

James Hollowell allout58

🤠
Wrangling code
View GitHub Profile
@allout58
allout58 / docker-compose.yaml
Last active December 29, 2021 12:01
Example Traefik and Authelia integration
version: '3.7'
services:
traefik:
image: traefik:v2.2
container_name: traefik
labels:
- 'traefik.enable=true'
# TODO: Change the Domain
- 'traefik.http.routers.api.rule=Host(`traefik.example.com`)'
- 'traefik.http.routers.api.entrypoints=https'
### Keybase proof
I hereby claim:
* I am allout58 on github.
* I am allout58 (https://keybase.io/allout58) on keybase.
* I have a public key ASDIHb5n6svn2PPseb2ArVTWwgtctMNPHr3oFWcCZQ6zyAo
To claim this, I am signing this object:
@allout58
allout58 / .gitconfig
Created October 14, 2015 21:18
An alias for a pretty log in Git
[alias]
tree = log --all --graph --decorate --oneline
headerChooser.js:13 50recode: INTELNAV.jQuery_1_5_1=1.5.1
headerChooser.js:13 50recode: HTTPS=false
headerChooser.js:13 50recode: CULTURE=EN_US
headerChooser.js:13 50recode: OUTPUTID=gh_support
headerChooser.js:13 50recode: boxmodel=CSS1Compat
headerChooser.js:13 50recode: DESIGN(MAPPED)=2
headerChooser.js:13 50recode: DESIGN(INIT)=2
headerChooser.js:13 50recode: DESIGN(LOADING)=2
headerChooser.js:199 Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check http://xhr.spec.whatwg.org/.
warranty:1 Failed to decode downloaded font: http://www.intel.com/etc/designs/intel/us/en/Fonts/intel-clear-latin.woff
@allout58
allout58 / crashlog
Created June 16, 2015 18:00
Crashlog mystcraft vs. bspkrsCore
[net.minecraft.client.Minecraft:func_71377_b:349]: ---- Minecraft Crash Report ----
// There are four lights!
Time: 6/16/15 1:44 PM
Description: Unexpected error
java.lang.NullPointerException: Unexpected error
at net.minecraft.client.network.NetHandlerPlayClient.func_147282_a(NetHandlerPlayClient.java:243)
at net.minecraft.network.play.server.S01PacketJoinGame.func_148833_a(SourceFile:70)
at net.minecraft.network.play.server.S01PacketJoinGame.func_148833_a(SourceFile:13)
@allout58
allout58 / crashlog
Created April 30, 2015 03:27
Ag Skies 2 [Thermal Dynamics] Crash
---- Minecraft Crash Report ----
// Uh... Did I do that?
Time: 4/29/15 2:19 PM
Description: Exception in server tick loop
java.lang.ArrayIndexOutOfBoundsException: 1
at cofh.thermaldynamics.duct.item.SimulatedInv.func_70301_a(SimulatedInv.java:70)
at cofh.lib.util.helpers.InventoryHelper.insertItemStackIntoInventory(InventoryHelper.java:153)
at cofh.thermaldynamics.duct.item.TileItemDuct.simTransfer(TileItemDuct.java:843)
@allout58
allout58 / gist:e9d0db97a346a7391a5e
Created November 17, 2014 17:39
EnderIO Vat GUI Rendering Bug Report
---- Minecraft Crash Report ----
// Sorry :(
Time: 11/17/14 12:34 PM
Description: Rendering screen
java.lang.NullPointerException: Rendering screen
at crazypants.enderio.machine.still.GuiVat.func_146976_a(GuiVat.java:125)
at net.minecraft.client.gui.inventory.GuiContainer.func_73863_a(GuiContainer.java:78)
at crazypants.gui.GuiContainerBase.func_73863_a(GuiContainerBase.java:117)
package allout58.mods.prisoncraft.client.render;
import java.awt.Color;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.tileentity.TileEntity;