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:
-----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:
Environment.SetEnvironmentVariable("MSBuild", "C:\Program Files (x86)\MSBuild\14.0\Bin\msbuild.exe") |
setwd("~/dev/datascience/r") | |
data <- csv.load("hw1_data.csv") | |
filtered <- data[!is.na(data$Ozone),]$Ozone | |
mean(filtered) |
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; | |
} | |
} | |
} |
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
namespace Permutations | |
{ | |
class MainClass | |
{ | |
public static void Main (string[] args) | |
{ |
// 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; |
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; |
/** 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(); |