Skip to content

Instantly share code, notes, and snippets.

View chourobin's full-sized avatar

Robin Chou chourobin

View GitHub Profile
@chourobin
chourobin / bump_build.sh
Last active December 20, 2015 01:09
My custom bump build number script
# Using HEX builds (e.g. 1A12)
#!/bin/sh
buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE")
dec=$((0x$buildNumber))
buildNumber=$(($dec + 1))
hex=$(printf "%X" $buildNumber)
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $hex" "$INFOPLIST_FILE"
# Using numerical builds
//
// FileFunctionLevelFormatter.h
// Stylist
//
// Created by Robin Chou on 10/23/14.
// Copyright (c) 2014 Voila. All rights reserved.
//
#import "DDLog.h"
NB: Originally courtesy of http://blog.taggesell.de/index.php?/archives/73-Managing-Amazon-EC2-SSH-login-and-protecting-your-instances.html
Managing Amazon EC2 - SSH login and protecting your instances
How to log into your freshly fired-up instances and how to secure ssh access
(works under Linux and Mac OS, under Windows with Cygwin)
First time you want to log into a newly started instance you appear to have the chicken-and-egg problem: how to log in when you do not know the root password? Luckily Amazon devised a comfortable way to circumvent this: your Key Pairs. these are not to be confused with the „Access Key IDs“ on the Access Identifier web page and they are neither the X509 certificates. These Key pairs are automatically generated the first time you log into the web console and you can only download its private part. Store it in your ~/.ssh directory. In case you missed the download or don't know where you've put it AND you don't have any instances running, just generate and download a new one.
@chourobin
chourobin / screenshot.m
Created December 8, 2013 20:36
Screenshot of view controller
- (UIImage *)screenshot
{
CGRect rect = CGRectMake(0, 88.0, self.view.frame.size.width, self.view.frame.size.height - 88.0);
UIGraphicsBeginImageContextWithOptions(rect.size, self.view.opaque, 0.0);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, -rect.origin.x, -rect.origin.y);
[self.view.layer renderInContext:context];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
@chourobin
chourobin / json_struct_example
Created January 20, 2014 01:28
Example creating structs on the fly
// http://play.golang.org/p/TVFHKUHO2p
package main
import "fmt"
import "encoding/json"
func main() {
type error struct {
Message string `json:"message"`
@chourobin
chourobin / dash_mux_service.conf
Last active August 29, 2015 13:57
Upstart script for nsq applications
description "dash_mux_service"
start on filesystem or runlevel [2345]
stop on runlevel [!2345]
limit nofile 50000 50000
respawn
respawn limit 10 5
pre-start script
@chourobin
chourobin / push_collision.m
Created April 28, 2014 14:06
Example using pan gestures and push collision
UIView *view = [panGesture view];
if (panGesture.state == UIGestureRecognizerStateBegan) {
self.collectionView.panGestureRecognizer.enabled = NO;
self.offsetY = view.frame.origin.y;
} else if (panGesture.state == UIGestureRecognizerStateBegan || panGesture.state == UIGestureRecognizerStateChanged)
{
CGPoint translation = [panGesture translationInView:[view superview]];
if (view.frame.origin.y <= 0 && translation.y < 0) {
return;
@chourobin
chourobin / macros.m
Last active August 29, 2015 14:00
iOS screen size macro
#define __IS_IPHONE_5 ( fabs( ( double )[ [ UIScreen mainScreen ] bounds ].size.height - ( double )568 ) < DBL_EPSILON )
#define __IPHONE_OS_VERSION_MIN_REQUIRED
#define __IPHONE_OS_VERSION_MAX_ALLOWED
@chourobin
chourobin / ansible.md
Created May 8, 2014 19:43
Instructions for setting up ansible
@chourobin
chourobin / mac_setup.md
Created May 8, 2014 19:44
Setup instructions for new Mac
  1. Install Xcode
  2. Install Command Line Tools
  3. Install Homebrew
  4. Install Rbenv w/ Ruby
  5. Install NVM for Node.js & coffee-script

Apps:

  • Dropbox
  • Skydrive
  • Google Drive