Robert Payne
Robert Payne
Currently you must modified the DDXML.h header to turn on the #define NS\* declarations. Instead of: `#if TARGET_OS_IPHONE && 0 // Disabled by default` Do: ``` #ifndef DDXML_NS_DECLARATIONS_ENABLED #define DDXML_NS_DECLARATIONS_ENABLED...
We're using libdill for Zewo/Venice a mostly networking backend for HTTP servers in Swift. Our server process works like this: * Use `tcp_listen` * Run a new coroutine for each...
This implements several discussed changes to Venice: 1. Bundles libdill directly, this avoids the need to use an apt/brew package 2. Adds coroutine local storage support 3. Refactors coroutines so...
I prefer this repository over the other python-firebase due to it's simplicity and not overcomplicating things with multiple processes and sorts. However, it would be a lot better off it...
The performance of this library could be greatly improved, below is a list of recommendations to take to increase the performance: - To capture the raw pixels you can utilise...
The docs currently show: ``` [FUNCALL, [FUNC, [[MAKE_ARRAY, [1, 2]], [ADD, [[VAR, [1]], [VAR, [2]]]]]], 10, 20] // FUNCALL = 64, FUNC = 69, MAKE_ARRAY = 2, ADD = 24,...
I'm not 100% sure why but `testClass` and `testGenericClass` are not part of the XCTestManifest and thus don't get run on Linux. The first `testClass` fails on Linux with a...
I believe there is a memory leak with the below code: https://github.com/wickwirew/Runtime/blob/5638402223ac41a4f3ddc45993534d8ff9c3f398/Sources/Runtime/Utilities/GettersSetters.swift#L41 I *think* what's happening is if the value is not initialised it will be fine and no leak...
Does Swiftline support Linux? It'd be great if the README noted whether it does or not!
We use Blobs a lot in our database and find the current API to not allow much performance tuning. This pull request address this by: - Blobs are now a...