This is a pure-CSS version of Pietro Schiranos's Dribbble Shot.
I'm still working to get the name included.
A Pen by Ben Norris on CodePen.
self.navigationController.toolbarHidden = NO; | |
UIBarButtonItem *editingButton = self.editButtonItem; | |
UIBarButtonItem *spaceItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil]; | |
[self setToolbarItems:@[editingButton,spaceItem]]; |
// | |
// | |
// FetchedResultsControllerDataSource.h | |
// | |
// Created by Ben Norris on 10/3/14. | |
// Copyright (c) 2014 BSN Design. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
func myGitCommands() -> [String: String] { | |
var commands = [String: String]() | |
commands["git status"] = ": shows changed files" | |
commands["git diff"] = ": shows actual changes" | |
commands["git add"] = ": adds changed files to the commit" | |
commands["git commit -m\"notes\""] = ": commits the changes" | |
commands["git push origin _branch_"] = ": pushes commits to branch named _branch_" | |
commands["git log"] = ": displays progress log" | |
commands["git comment --amend"] = ": re-enter last commit message" |
This is a pure-CSS version of Pietro Schiranos's Dribbble Shot.
I'm still working to get the name included.
A Pen by Ben Norris on CodePen.
This is a CSS version of Michele Angeloro's Dribbble shot: http://dribbble.com/shots/1259851-Advertisers.
Extra hover animation fun not in original.
A Pen by Ben Norris on CodePen.