Skip to content

Instantly share code, notes, and snippets.

/* Uncomment ↓ for Stylus (don't forget to uncomment the brace at the end of the file!) */
/* @-moz-document domain("github.com") { */
:root {
--alternate-row: transparent; /* #e1e4e820 */
--side-bar-order: table-row; /* table-footer-group for better sidebar ordering*/
--border-radius-all: 0px; /* treat yourself */
}
#options_bucket > div > form > div > div div div {
@Glaived
Glaived / INSTALL.md
Last active April 20, 2024 08:30
YesCasey is a package that includes everything you need to extract files from the Soulworker game

Manual installation of the various software required

  1. Download xor, extract the content, modify the value path[0] to point to the executable xor.exe.

  2. Download 7-Zip, extract the content, modify the value path[1] to point to the executable 7z.exe.

  3. Download quickbms, extract the content, modify the value path[2] to point to the executable quickbms.exe.

  4. Download fmod_extractors, extract the content, modify the value path[3] to point to the executable fmod_extr.exe.

@aadnk
aadnk / AABB.java
Created October 23, 2013 18:25
A simple AABB intersection algorithm for Bukkit. Returns the intersection point as well.
/**
* Represents an axix-aligned bounding box.
*
* @author Kristian
*/
public class AABB {
public static class Vec3D {
/**
* Point with the coordinate (1, 1, 1).
*/