Skip to content

Instantly share code, notes, and snippets.

View krlohnes's full-sized avatar
💻
writing code probably

Keith Lohnes krlohnes

💻
writing code probably
View GitHub Profile
### Keybase proof
I hereby claim:
* I am krlohnes on github.
* I am krlohnes (https://keybase.io/krlohnes) on keybase.
* I have a public key ASASZ0NiYS2RTSzBEfvVCQAjzkutzd9wxpKxdtM_wLb0KAo
To claim this, I am signing this object:
@krlohnes
krlohnes / Player.log
Created September 5, 2022 15:17
Talespire Mod Log
This file has been truncated, but you can view the full file.
Mono path[0] = 'D:/SteamLibrary/steamapps/common/TaleSpire/TaleSpire_Data/Managed'
Mono config path = 'D:/SteamLibrary/steamapps/common/TaleSpire/MonoBleedingEdge/etc'
Fallback handler could not load library D:/SteamLibrary/steamapps/common/TaleSpire/TaleSpire_Data/MonoBleedingEdge/data-0000028FA73410A0.dll
Fallback handler could not load library D:/SteamLibrary/steamapps/common/TaleSpire/TaleSpire_Data/MonoBleedingEdge/data-0000028FAC8CC040.dll
Initialize engine version: 2021.2.14f1 (bcb93e5482d2)
[Subsystems] Discovering subsystems at path D:/SteamLibrary/steamapps/common/TaleSpire/TaleSpire_Data/UnitySubsystems
GfxDevice: creating device client; threaded=1; jobified=1
Direct3D:
Version: Direct3D 11.0 [level 11.1]
Renderer: NVIDIA GeForce RTX 2080 (ID=0x1e82)
// Using ajax rather than a dynamically injected <link>, to account for sites (like gist.github.com) that don't serve
// a content-type for CSS files
var cssURI = 'https://gist.githubusercontent.com/DrewML/f244d6015c9b690b1dc241669b69dde1/raw/3d6351b8767ee5fba1ac86cad9b8cc5cf2ff9fea/slack-theme.css';
$.get(cssURI).then(function(css) {
$('<style />').text(css).appendTo('body')
});
@krlohnes
krlohnes / scalajdb.md
Last active January 27, 2022 18:31
Debugging with jdb in scala

#Debugging Scala with JDB

It seems impossible to find answers on how to debug Scala with jdb on Google. I wanted to consolidate what I've learned in a easy to digest guide. Please feel free to comment with other tips I may have missed, or corrections to what's here.

##Classes Setting a breakpoint in a class is just like debugging java stop at my.package.ClassName:22

@krlohnes
krlohnes / bubblesort.bf
Created October 25, 2016 16:55
BubbleSort in brainfuck
BF BubbleSort v0_0
=========================constraints=============================
|arrays of nonzero numbers (could easily fix this by initially |
|incrementing everything, then decrementing at end, but wont) |
|five cells at end three containing size less 1 |
|seven cells workspace at beginning |
=================================================================
+>>>>>>>workspace
++++>+++>++>+>+++++>>>++++>++++>+++ create array
<<