krackers
krackers
Fyi this is what http://calftrail.com/sesamouse/ originally did
Oh, if it's just that you want it's much easier. I'm fairly certain that the smooth-scroll of the mouse ends up being reported as regular scroll CGEvent, so all you...
>Why is domain name not directly supported by the proxychains.conf? I'm curious about this as well. While I agree that adding code to support this is unnecessary since it can...
@rofl0r Ah you're right, since `gethostbyname` ends up calling `connect` it's not really so straightforward. We end up needing to guard it so we don't call `init` again if the...
> whether it's bulletproof one would have to test it with all different backends I also wonder if there could be some thread related race condition where we after we...
>Adding a separate shortcut would be the way to go Thanks for the quick response, implemented this and it works pretty well! (Kudos on the well organized code-base by the...
`SLSSetDisplayRotation` seems to be what magesw's imagerotation uses. Here's the decompiled pseudocode ``` -(void)rotateDisplay:(long long)arg2 to:(unsigned int)arg3 { rcx = arg3; rdx = arg2; rdi = self; if (*qword_100008dd8 !=...
Oh wait I see in the unit test that this is expected behavior for the matcher because we have 3 different match types? ``` let actual: Vec = matcher.execute(&haystack).collect(); let...
> I thought this behavior is consistent with original autojump Yes I think you're right. https://github.com/wting/autojump/issues/348 For some reason I can't replicate it myself, but it seems it's still present....
Actually no it doesn't occur in upstream. They use `set` to dedup before printing: ``` for i, entry in enumerate(set(tab_entries)): ``` Edit: No wait that's apparently only in my local...