You are here |
sintraworks.github.io | ||
| | | |
benoitpasquier.com
|
|
| | | | It's been almost two years that Combine has been introduced to the Apple developer community. As many developer, you want to migrate your codebase to it. You don't want to be left behind but you're not sure where to start, maybe not sure if you want to jump to SwiftUI either. Nothing to worry, let's see step by step how to migrate an iOS sample app using UIKit and RxSwift to Combine. | |
| | | |
www.onswiftwings.com
|
|
| | | | Learn how to build an iOS application that follows MVVM Design Pattern and uses Combine framework | |
| | | |
www.iamsim.me
|
|
| | | | In the first installment of this blog series on UIKit and The Composable Architecture we talked about how we can reduce the boiler plate required to setup a view controller powered by a Store. This post will build on that and see what it takes to implement a collection view. The first thing you need to know about rendering items from a TCA Store in a table or collection view is that we won't be referring to the items by IndexPath. | |
| | | |
blog.tafkas.net
|
|
| | The first step of my plan, building a Raspberry Pi based photovoltaic monitoring solution, is finished. I created a python package that works with the Kostal Piko 5.5 inverter (and theoretically should work with other Kostal inverters as well) and offers a clean interface for accessing the data: import pikopy #create a new piko instance p = Piko('host', 'username', 'password') #get current power print p.get_current_power() #get voltage from string 1 print p. |