An exceptionally handsome way to track your Stack Overflow badges.
Note: Badge Overflow now works with all Stack Exchange sites.
Created by Adam & Stephanie Sharp.
A Dashing widget that
| // | |
| // iOS5EmbedSegue.h | |
| // Created by Stephanie Sharp on 2/05/13. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface iOS5EmbedSegue : UIStoryboardSegue | |
| @property (nonatomic, strong) UIView * containerView; |
| // Helpful tutorial: | |
| // http://www.theappcodeblog.com/2011/05/30/property-list-tutorial-using-plist-to-store-user-data/ | |
| // Get property list from main bundle | |
| NSString * plistPath = [[NSBundle mainBundle] pathForResource:@"PListName" ofType:@"plist"]; | |
| // Read property list into memory as an NSData object | |
| NSData * plistXML = [[NSFileManager defaultManager] contentsAtPath:plistPath]; | |
| NSString * errorDesc = nil; | |
| NSPropertyListFormat format; |
| // | |
| // LoadingView.h | |
| // Created by Stephanie Sharp on 26/05/13. | |
| // | |
| // http://www.sitepoint.com/all-purpose-loading-view-for-ios/ | |
| // http://www.cocoawithlove.com/2009/04/showing-message-over-iphone-keyboard.html | |
| #import <UIKit/UIKit.h> | |
| @interface LoadingView : UIView |
| # Mac OS X | |
| *.DS_Store | |
| # Xcode | |
| *.pbxuser | |
| *.mode1v3 | |
| *.mode2v3 | |
| *.perspectivev3 | |
| *.xcuserstate | |
| project.xcworkspace/ |
| @property (nonatomic, retain) NSArray * pins; |
An exceptionally handsome way to track your Stack Overflow badges.
Note: Badge Overflow now works with all Stack Exchange sites.
Created by Adam & Stephanie Sharp.
A Dashing widget that
I modified some code from a discussion on the Shopify wiki about using radio buttons for variants (instead of the default drop down list). This is for a Stack Overflow question about custom Shopify variants for shipping options.
Relevant Links:
This is for a Stack Overflow question about using colour swatches in a Shopify theme. It extends the code provided in this tutorial on the Shopify wiki to grey out the unavailable colours (not available or sold out) when a size is selected by a customer.
Stack Overflow question: How can I create “smarter” swatches for a shopify theme
Shopify tutorial: Add color swatches to your products
This code is for a Stack Overflow question about displaying related products in a Shopify theme using product tags.
Relevant Links:
| // | |
| // EmbedSegue.h | |
| // Created by Stephanie Sharp on 20/02/14. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface EmbedSegue : UIStoryboardSegue | |
| @property (nonatomic) UIView *containerView; |