Stuart A. Malone
Stuart A. Malone
I realize that your SGDSolver class in version 0.4.0 is probably a work in progress since it is not documented, but I decided to try it anyway. In my own...
I have an NSString that was converted from little-endian Unicode NSData. The first character of the string is the Unicode byte-order marker (BOM), which in little endian is 0xFF 0xFE....
Add support for reading timestamp columns in text format. I encountered these when reading timestamp columns from a MariaDB 10.5 database. A simple unit test is included which fails before...
### Describe the bug The getter for MySQLData.time assumes the data is in .binary format. However, MariaDB 10.5 returns data from timestamp fields in .text format "2008-12-29 12:59:59", which leads...
I believe I have a false positive when calling an internal init on a type using a typealias. You can reproduce the false positive using my [websocket-actor-system](https://github.com/samalone/websocket-actor-system/tree/e1b37a283d8f3b21dae19883fb68277765c64f46) code. Just type...
### New Issue Checklist - [x] Updated SwiftLint to the latest version - [x] I searched for [existing GitHub issues](https://github.com/realm/SwiftLint/issues) ### Describe the bug Adding the SwiftLintPlugin to an SPM...
I'd love for Xcodes to be configurable to automatically download and install Swift development toolchain snapshots from https://www.swift.org/download/. For example, I have a project running in Swift 5.9 that could...
I've got some code that implements the [DistributedActorSystem](https://developer.apple.com/documentation/distributed/distributedactorsystem) protocol. Apple's documentation says: > Note: > Although the remoteCall methods are not expressed as protocol requirements in source, the compiler will...
In the documentation, I specify what types of messages are logged at different logging levels. I'm happy with this documentation, but I'm not sure the code actually follows those rules....
The automated ping/pong support that was in the code briefly is no longer working, and should probably be restored. The goal of ping/pong is to: 1. Keep the network connection...