Oskar Sigvardsson

Results 9 comments of Oskar Sigvardsson

@konradmiller A bigger problem with the performance is that as far as I can see, the app is entirely single-threaded and synchronous, which means that the prompt-script spends a whole...

@PwnArt1st "time" and "cwd" should take no time at all, "jobs" might be a pinch longer because it launches "ps" as a subprocess twice (and thus has that same blocking...

@PwnArt1st I have no idea, I found this project two weeks ago, and installed it, but didn't like how internally they generated the segments. Which is why I made that...

@b-ryan I doubt that "precompiling" the file saves much, the import cost is relatively small (especially since imported modules saves the generated byte-code in .pyc files, which should improve spin-up...

Hi! Thanks for the nice words! I can't say that I've seen this particular issue, and it's not immediately clear to me what's going on. My guess is it's some...

It sounds what you're looking for is a [polygon triangulation](https://en.wikipedia.org/wiki/Polygon_triangulation) algorithm. You can do this with Delaunay libraries that support "constrained Delaunay triangulations" where you say "these edges HAVE to...

+1 for this feature as well, and a request: MacVim lets you add the file to the arglist and make it the current buffer. That would be my preference, I...

It's been a couple of years since i wrote this code, and the details are a bit fuzzy. But I've been thinking about your comment, and the ONLY time it...

To be clear: if all points are coplanar, there's nothing sensible to do. The best case is to just error out earlier, which is what the change i suggested will...