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 bash | |
# | |
# Autobot: create, setup and deploy Hubot on Heroku with Campfire adapter. | |
# | |
# USAGE: | |
# autobot.sh <path> | |
# | |
# Autobot will; | |
# 1. download and install all the Hubot machinery | |
# 2. create your very own Hubot instance |
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 | |
# -*- coding: UTF-8 -*- | |
"""Update by merging .strings file(s) of an Xcode project.""" | |
import os | |
import sys | |
import shlex | |
import shutil | |
import tempfile |
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
// | |
// NSString+Punctuation.h | |
// by Ali Servet Donmez <asd NOSPAM pittle.org>, 2010 | |
// http://www.pittle.org/ | |
// | |
/* | |
* Requirements | |
* ------------ | |
* - "RegexKitLite" (http://regexkit.sourceforge.net/#RegexKitLite) |
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
/* | |
* This will convert DateTime (.NET) object serialized as JSON by WCF to a NSDate object. | |
*/ | |
// Input string is something like: "/Date(1292851800000+0100)/" where | |
// 1292851800000 is milliseconds since 1970 and +0100 is the timezone | |
NSString *inputString = [item objectForKey:@"DateTimeSession"]; | |
// This will tell number of seconds to add according to your default timezone | |
// Note: if you don't care about timezone changes, just delete/comment it out |
NewerOlder