Skip to content

Instantly share code, notes, and snippets.

View 8bitbuddhist's full-sized avatar

Andre 8bitbuddhist

View GitHub Profile
@8bitbuddhist
8bitbuddhist / Skyrim SE Modlist - AE 1.6.640.csv
Last active December 11, 2023 00:46
Skyrim SE Modlist for Anniversary Edition v 1.6.640 (Kishni)
#Mod_Priority #Mod_Status #Mod_Name #Note #Primary_Category #Nexus_ID #Mod_Nexus_URL #Mod_Version
0000 + DLC: HearthFires -1
0001 + DLC: Dragonborn -1
0002 + DLC: Dawnguard -1
0003 + Creation Club: ccQDRSSE001-SurvivalMode -1
0004 + Creation Club: ccBGSSSE037-Curios -1
0005 + Creation Club: ccBGSSSE025-AdvDSGS -1
0006 + Creation Club: ccBGSSSE001-Fish -1
0007 + Unofficial Skyrim Creation Club Content Patch 18975 https://www.nexusmods.com/skyrimspecialedition/mods/18975 7.7.0.0
0008 + Mature Skin 2 CBBE (SE) 26017 https://www.nexusmods.com/skyrimspecialedition/mods/26017 2.15.2.0
@8bitbuddhist
8bitbuddhist / AiresESOPreset.ini
Last active September 26, 2023 22:33
Aires' Elder Scrolls Online ReShade Preset: HDR, sharper textures, more vibrant colors
KeyAdaptiveSharpen@AdaptiveSharpen.fx=103,0,0,0
KeyBorder@Border.fx=97,0,0,0
KeyClarity@Clarity.fx=104,0,0,0
KeyDPX@DPX.fx=98,0,0,0
KeyFXAA@FXAA.fx=100,0,0,0
KeyGaussianBlur@GaussianBlur.fx=101,0,0,0
KeyTechnicolor2@Technicolor2.fx=99,0,0,0
KeyTechnicolor@Technicolor.fx=102,0,0,0
Techniques=MagicHDR@MagicHDR.fx,Vibrance@Vibrance.fx,AmbientLight@AmbientLight.fx,FilmicAnamorphSharpen@FilmicAnamorphSharpen.fx,EyeAdaption@EyeAdaption.fx
TechniqueSorting=MagicHDR@MagicHDR.fx,HDR@FakeHDR.fx,Vibrance@Vibrance.fx,AmbientLight@AmbientLight.fx,Levels@Levels.fx,Clarity@Clarity.fx,FilmicAnamorphSharpen@FilmicAnamorphSharpen.fx,EyeAdaption@EyeAdaption.fx,AdaptiveSharpen@AdaptiveSharpen.fx,Border@Border.fx,DPX@DPX.fx,FXAA@FXAA.fx,GaussianBlur@GaussianBlur.fx,Technicolor@Technicolor.fx,Technicolor2@Technicolor2.fx,DeHaze@Dehaze.fx,AdaptiveFog@AdaptiveFog.fx,AdaptiveFog@AdaptiveFog.fx,AdaptiveTint@AdaptiveTint.fx,AdaptiveTintDebug@AdaptiveTint.fx,AdaptiveTonemapper@AdaptiveTonemapper.fx,AdvancedCRT@CRT.fx,ContrastAdaptiveSha
@8bitbuddhist
8bitbuddhist / create-android-display.sh
Last active October 6, 2023 14:03
Bash script to use an Android device as a second monitor for Linux. See https://blog.8bitbuddhism.com/2019/12/01/how-to-use-your-android-tablet-as-second-monitor/ for detailed instructions.
#!/bin/bash
# Make sure your Android device is plugged in and accessible over adb.
#### Remember to enable virtual displays in xorg by adding the following to your configuration (e.g. /usr/share/X11/xorg.conf.d/20-virtual.conf)
# Section "Device"
# Identifier "intelgpu0"
# Driver "intel"
# Option "VirtualHeads" "1"
#EndSection
@8bitbuddhist
8bitbuddhist / MyAppMap.java
Last active January 23, 2016 00:57
Simple demonstration of Log4J 2's ThreadContext using Java
import java.util.UUID;
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.ThreadContext;
public class MyAppStack {
private static final Logger logger = LogManager.getLogger(MyAppStack.class);
public void login(String username, UUID sessionID) {