- Create "Cocoa Touch Static Library" Project using Xcode
- git init
- vi .gitignore ; xcuserdata
- make scheme shared
- remove redundant code, for example, auto-generated comments
- Go to the created directory, and then write Podfile, and then pod install
- vi Podfile ; pod install
- Add Pods/Pods.xcconfig to test target (in Xcode)
- initial commit!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "title": "King James Version (1769)", | |
| "id": "KJV", | |
| "books": [ | |
| { | |
| "title": "THE FIRST BOOK OF MOSES CALLED GENESIS", | |
| "id": "Gen", | |
| "chapters": [ | |
| { | |
| "title": "Chapter 1.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id | key | valu | |
|---|---|---|---|
| 1 | 2 | 3 | |
| 4 | 5 | 6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Entity | |
| Value Object | |
| Aggregate | |
| Repository | |
| Factory | |
| Service | |
| Specification |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.kt3k.bankaccount; | |
| public class BankAccount { | |
| private String id; | |
| private Integer balance; | |
| public BankAccount(String id, Integer balance) { | |
| this.id = id; | |
| this.balance = balance; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var dice = function (n) { | |
| return Math.floor(Math.random() * n); | |
| }; | |
| var coinToss = function () { return dice(2); }; | |
| var sample = function (array) { return arguments[dice(arguments.length)]; }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| palette set for LD proj |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "author": "kt3k", | |
| "description": "An example color palette.", | |
| "palette": [ | |
| { | |
| "name": "grey", | |
| "description": "basic colors", | |
| "colors": [ | |
| "#111111", | |
| "#333333", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Color palette of raspberry pi logo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Color palette for material design, from http://www.google.com/design/spec/material-design/introduction.html |