Tyler Cloutier
Tyler Cloutier
Dang it. Hold on one moment, I'll see if I can remedy that.
Okay this issue should now be resolved. I really wish Slack had a built in way to do this.
That would be excellent! I plan to update the repo with a Dockerfile and host an image on Docker Hub, so that might help out quite a bit with that....
Likewise!
So I've been working on an example application and I think I need to add in a routing framework like Express so that it's much easier to just spin up...
Working on this currently. I made some much needed improvements to Reflex yesterday. I think that should make the design go more smoothly.
@damianesteban Take a look at the routing example in the README here: https://github.com/SwiftOnEdge/Edge/blob/routing/README.md It was a little tricky to implement, but I think it turned out pretty nice in the...
So this is an interesting question actually. Here's the thing with `[UInt8]`, there is a lot of magic going on with copy on write and sometimes it can be difficult...
There's also the point that `NSData` can be backed by a `dispatch_data_t` which can have storage that is not contiguous. Since we are using libdispatch, that could potentially save copying...
@robertjpayne I see, so you have been down this road. Thanks for the heads up on performance! I hope those issues will be resolved in the near future. Do you...