Skip to content

Instantly share code, notes, and snippets.

View codykrieger's full-sized avatar
🇺🇦

Cody Krieger codykrieger

🇺🇦
View GitHub Profile
@codykrieger
codykrieger / IPInsetLabel.h
Created May 4, 2012 21:14
IPInsetLabel: a simple UILabel subclass that adds padding insets and auto-height-resizing
//
// IPInsetLabel.h
// Instapaper
//
// Created by Marco Arment on 7/23/11.
// Copyright 2011 Instapaper LLC, released to the public domain.
//
#import <UIKit/UIKit.h>
@codykrieger
codykrieger / gist:1976319
Created March 5, 2012 03:32 — forked from dhh/gist:1975644
Rails mass assignment protection
class PostsController < ActionController::Base
def create
Post.create(post_params)
end
def update
Post.find(params[:id]).update_attributes!(post_params)
end
private