Skip to content

Instantly share code, notes, and snippets.

@ygit
ygit / README-Template.md
Created March 29, 2017 09:37 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@ygit
ygit / Count lines of code in Xcode project
Created December 7, 2015 07:42 — forked from ccabanero/Count lines of code in Xcode project
Count lines of code in Xcode project
1. Open Terminal
2. cd to your Xcode project
3. Execute the following when inside your target project:
find . -name "*.[hm]" -print0 | xargs -0 wc -l