Skip to content

Instantly share code, notes, and snippets.

View hangy's full-sized avatar

hangy hangy

View GitHub Profile
@hangy
hangy / keybase.md
Created September 20, 2017 10:23
Keybase proof

Keybase proof

I hereby claim:

  • I am hangy on github.
  • I am hangy (https://keybase.io/hangy) on keybase.
  • I have a public key ASBtnInXRhze4mtkJ0RiQQ6pUhRHIA8EuqXPQ9BjvKnLVQo

To claim this, I am signing this object:

public class MqlKey {
public static CharSequence unescape(final CharSequence input) {
final StringBuilder output = new StringBuilder();
for (int index = 0; index < input.length(); ++index) {
final char current = input.charAt(index);
if ('$' != current) {
output.append(current);
continue;
}