yarn add react-native-configreact-native link react-native-config- Create
.envfiles for each configuration. Ex:.env.dev,.env.prod, etc Ex:
API_ENDPOINT=https://api.myresource.com/dev
ENV=dev
| HTML | |
| - Semantic HTML | |
| - Event delegation | |
| - Accessibility / ARIA | |
| CSS | |
| - Specificity | |
| - Pseudo-elements | |
| - Pseudo-selectors | |
| - Combinators |
| Data Structures | |
| - Stacks | |
| - Queues | |
| - Linked lists | |
| - Graphs | |
| - Trees | |
| - Tries | |
| Concepts | |
| - Big O Notation |
yarn add react-native-configreact-native link react-native-config.env files for each configuration. Ex: .env.dev, .env.prod, etc
Ex:API_ENDPOINT=https://api.myresource.com/dev
ENV=dev
| import RealmSwift | |
| import Realm | |
| protocol CascadeDeleting: class { | |
| func delete<Entity>(_ list: List<Entity>, cascading: Bool) | |
| func delete<Entity>(_ results: Results<Entity>, cascading: Bool) | |
| func delete<Entity: Object>(_ entity: Entity, cascading: Bool) | |
| } |
Author: Chris Lattner
| # [<tag>] (If applied, this commit will...) <subject> (Max 72 char) | |
| # |<---- Preferably using up to 50 chars --->|<------------------->| | |
| # Example: | |
| # [feat] Implement automated commit messages | |
| # (Optional) Explain why this change is being made | |
| # |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| | |
| # (Optional) Provide links or keys to any relevant tickets, articles or other resources | |
| # Example: Github issue #23 |
| struct ComposeTransformer<T, R> { | |
| let transformer: (Observable<T>) -> Observable<R> | |
| init(transformer: @escaping (Observable<T>) -> Observable<R>) { | |
| self.transformer = transformer | |
| } | |
| func call(_ observable: Observable<T>) -> Observable<R> { | |
| return transformer(observable) | |
| } | |
| } |

For many types of Dapps (Distributed Apps), Truffle does everything you could want: It compiles your blockchain contracts, injects them into your web app, and can even run a test suite against them!
This is all great for you, but what about your users? Truffle has some great defaults for users who are willing to run a local Ethereum JSON RPC server on their computer, but what about your users who just want to sign on and get started?
With Metamask, all your users need to do is install our Chrome plugin, and they will have their own secure blockchain accounts right there in the conven
| # start by installing xcode via apple app store as it takes a year! | |
| # also install xcode-select | |
| xcode-select --install | |
| # install git via http://git-scm.com/downloads | |
| # install node via https://nodejs.org/en/download/ | |
| # install brew (required for zsh) - note: this relies on on xcode | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # install zsh via http://ohmyz.sh/ |