I hereby claim:
- I am tomzorz on github.
- I am tomzorz (https://keybase.io/tomzorz) on keybase.
- I have a public key whose fingerprint is EA0A 8160 F5DB BF43 AE8E FB71 3933 FA65 8690 2290
To claim this, I am signing this object:
using System; | |
using System.Linq; | |
using System.Text; | |
namespace MySubstring | |
{ | |
// ReSharper disable once ClassNeverInstantiated.Global | |
public class Program | |
{ | |
// ReSharper disable once UnusedParameter.Global |
I hereby claim:
To claim this, I am signing this object:
cGxhbmUgdGlja2V0cyBhcmUgY2hlYXBlciBvbiB0dWVzZGF5cw== |
45350ed10898686cc658debecd7ac7c6 |
# set params | |
$subid = '{subscription id here}' | |
$uri = 'http://{uri here}' | |
$pp = '{password here}' | |
$dn = '{display name here}' |
// see blog post here: https://shoreparty.org/reverse-engineering-the-unity-network-discovery-protocol-9cd01280ed08 | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Net.NetworkInformation; | |
using System.Net.Sockets; | |
using System.Text; | |
using System.Threading; |
using System; | |
using System.Runtime.InteropServices; | |
namespace Vt100Test | |
{ | |
public class Program | |
{ | |
// ReSharper disable InconsistentNaming |
// do this | |
namespace Helpers | |
{ | |
public static class Helper | |
{ | |
public static async Task PleaseStandUpAsync(this SemaphoreSlim s) | |
{ | |
await s.WaitAsync(); | |
} |
JSON.stringify(user_dict, function( key, value) { | |
if(key[0] == '_') { | |
return "cref"; | |
} else { | |
return value; | |
}; | |
}); | |
// for https://github.com/arank/marauders-map |