Fu**ing

Fu**ing
zinelove: Good Fucking Design Advice by Brian Buirge and Jason Bacher. Download full collection of wall papers here.

presentation given by Steve Jobs

https://www.youtube.com/watch?v=GfxxRKBgos8 This is a rare 22 minute presentation given by Steve Jobs on 1980. This video was gifted to Computer History Museum by Regis McKenna and can be found on their online exhibit about Steve Jobs here: http://www.computerhistory.org/atchm/steve-jobs

Integrating Facebook iOS SDK with Your Application

What you will learn from this book Distribute and promote your application on the social platform Fetch user information and photos with Graph API Display Facebook user profiles and friends list Learn to use Facebook Graph API and API Explorer Check user credentials against the Social Platform effortlessly In Detail Facebook provides an iOS SDK to third party developers which allows them to develop iOS applications. These applications are then made available on the app store, from which the developers are entitled to 70 percent of sales revenue. Embedding these Facebook iOS SDK features takes applications to the next level…

How to Generate Beautiful Apple-Style Documentation in Xcode

How to Generate Beautiful Apple-Style Documentation in XcodeHow to use it? 1. Clone the repository using, git clone https://github.com/onevcat/VVDocumenter-Xcode.git 2. Open & build the VVDocumenter-Xcode Xcode project. The plug-in will automatically be installed in ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins. 3. Relaunch Xcode and type in /// above any code you want to write a document to.

Once you start creating things, you realize that everything has intention behind it.

It might help to pose two caricatures hypothetical extremes. One is engineering as problem solving, the other is design as creating.

The designer wants to create a solution that fits in a deeper situational or social sense.

Design is messy. Engineering… is not supposed to be messy. The designer can handle the messiness and ambiguity and is willing to trust intuition.

Successful design is done in teams.

David Kelly (via kimmalexis)

WIP on new scanned ticket information with clean and simple design. On Dribbble

Create a bootable OS X 10.9 Mavericks USB disk

Requirements: USB disk with at least 8GB size Download the Mavericks update, Do not install. (OSX cleans installation files upon installation) This drive can be used for fresh install of OS X 10.9 Mavericks. Process: Insert USB disk and use Disk Utility to erase the disk.This will erase and create a empty disk with name “Untitled”. Start “Terminal” app, and run following command, sudo /Applications/Install OS X Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install OS X Mavericks.app --nointeraction System will ask you for a password. Enter and wait till the process completes. WARNING: Improper use of the sudo command could lead to…

Searchable full-text transcripts of WWDC sessions

Searchable full-text transcripts of WWDC sessionsCreated by normalizing and indexing video transcript (.srt) files provided for WWDC videos. Check out the app’s source code on GitHub for additional implementation details, as well as information about the webservice APIs made available.

I think a lot of people see simplicity as the lack of clutter. And that’s not the case at all. True simplicity is, well, you just keep on going and going until you get to the point where you go, ‘Yeah, well, of course.’ Where there’s no rational alternative.

The iOS 7 Design Cheat Sheet

The iOS 7 Design Cheat Sheet With the release of iOS 7, app designers and developers will need to adjust their visual language to match the new “flat” design of iOS. In addition to the grid system, the dimensions of icons and commonly used elements, typography and iconography has been updated by Apple in many ways.

The artist is a collector of things, imaginary or real. He accumulates things with the same enthusiasm that a little boy stuffs his pockets. The scrap heap and the museum are embraced with equal curiosity. He takes snapshots, makes notes and records impressions on tablecloths or newspapers, on backs of envelopes or matchbooks. Why one thing and not another is part of the mystery but he is omnivorous.
Paul Rand

Expanding business through design based innovation

Many of the times we find ourselves in a meeting room with a team discussing about the product plans. People discuss about existing features, new features, ways to pull more traffic to the site, upcoming SEO processes etc. Everything to make a product more successful and valuable. How do you measure success or value? Everyone uses different perspectives and merits for measuring these. Marketing team would think of it in terms of total traffic home page is generating, number of likes on social media. Management would think of it in terms of number of registrations, downloads. Anything and everything that…

Update all git repositories in one command

If you have placed all git repositories in single parent folder like me. This is for you. Update all your repositories in single command. find . -type d -name .git -exec sh -c "cd "{}"/../ && pwd && git pull" ; and then wait for a long time…