Vovchik

Results 9 comments of Vovchik

how about using connection length as a tie breaker? same input will results in the same tie breakers, different inputs will create different tie breakers, sounds like a win win...

windows exe with an input of a file?

can you try this one and tell me how it works? ``` package screenshot import ( // #cgo LDFLAGS: -framework CoreGraphics // #cgo LDFLAGS: -framework CoreFoundation // #include // #include...

Thanks for checking :). I guess because his code is a using a different binary to take the screenshot, I will try to find how to fix it during the...

Hey, yeah I didn't really touched this project for some time... I will try to make it work this week you can try to run it using legacy gl (https://github.com/go-gl/gl/issues/63)...

Hey, sorry I have been busy. I will look into it over the weekend.

I'm not sure as this library was not developed to record many frames in a second, more like a frame every now and then

Looks like its searching for /var/go/.Xauthority and its not founded, and the path looks like not $HOME/.Xauthority, can you check if $HOME/.Xauthority exists? if it does you can try to...

something like this could work too ``` fn sum_ver(x: &[f32]) -> f32 { //assert_eq!(x.len() % f32x8::lanes(), 0); //not needed x.simd_iter().sum::().sum() } ``` using this ``` pub struct SimdIter SimdIter Iterator...