Skip to content

Instantly share code, notes, and snippets.

View sajoku's full-sized avatar
🏠
Working from home

Sander sajoku

🏠
Working from home
View GitHub Profile
@sajoku
sajoku / pre-commit
Created January 21, 2013 13:01 — forked from faun/pre-commit
#!/bin/bash
## START PRECOMMIT HOOK
files_modified=`git status --porcelain | egrep "^(A |M |R ).*" | awk ' { if ($3 == "->") print $4; else print $2 } '`
[ -s "$HOME/.rvm/scripts/rvm" ] && . "$HOME/.rvm/scripts/rvm"
## use ruby defined in project
source .rvmrc
for f in $files_modified; do
@sajoku
sajoku / README.md
Created February 18, 2013 14:45 — forked from aiwilliams/README.md

Start XCode and create a new Storyboard file. I closed all my other XCode projects. When you choose the location of the created file, it should be your RubyMotion project's resources directory. Add a UIViewController, and set it's identifier property to "Start". Add some UI elements so you can see it working.

When you run rake in your RubyMotion project, it will compile the .storyboard file. You could auto-load the Storyboard using a plist configuration, but you'll see code can do it too.

@sajoku
sajoku / persistence_crash
Created July 8, 2013 09:11
Rubymotion 2.3 crashes when using NSKeyedUnarchiver. Replay this by doing: user = User.new(name: 'name') user.save User.load
class User
KEY = 'user'
PROPERTIES = [:name, :id]
PROPERTIES.each { |prop|
attr_accessor prop
}
def initialize(attributes = {})
attributes.each { |key, value|
self.send("#{key}=", value) if PROPERTIES.member? key.to_sym
@sajoku
sajoku / gist:6639108
Created September 20, 2013 15:18 — forked from snikch/gist:3661188
- (UIViewController *)topViewController{
return [self topViewController:[UIApplication sharedApplication].keyWindow.rootViewController];
}
- (UIViewController *)topViewController:(UIViewController *)rootViewController
{
if (rootViewController.presentedViewController == nil) {
return rootViewController;
}
def viewDidLoad
panGesture = UIPanGestureRecognizer.alloc.initWithTarget(self, action: "pan:")
panGesture.delegate = self
modal_view.addGestureRecognizer(panGesture)
end
def pan(gesture)
piece = gesture.view
adjustAnchorPointForGestureRecognizer(gesture)
class Company < ActiveRecord::Base
has_many :company_accounts
has_many :users, through: :company_accounts
end
class User < ActiveRecord::Base
has_many :company_accounts
has_many :companies, through: :company_accounts
end
# Install rvm system-wide
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )
# Update the packages
apt-get update
apt-get upgrade
apt-get install build-essential
# get the packages required by ruby
rvm pkg install zlib
merged_branches(){
local current_branch=$(git rev-parse --abbrev-ref HEAD)
for branch in $(git branch --merged | cut -c3-)
do
echo "Branch $branch is already merged into $current_branch."
echo "Would you like to delete it? [Y]es/[N]o "
read REPLY
if [[ $REPLY =~ ^[Yy] ]]; then
git branch -d $branch
fi
def user_preferences
super || UserPreferences.new
end