I hereby claim:
- I am csh on github.
- I am smrkn (https://keybase.io/smrkn) on keybase.
- I have a public key ASA5d9MOz2Q_zcqpwxapH7wUyhQt9lIjmnyrguIsF2qDyAo
To claim this, I am signing this object:
| # Base Path | |
| $gamePath = "C:\Program Files (x86)\SquareEnix\FINAL FANTASY XIV - A Realm Reborn\game" | |
| # GShade | |
| $shaderPath = "C:\Program Files\GShade\gshade-shaders" | |
| $presetPath = "$gamePath\gshade-presets" | |
| #ReShade | |
| $reshadeDownload = "https://reshade.me/downloads/ReShade_Setup_5.6.0_Addon.exe" | |
| $reshadeOutput = "$env:USERPROFILE/Downloads/ReShade_Setup_5.6.0_Addon.exe" |
| const VALID_NAME_CHARS: [char; 37] = [ | |
| '_', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', | |
| 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', | |
| 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', | |
| '3', '4', '5', '6', '7', '8', '9' | |
| ]; | |
| pub fn encode_base37<T: AsRef<str>>(input: T) -> u64 { | |
| let mut combined = input.as_ref().chars().fold(0u64, |acc, c| { | |
| let acc = acc.wrapping_mul(37); |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| public struct Uint24 | |
| { | |
| public const uint MaxValue = 0x00FFFFFF; | |
| public const uint MinValue = 0x00000000; | |
| private uint _val; | |
| public void Update(byte[] val) |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Net.Sockets; | |
| using System.Text; | |
| using System.Threading; | |
| using Newtonsoft.Json; | |
| #if DEBUG | |
| using System.Diagnostics; |