Max
Max
* carthage install method: homebrew * `which carthage`: /usr/local/bin/carthage * `carthage version`: 0.33.0 * `xcodebuild -version`: Xcode 10.2.1, Build version 10E1001 * Are you using `--no-build`? no * Are you...
Updating from 2.2.3 to 2.4.2, I get this exception when using SharpZipLib to extract [ICSharpCode.SharpZipLib.Zip.ZipException: Size invalid for descriptor at ICSharpCode.SharpZipLib.Zip.ZipFile.TestLocalHeader(ZipEntry entry, HeaderTest tests) at ICSharpCode.SharpZipLib.Zip.ZipFile.LocateEntry(ZipEntry entry) at ICSharpCode.SharpZipLib.Zip.ZipFile.GetInputStream(Int64 entryIndex)...
### Short description I can't get this to work with an app that is already using CocoaLumberjack 3.5.3 via Carthage because it causes conflicting definitions. I set up my logging...
Xcode 10's new build system runs build phases in parallel whenever possible. This causes problems with twine because there is a required order: twine has to generate the localization files...
Mention the `ALLOC`/`ZALLOC`/`REALLOC` macros, what they're used for, why they are important.
On Linux, the interface isn't being drawn. It only draws if I interact with it (by moving a slider, for example) which is difficult because I can't see it otherwise....
This looks like a great project. Here are the issues I'm getting: `error: call of overloaded ‘abs(TA3D::uint64)’ is ambiguous` I get this error in `src/ta3d/src/mesh/3do.cpp` and also `3dm.cpp` and `s3o.cpp`...
With version 0.4.0, this passes ```kotlin val x = UtcOffset.parse("+4") val y = UtcOffset.parse("+04") assertEquals(x, y) ``` This fails ```kotlin val a = UtcOffset.parse("+4:00") val b = UtcOffset.parse("+04:00") assertEquals(a, b)...
When using an in-memory DB (via SQLDelight 1.5.4), I reliably get `executeNonQuery error | error code SQLITE_LOCKED` when multiple threads are inserting/selecting simultaneously. This test, based on the [SQLDelight getting...
According to this [SO question](https://stackoverflow.com/questions/77492878/embedding-ruby-in-c-missing-class-method/77516294), just calling `ruby_init` no longer works in Ruby 3.2 and you have to call `ruby_options` prior to setting the load path. Figure out why that...