Yanko Dimitrov

Results 9 comments of Yanko Dimitrov

First thank you all for your pull requests and support! You can continue to send pull requests. Im a bit busy right now but will try to look at the...

Hi, I think an extension on the `Timer` type will be cleaner: ```swift extension Timer { public func observe() -> Signal { let signal = Signal() let observer = IntervalTimerOperator(interval:...

I will work on it in the coming weeks. I would like to remove some unnecessary parts like the `CollectionEvent `, `UITableView` and `UICollectionView` bindings. Also the versioning came out...

Im working on it on the [SignalKit-5.0](https://github.com/yankodimitrov/SignalKit/tree/SignalKit-5.0) branch. I refactored the `Signal` and `SignalValue` to be simple non-thread safe classes by default. Usually those are intended to create a binding...

You are right its more cleaner as an initializer parameter, so I refactored it to: ```swift let name = Signal(atomic: true) ``` Probably because `SignalValue` is a bad name so...

I like the idea. Here are some explorations for a signal that reacts to new observers by sending them its current value: - `ReactiveSignal` - `StoredSignal` `StoredSignal` sounds good, but...

Yes, you can embed it inside a theme. The first thing that comes to my mind is that you need to change the framework paths inside the **class-carob-loader.php** from: ```...

It will fall back to the option's default value if the data that you want to save for that option is not valid for that option type. Take a look...

Take a look at the theme options saving implementation in the Carob Starter Theme here: https://github.com/yankodimitrov/Carob-Starter-Theme/blob/master/theme/includes/class-carob-theme-options.php#L59-L95