#hello test
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
| //convert to ruby | |
| //: Playground - noun: a place where people can play | |
| import UIKit | |
| let result = [1, 2, 3, 4, 5, 10, 15, 20, 25, 24, 23, 22, 21, 16, 11, 6, 7, 8, 9, 14, 19, 18, 17, 12, 13] | |
| enum Direction { | |
| case Right, Left, Up, Down |
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 str = "Hello, playground" | |
| protocol TestProtocol { | |
| typealias T | |
| } | |
| protocol AnotherProtocol {} | |
| extension TestProtocol where Self.T == String {} |
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
| /** | |
| required init?(coder aDecoder: NSCoder) { | |
| fatalError("init(coder:) has not been implemented") | |
| } | |
| */ | |
| | |
| | |
| import UIKit | |
| | |
| // Dealing with having to override init(coder:) |
State of things: The story functionally works. There is an issue IOS-364 that was created as a result of a conversation on IOS-125 and findings by Stephanie. Those details are on the referenced stories in the Stories of Interest section.
###Stories of Interest
- https://paperless.atlassian.net/browse/IOS-125 - main story
- https://paperless.atlassian.net/browse/IOS-364 - currently blocking the main story. There's a usability issue that Corey suggested a solution for. He made the comment on the IOS-125 story. IOS-364 is an investigation into changing the settings panel. We'll also need design direction.
###Code
- Basic usage stuff: https://confluence.atlassian.com/bitbucketserver/basic-git-commands-776639767.html
- You probably want to be able to be comfortable with creating and switching to branches.
- And then creating pull requests: https://help.github.com/articles/using-pull-requests/
"What's the good word?" Bot
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
| // | |
| // ViewController.swift | |
| // Brews | |
| // | |
| // Created by Jabari Bell on 8/28/16. | |
| // Copyright © 2016 codemitten. All rights reserved. | |
| // | |
| import UIKit | |
| import Alamofire |
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
| //let's talk about the different error approaches in swift | |
| //1. optionals | |
| //2. throw/catch | |
| //3. Result | |
| enum Result<A> { | |
| case failure(Error) | |
| case success(A) | |
| } |
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
| Verifying my Blockstack ID is secured with the address 1KofoK9G5oKdDDhGoy9XciDW5yspELLCCR https://explorer.blockstack.org/address/1KofoK9G5oKdDDhGoy9XciDW5yspELLCCR |
OlderNewer