Jesse Grosjean

Results 33 issues of Jesse Grosjean

First thanks for writing this class, I'm having fun trying it out. And very possibly this isn't a bug, just a user error. I'm trying to user DragableCollectionView with items...

bug
enhancement
help wanted

I'd like to insert a child into a NodeMut at a specified index. Seems like it should be easy, but I can't figure it out. Keep running into lifetime problems....

Thanks for CombineExt, I've been using in my apps for a long time. I recently ran into a performance issue with "Combine" `.collect(.byTime)`. It starts a repeating timer that runs...

I'm seeing `pointer being freed was not allocated` sometimes when trying to set attribute. In particular when trying to set attribute that's been removed from document and added to fragment...

I know this lib isn't advertised as ready for production, but I've been having fun using it in a side project. I've also been making some fixes as I run...

Is there a reason why this method isn't named `add`? ``` public func insert(child node: Node) { xmlAddChild(xmlNode, node.xmlNode) } ``` The underlying API uses the term 'add'. To me...

Thanks for starting this! Is there a reason that Element.clone() isn't public? Can it be made public? Thanks, Jesse

I get `Swift access race in Squid.Locked.lock() -> () at 0x7b080002f4e0` when running Squid under Xcode thread sanitizer. My understanding is there's not currently an actual issue in the threading...

I'm trying to Mock endpoints with Squid and Mocker. Here's the basic pattern of what I think I want to do: ``` import Mocker import Squid extension HttpService { func...