├── .gitignore ├── Advanced-topics ├── Comparison-of-Different-Continuous-Integration-Services │ ├── README.md │ └── presentation-slides.pdf ├── Functional-Routing │ ├── README.md │ └── presentation-slides.pdf ├── IoT-Under-iOS-Control │ ├── README.md │ └── presentation-slides.pdf ├── Optical-Swift │ ├── README.md │ └── presentation-slides.pdf ├── Product-Centric-Engineering │ ├── README.md │ └── presentation-slides.pdf ├── Reactive-Programming-with-RxSwift │ ├── README.md │ └── presentation-slides.pdf ├── Rich-Mobile-Video-Experiences │ ├── README.md │ └── presentation-slides.pdf └── Software-Design │ ├── README.md │ └── presentation-slides.pdf ├── Intermediate-topics ├── Abstract-Relationships-in-Swift │ ├── Playground.playground │ │ ├── Contents.swift │ │ ├── Pages │ │ │ ├── Contacts.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Notepad.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── People.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ ├── Presentation.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ │ └── WorkingArea.xcplaygroundpage │ │ │ │ └── Contents.swift │ │ └── contents.xcplayground │ └── README.md ├── Android-vs-iOS │ ├── README.md │ └── presentation-slides.pdf ├── CDD-Client-Driven-Development │ ├── Idea-Validation.pdf │ ├── Implementation-Validation.pdf │ ├── README.md │ └── presentation-slides.pdf ├── Dependency-Injection-Made-Simple │ ├── README.md │ └── presentation-slides.pdf ├── Functors-and-Monads-How-to │ ├── README.md │ └── presentation-slides.pdf ├── Maintainability-in-Mobile │ ├── README.md │ └── presentation-slides.pdf ├── Objective-C-Is-Not-Dead │ ├── README.md │ └── presentation-slides.pdf └── iMessage-Apps-Interactive-Messages │ ├── README.md │ └── presentation-slides.pdf ├── LICENSE.md ├── README.md └── codeway_logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/.gitignore -------------------------------------------------------------------------------- /Advanced-topics/Comparison-of-Different-Continuous-Integration-Services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Comparison-of-Different-Continuous-Integration-Services/README.md -------------------------------------------------------------------------------- /Advanced-topics/Comparison-of-Different-Continuous-Integration-Services/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Comparison-of-Different-Continuous-Integration-Services/presentation-slides.pdf -------------------------------------------------------------------------------- /Advanced-topics/Functional-Routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Functional-Routing/README.md -------------------------------------------------------------------------------- /Advanced-topics/Functional-Routing/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Functional-Routing/presentation-slides.pdf -------------------------------------------------------------------------------- /Advanced-topics/IoT-Under-iOS-Control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/IoT-Under-iOS-Control/README.md -------------------------------------------------------------------------------- /Advanced-topics/IoT-Under-iOS-Control/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/IoT-Under-iOS-Control/presentation-slides.pdf -------------------------------------------------------------------------------- /Advanced-topics/Optical-Swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Optical-Swift/README.md -------------------------------------------------------------------------------- /Advanced-topics/Optical-Swift/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Optical-Swift/presentation-slides.pdf -------------------------------------------------------------------------------- /Advanced-topics/Product-Centric-Engineering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Product-Centric-Engineering/README.md -------------------------------------------------------------------------------- /Advanced-topics/Product-Centric-Engineering/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Product-Centric-Engineering/presentation-slides.pdf -------------------------------------------------------------------------------- /Advanced-topics/Reactive-Programming-with-RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Reactive-Programming-with-RxSwift/README.md -------------------------------------------------------------------------------- /Advanced-topics/Reactive-Programming-with-RxSwift/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Reactive-Programming-with-RxSwift/presentation-slides.pdf -------------------------------------------------------------------------------- /Advanced-topics/Rich-Mobile-Video-Experiences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Rich-Mobile-Video-Experiences/README.md -------------------------------------------------------------------------------- /Advanced-topics/Rich-Mobile-Video-Experiences/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Rich-Mobile-Video-Experiences/presentation-slides.pdf -------------------------------------------------------------------------------- /Advanced-topics/Software-Design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Software-Design/README.md -------------------------------------------------------------------------------- /Advanced-topics/Software-Design/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Advanced-topics/Software-Design/presentation-slides.pdf -------------------------------------------------------------------------------- /Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Contents.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/Contacts.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/Contacts.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/Notepad.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/Notepad.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/People.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/People.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/Presentation.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/Presentation.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/WorkingArea.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/Pages/WorkingArea.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Abstract-Relationships-in-Swift/Playground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Intermediate-topics/Abstract-Relationships-in-Swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Abstract-Relationships-in-Swift/README.md -------------------------------------------------------------------------------- /Intermediate-topics/Android-vs-iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Android-vs-iOS/README.md -------------------------------------------------------------------------------- /Intermediate-topics/Android-vs-iOS/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Android-vs-iOS/presentation-slides.pdf -------------------------------------------------------------------------------- /Intermediate-topics/CDD-Client-Driven-Development/Idea-Validation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/CDD-Client-Driven-Development/Idea-Validation.pdf -------------------------------------------------------------------------------- /Intermediate-topics/CDD-Client-Driven-Development/Implementation-Validation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/CDD-Client-Driven-Development/Implementation-Validation.pdf -------------------------------------------------------------------------------- /Intermediate-topics/CDD-Client-Driven-Development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/CDD-Client-Driven-Development/README.md -------------------------------------------------------------------------------- /Intermediate-topics/CDD-Client-Driven-Development/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/CDD-Client-Driven-Development/presentation-slides.pdf -------------------------------------------------------------------------------- /Intermediate-topics/Dependency-Injection-Made-Simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Dependency-Injection-Made-Simple/README.md -------------------------------------------------------------------------------- /Intermediate-topics/Dependency-Injection-Made-Simple/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Dependency-Injection-Made-Simple/presentation-slides.pdf -------------------------------------------------------------------------------- /Intermediate-topics/Functors-and-Monads-How-to/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Functors-and-Monads-How-to/README.md -------------------------------------------------------------------------------- /Intermediate-topics/Functors-and-Monads-How-to/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Functors-and-Monads-How-to/presentation-slides.pdf -------------------------------------------------------------------------------- /Intermediate-topics/Maintainability-in-Mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Maintainability-in-Mobile/README.md -------------------------------------------------------------------------------- /Intermediate-topics/Maintainability-in-Mobile/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Maintainability-in-Mobile/presentation-slides.pdf -------------------------------------------------------------------------------- /Intermediate-topics/Objective-C-Is-Not-Dead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Objective-C-Is-Not-Dead/README.md -------------------------------------------------------------------------------- /Intermediate-topics/Objective-C-Is-Not-Dead/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/Objective-C-Is-Not-Dead/presentation-slides.pdf -------------------------------------------------------------------------------- /Intermediate-topics/iMessage-Apps-Interactive-Messages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/iMessage-Apps-Interactive-Messages/README.md -------------------------------------------------------------------------------- /Intermediate-topics/iMessage-Apps-Interactive-Messages/presentation-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/Intermediate-topics/iMessage-Apps-Interactive-Messages/presentation-slides.pdf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/README.md -------------------------------------------------------------------------------- /codeway_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yopeso/CodeWay-2016-presentations/HEAD/codeway_logo.png --------------------------------------------------------------------------------