Aleksandar 'Alex' Gotev

Results 11 issues of Aleksandar 'Alex' Gotev

## Description Add a prebuilt carthage framework to every RxDataSources release to speed up build times when using it in apps. ## Motivation and Context I'm using carthage as dependency...

Yesterday Apple unveiled Combine, an Rx Like framework for iOS 13+ and macOS 10.15+. https://developer.apple.com/documentation/combine/publisher This is a game changer and can be a huge benefit for ReactiveAPI looking forward.

Up to this point if we set `baseUrl = https://www.server.com/api` and we have an API which needs to call the baseURL, we need to write a func like this: ```swift...

enhancement

## Description Add a prebuilt carthage framework to every Reachability.swift release to speed up build times when using it in apps. ## Motivation and Context I'm using carthage as dependency...

@falkoschindler added the script as per your instructions in #2549. The script is meant to be copied and used as a base package build script for nicegui users, who will...

enhancement

### Description I'm trying to execute multiple parallel tasks which performs CPU bound activities, so I'm using `run.cpu_bound`. I expect a failed task to not cause the others to fail...

help wanted

When multiple endpoints are defined, one ends up with: ```swift await server.appendRoute(HTTPRoute(.GET, "/cat"), to: MyCatGetHandler()) await server.appendRoute(HTTPRoute(.GET, "/dog"), to: MyDogGetHandler()) await server.appendRoute(HTTPRoute(.GET, "/fish"), to: MyFishGetHandler()) ``` and then implementations contains...

JSON responses are common for a web server. With this extension (serializing dates as millis by default to ease JS clients): ```swift extension HTTPResponse { static let jsonTimestampMillisEncoder: JSONEncoder =...

First of all, thanks for this really good library! With this setup: ```swift let server = HTTPServer(port: 8080) let root = URL(fileURLWithPath: "/Users/myUser/myStaticDir") let route = HTTPRoute(method: .GET, path: "/static/*")...

Hi and thank you for this library! Wanted to test it out in an actual iOS project, but when I tried to import it the usual SPM way from Xcode,...