Kevin Hendricks
Kevin Hendricks
If I rezip the unpacked epub, I can pass its url just fine via the query. The issue is only with local *unpacked* epubs. I started studying bibi_heart.js and it...
It is an external SSD that is formatted as Mac OS Extended (Case Sensitive, Journaled). I always store my git repos on case sensitive file systems to prevent inadvertent file...
I have tracked this one down to the implementation of _find_lcas in graph.py not being as efficient as it can be. The previous version does find the proper lcas but...
Okay but a copy and paste of those few lines works just as easily. I will be back home on Monday evening and will create a PR. All I have...
BTW your typing info for DEQUE was INT but I was unsure if that was correct. What is the base type of a commit? Isn't it a byte string of...
I will include that in my PR tomorrow evening. Today I compared original git logic to libgit2 logic for paint to common to find LCAs. I will incorporate some logic...
Okay, the PR is made. Hope this helps.
Did you test with the above or that final version that the PR pulled in? It has a few improvements over the code piece I posted above. FWIW, real git...
The latest real git merge techniques (recursive and ort) use recursive merges of *all* lowest common ancestors of both commits to create much better merges (much fewer conflicts). This requires...
Okay, I studied the git logic and libgit2 logic for their lcas finding routines and they use a priority queue (not a fifo) and they base their priority on the...