This file contains 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
for i in {0..255} ; do | |
printf "\x1b[38;5;${i}mcolour${i}\n" | |
done |
This file contains 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
self performBlock:^{code here} afterDelay: 2.5]; | |
[self performBlock:^{code here} afterDelay: 10]; |
This file contains 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
- (void) navigateToSplitViewController{ | |
[SVProgressHUD dismiss]; | |
UIStoryboard *storyboard = self.storyboard; | |
IPadSplitViewHolder *splitView = [storyboard instantiateViewControllerWithIdentifier:@"IPadSplitViewHolder"]; | |
//[self.navigationController pushViewController:splitView animated:YES]; | |
//self.parentViewController.view.window.rootViewController = splitView; | |
self.view.window.rootViewController = splitView; | |
} | |
This file contains 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
before do | |
user.stub(:facebook_connected?).and_return(true) | |
user.stub(:facebook_allows_permission?).with(anything) | |
.and_return(true) | |
end |
This file contains 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
[color] | |
ui = true | |
[user] | |
name = Warut Surapat | |
email = [email protected] | |
[alias] | |
st = status | |
br = branch | |
df = diff | |
co = checkout |
This file contains 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
# built application files | |
*.apk | |
*.ap_ | |
# files for the dex VM | |
*.dex | |
# Java class files | |
*.class |
This file contains 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
scope :in_network, ->(network) do | |
joins{user_network_profiles}.where{ user_network_profiles.network_id == network.id } | |
end |
This file contains 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
package th.co.fingertip.eventproFP.ui; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import th.co.fingertip.eventproFP.EventproFPEnum; | |
import android.app.Activity; | |
import android.content.BroadcastReceiver; | |
import android.content.Context; |
This file contains 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
[[ -s "/Users/warut/.rvm/scripts/rvm" ]] && source "/Users/warut/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
PATH=/usr/local/sbin:/usr/local/bin:$PATH | |
RED="\[\033[0;31m\]" | |
GREEN="\[\033[0;32m\]" | |
YELLOW="\[\033[0;33m\]" | |
LIGHT_BLUE="\[\033[0;34m\]" | |
NO_COLOR="\[\033[0m\]" | |
IMGS=( |
This file contains 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
module NetworkBelongable | |
module OneToOne | |
extend ActiveSupport::Concern | |
included do | |
self.has_many "#{self.to_s.downcase}_networks".to_sym | |
self.has_many :networks, through: "#{self.to_s.downcase}_networks".to_sym | |
Network.has_many "#{self.to_s.downcase}_networks".to_sym | |
Network.has_many self.to_s.downcase.pluralize.to_sym, through: "#{self.to_s.downcase}_networks".to_sym |