I hereby claim:
- I am joelmartinez on github.
- I am joelmartinez (https://keybase.io/joelmartinez) on keybase.
- I have a public key whose fingerprint is 45E7 6C14 2522 C0DC 5009 D7EC 7A3A 5157 05B4 2AF6
To claim this, I am signing this object:
using System; | |
using System.Threading.Tasks; | |
namespace Life | |
{ | |
public class LifeSimulation | |
{ | |
private bool[,] world; | |
private bool[,] nextGeneration; | |
private Task processTask; |
package cyborg; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import org.xmlpull.v1.XmlPullParser; | |
import org.xmlpull.v1.XmlPullParserException; | |
import android.content.Context; |
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
namespace Permutations | |
{ | |
class MainClass | |
{ | |
public static void Main (string[] args) | |
{ |
static class x10 { | |
public static IEnumerable<T> Iter<T>(this IEnumerable<T> list, Action<T> action) { | |
foreach (var n in list) { | |
action (n); | |
yield return n; | |
} | |
} | |
} |
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA512 | |
This message is signed ... just because I can. Given that the need to cryptographically sign things doesn't come up very often, I really just wanted to use it. Now, who is going to verify this? | |
-----BEGIN PGP SIGNATURE----- | |
Version: Keybase OpenPGP v2.0.49 | |
Comment: https://keybase.io/crypto | |
wsFcBAABCgAGBQJWuOItAAoJEHo6UVcFtCr2YhUP/1WYWSloGPFZlegAFAG6Tdar | |
QBCy6aX0KODlCRAN9arZSA9qpedcyy2CmcKUJQJgtXRWYke/zz0YVTOQO5BG5lY7 |
I hereby claim:
To claim this, I am signing this object:
// http://stackoverflow.com/a/4007066/5416 | |
@implementation NSObject (PerformBlockAfterDelay) | |
- (void)performBlock:(void (^)(void))block | |
afterDelay:(NSTimeInterval)delay | |
{ | |
block = [[block copy] autorelease]; | |
[self performSelector:@selector(fireBlockAfterDelay:) | |
withObject:block |
using System; | |
using System.Dynamic; | |
using MonoMac.Foundation; | |
namespace CodeCube | |
{ | |
public class UserSettings : DynamicObject | |
{ | |
NSUserDefaults defaults = NSUserDefaults.StandardUserDefaults; |
/** pieced together from http://www.androidsnippets.com/create-a-md5-hash-and-dump-as-a-hex-string */ | |
public String md5(String s) { | |
try { | |
// Create MD5 Hash | |
MessageDigest digest = java.security.MessageDigest.getInstance("MD5"); | |
digest.update(s.getBytes()); | |
byte messageDigest[] = digest.digest(); | |
// Create Hex String | |
StringBuffer hexString = new StringBuffer(); |
package com.your.project; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.lang.ref.SoftReference; | |
import java.net.MalformedURLException; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.util.Collections; | |
import java.util.HashMap; |