View gist:9b1dcbf07773b22e109eefd552200e00
var configuration = Realm.Configuration.defaultConfiguration | |
let encryptionKey = NSMutableData(length: 64)! | |
SecRandomCopyBytes(kSecRandomDefault, encryptionKey.length, UnsafeMutablePointer<UInt8>(encryptionKey.mutableBytes)) | |
configuration.encryptionKey = encryptionKey | |
let filename = "private.realm" | |
let fileURL = configuration.fileURL?.URLByAppendingPathComponent(filename) | |
configuration.fileURL = fileURL |
View Nibloading category
// UIView+KHMNibLoading.h | |
@interface UIView (KHMNibLoading) | |
+ (instancetype)viewFromNib; | |
@end | |
// UIView+KHMNibLoading.m | |
+ (instancetype)viewFromNib { | |
NSString *className = NSStringFromClass([self class]); |
View org.jenkins-ci.plist
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>StandardOutPath</key> | |
<string>/var/log/jenkins/jenkins.log</string> | |
<key>StandardErrorPath</key> | |
<string>/var/log/jenkins/jenkins.log</string> | |
<key>EnvironmentVariables</key> | |
<dict> |
View build_and_run_unit_tests.sh
#!/bin/bash | |
# Script to compile and run unit tests from the command line | |
# The scheme and target name of the main app | |
MAIN_APP_TARGET="$1" | |
# The scheme and target name of the unit tests | |
UNIT_TEST_TARGET="$2" | |
# The path to libXcodeTest.a, if not in current directory |
View install_dependencies.sh
#!/bin/bash | |
# run prior to building with XcodeTest to install WaxSim. | |
# clone and install waxsim | |
git clone https://github.com/jonathanpenn/WaxSim.git | |
cd WaxSim | |
xcodebuild install DSTROOT=/ INSTALL_PATH=/usr/local/bin |
View unity3d.gitignore
# .gitignore file to use with Unity3d projects on a mac | |
# annoying, autogenerated, hidden file used by Finder | |
.DS_Store | |
# Enable Meta Files in in Unity -> Edit -> Project Settings -> Editor | |
# or you will mess up your prefabs, models and materials when | |
# ignoring Library/ | |
Library/ |