Sam Hocevar

Results 189 comments of Sam Hocevar

@darklajid thanks for the additional information; can you tell me in what directory you install the software?

@simonebaracchi @kuko0411 thanks, admin rights is indeed a problem; most people don’t have this problem because they keep the default `C:\Program Files` location which has special permissions, causing the installer...

@h3x4d3c1m4l thanks for pointing this out! The installer should take care of this flag so I don’t understand what happened but it could be a clue. Could you maybe show...

> Yeah- I too am grinding against wincompose now requiring administrative elevation to start. > > I don't think this task scheduler approach is wise. Windows has a function for...

This is really strange. I have seen at least [one other occurrence](https://stackoverflow.com/q/29394841/111461) of the function failing in a similar way for another developer, but they didn’t seem to find the...

It might be a file encoding issue. Can you maybe share the file?

If you believe this would be useful and you know how to access the keyboard highlight, then I’ll happily review a PR, yes. Note that I have concerns about the...

It’s WPF, with very little features because so far I have tried to maintain compatibility with Windows XP.

That value should not affect the slope of the line, which is always `(y1 - y0) / (x1 - x0)`, but I see how it can offset the whole line....

Some fixed-point code that’s closer to the real thing (still not accurate): ```c++ static inline fix32 sqrt(fix32 x) { fix32 one(1); bool small = x < one; if (!x) return...