Name | Purpose | URL |
---|---|---|
Icdiff | improved colored diff | http://www.jefftk.com/icdiff |
myCLI | Powerfull mySQL / MariaDB CLI | http://mycli.net/ |
tree | Printing Directory Structure | brew install tree |
ccat | Colorfull cat | brew install ccat |
This file contains 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
import UIKit | |
import PlaygroundSupport | |
class MyViewController : UIViewController { | |
// 1. | |
lazy var stackView: UIStackView = { | |
let stackView = UIStackView() | |
stackView.axis = .horizontal | |
stackView.spacing = 20 |