Keybase proof
I hereby claim:
- I am ethanmick on github.
- I am ethanmick (https://keybase.io/ethanmick) on keybase.
- I have a public key ASC51TgU3L5pj5QUGXYWQvmVGgH6mnByjlMze9_AMe4C0wo
To claim this, I am signing this object:
{ | |
"name": "flare", | |
"children": [ | |
{ | |
"name": "analytics", | |
"children": [ | |
{ | |
"name": "cluster", | |
"children": [ | |
{"name": "AgglomerativeCluster", "size": 3938}, |
import Foundation | |
import UIKit | |
struct MDColor { | |
static let red = redColorPallete() | |
static let pink = pinkColorPallete() | |
static let purple = purpleColorPallete() |
'use strict'; | |
class Test { | |
constructor(opts = {}) { | |
// NOTE: No Semicolon at the end of this line | |
const example = JSON.parse(opts.example) | |
({ | |
id: this.id, |
sudo apt-get update | |
sudo apt-get install \ | |
python-dev \ | |
libffi-dev \ | |
libssl-dev \ | |
libxml2-dev \ | |
libxslt1-dev \ | |
libssh2-1 \ | |
libgit2-dev \ |
I hereby claim:
To claim this, I am signing this object:
# | |
# Requires you to run 'gem install httparty' | |
# | |
require 'httparty' | |
def main | |
appId = ARGV[0] | |
masterKey = ARGV[1] | |
delete_data = ARGV[2] ? ARGV[2] == "true" : false |
// header.h | |
@interface CMTestEncoderNSCoding : NSObject <NSCoding> | |
@property (nonatomic, copy) NSString *aString; | |
@property (nonatomic, assign) NSInteger anInt; | |
@end | |
@interface CMTestEncoderNSCodingParent : CMObject |
Process: Xcoverage [9811] | |
Path: /Applications/Xcoverage.app/Contents/MacOS/Xcoverage | |
Identifier: com.MattRajca.Xcoverage | |
Version: 1.0.5 (8) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [148] | |
Responsible: Xcoverage [9811] | |
User ID: 501 | |
Date/Time: 2014-04-18 13:07:48.222 -0400 |
activate application "Google Chrome" | |
delay 1.0 -- time to release modifier keys if the script is run with a keyboard shortcut | |
tell application "System Events" | |
repeat 100 times | |
set rand to (random number from 123 to 126) | |
key code rand | |
delay 0.2 | |
end repeat | |
end tell |
- (IBAction)action:(UIButton *)sender; | |
{ | |
UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:nil | |
delegate:self | |
cancelButtonTitle:@"Cancel" | |
destructiveButtonTitle:nil | |
otherButtonTitles:@"Take Picture", @"Choose from Library", nil]; | |
[sheet showInView:self.view]; | |
} |