Dr. Mickey Lauer

Results 149 comments of Dr. Mickey Lauer

> Yeah I agree, structs are awesome when it comes to modeling data. Although I still really like YapDatabase, I've been reaching for [GRDB](https://github.com/groue/GRDB.swift) lately which has some very similar...

@groue Thanks for your comment. I know it's always tough providing both high abstractions but also allow to use lower-level constructs, if necessary. For now, I'm still satisfied with YapDatabase,...

Stumbling over this as well at the moment. What is the PWM being used for in this library?

Even without that it won't compile, due to the great CAN->TWAI renaming. In the meantime I have found the CAN abstraction from https://github.com/meatpiHQ/wican-fw, which works just fine here.

I have the same issue. Using an iPhone 13 with (my very own) app https://apps.apple.com/gb/app/ble-labor-pro/id1436021089, which is using plain `CoreBluetooth` read statements.

Alright. Will do as soon as I get it working on the C level… right now I'm [still blocked](https://github.com/espressif/esp-idf/issues/9044).

FYI: I have started to get some things working on C level. I will create a bunch of abstractions that hopefully match your style. Bear with me though, as my...

Thanks, here's what I ended up with: ```swift var address = sockaddr_in() var len = socklen_t(MemoryLayout.size(ofValue: address)) let ptr = UnsafeMutableRawPointer(&address).assumingMemoryBound(to: sockaddr.self) try ing { getpeername(client.fileDescriptor, ptr, &len) } var...

If you have `Xcode` installed under a non-standard app name, it won't find it. Edit line 33 with the correct path and it should work – at least it did...

It‘s been almost two years now… got anything further with that issue? Happy new year, btw.