Skip to content

Instantly share code, notes, and snippets.

View marclove's full-sized avatar

Marc Love marclove

View GitHub Profile
@marclove
marclove / proxy_methods.m
Created March 28, 2017 22:53
iOS 10.2 Appearance Proxy Methods
// iOS 10.2 APPEARANCE PROXY METHODS
// Generated thanks to Matt's gist: https://gist.github.com/mattt/5135521
// UIActivityIndicatorView
// ==========================
@property (nullable, readwrite, nonatomic, strong) UIColor *color NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;
// UIBarButtonItem
// ==========================
(void)setBackgroundImage:(nullable UIImage *)backgroundImage forState:(UIControlState)state barMetrics:(UIBarMetrics)barMetrics NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SELECTOR;
require 'active_support'
def parse_time(time_string, zone)
old_tz = Time.zone
begin
Time.zone = zone
Time.zone.parse(time_string)
ensure
Time.zone = old_tz
end

Keybase proof

I hereby claim:

  • I am marclove on github.
  • I am marclove (https://keybase.io/marclove) on keybase.
  • I have a public key ASCJPCH0w-Y-zetl_ke0CIXKYu58YpR4xLCz1sEB-53Bfwo

To claim this, I am signing this object:

@marclove
marclove / angularjs_directive_attribute_explanation.md
Created January 29, 2016 08:08 — forked from CMCDragonkai/angularjs_directive_attribute_explanation.md
JS: AngularJS Directive Attribute Binding Explanation

AngularJS Directive Attribute Binding Explanation

When using directives, you often need to pass parameters to the directive. This can be done in several ways. The first 3 can be used whether scope is true or false. This is still a WIP, so validate for yourself.

  1. Raw Attribute Strings

    <div my-directive="some string" another-param="another string"></div>
@marclove
marclove / gist:e93feefc1e72c663acb9
Created April 14, 2015 23:55
Xcode Build Script to automatically set Version & Build Number
git=$(sh /etc/profile; which git)
latest_tag=$("$git" describe --tags --always --abbrev=0)
version_string="${git_release_version#*v}" # assumes the following tag format: v1.2.3
number_of_commits=$("$git" rev-list <$$$$$$-YOUR DEVELOPMENT BRANCH NAME HERE-$$$$$$> | wc -l | tr -d ' ')
target_plist="$TARGET_BUILD_DIR/$INFOPLIST_PATH"
dsym_plist="$DWARF_DSYM_FOLDER_PATH/$DWARF_DSYM_FILE_NAME/Contents/Info.plist"
for plist in "$target_plist" "$dsym_plist"; do
if [ -f "$plist" ]; then
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $number_of_commits" "$plist"
class CommentsController
def create
comment = Comment.new(params[:comment])
@comment = CommentCreator.new(comment).create!
respond_with @comment
end
end
class CommentCreator
def initialize(comment)
class CommentCreator
#...
def perform
ThreadParticipantsNotifier.new(@comment).notify
CommentReplyNotifier.new(@comment).notify
Kissmetrics.record(comment.author, 'Added Comment')
end
end
class CommentCreator
#...
def perform
ThreadParticipantsNotifier.new(@comment).notify
if comment.previous_comment?
in_reply_to_user = comment.previous_comment.author
ReplyMailer.notification(in_reply_to_user, comment).deliver
end
class CommentsController
def create
comment = Comment.new(params[:comment])
@comment = CommentCreator.new(comment).create!
respond_with @comment
end
end
class CommentCreator
def initialize(comment)
class CommentsController
def create
@comment = Comment.create(params[:comment])
CommentCreatedWorker.perform_async(@comment.id)
respond_with @comment
end
end
class CommentCreatedWorker
include Sidekiq::Worker