This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
empty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am jonchui on github. | |
* I am wonderandwander (https://keybase.io/wonderandwander) on keybase. | |
* I have a public key ASCLbhY14WK-Zk637mO2KABOG9nopvE2GwdztbZtvHv7uQo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Buddybuild_postbuild.sh - Runs after builds completes (includes all unit tests) | |
# https://docs.buddybuild.com/builds/custom_build_steps.html#postbuild | |
# | |
# Currently, our postbuild does one thing: | |
# | |
# 1) Uploads .app simulator build to waldo, IF and only IF, | |
# a) on the develop branch (aka. so that we do not run on every PR's push, ONLY when PR is merged to develop) | |
# OR | |
# b) if the commit message explictly has `[waldo run]` in it. that overrides everything | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
#import <MessageUI/MessageUI.h> | |
@interface NSURL (MailComposeViewController) | |
// Is the given request a mailto URL. | |
- (BOOL)isMailtoRequest; | |
@end | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
jamiesort.py | |
Created by jonchui on 2011-11-23. | |
Copyright (c) 2011 __MyCompanyName__. All rights reserved. | |
""" | |
import sys |