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:
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) |
I hereby claim:
To claim this, I am signing this object:
<templateSet group="bukkit/scheduler"> | |
<template name="runTask" value="org.bukkit.Bukkit.getScheduler().runTask($PLUGIN$, () -> { $END$ });" description="Executes a task using the given Plugin instance" toReformat="true" toShortenFQNames="true"> | |
<variable name="PLUGIN" expression="variableOfType("org.bukkit.plugin.Plugin")" defaultValue="" alwaysStopAt="false" /> | |
<context> | |
<option name="JAVA_CODE" value="false" /> | |
<option name="JAVA_STATEMENT" value="true" /> | |
<option name="JAVA_EXPRESSION" value="true" /> | |
<option name="JAVA_DECLARATION" value="true" /> | |
</context> | |
</template> |
package ninja.smirking.demo.shutdown; | |
import org.bukkit.plugin.java.JavaPlugin; | |
import java.util.logging.Level; | |
import java.util.regex.Pattern; | |
/** | |
* @author Connor Spencer Harries | |
*/ |
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; |