brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>items</key> | |
| <array> | |
| <dict> | |
| <key>assets</key> | |
| <array> | |
| <dict> |
| // #!Swift-1.1 | |
| import Foundation | |
| // MARK: - (1) classes | |
| // Solution 1: | |
| // - Use classes instead of struct | |
| // Issue: Violate the concept of moving model to the value layer | |
| // http://realm.io/news/andy-matuschak-controlling-complexity/ |
Wil Turner, Brook Callhan: Speakers
##3 Main components/concepts that enable UI Testing:##
| // The 6 ways to uwnrap optionals in Swift 2.0 | |
| // | |
| // Created by Patrick Lynch on 6/28/15. | |
| // Copyright © 2015 Patrick Lynch. All rights reserved. | |
| import Foundation | |
| // 1. Force Unwrapping | |
| // 2. Optional Binding | |
| // 3. Optional Chaining |
| package com.lalamove.core.view; | |
| import android.content.Context; | |
| import android.support.annotation.Nullable; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.util.AttributeSet; | |
| import android.view.inputmethod.InputMethodManager; | |
| /** | |
| * Implementation of {@link RecyclerView} that will dismiss keyboard when scrolling. |