Nikita Bilous

Results 10 comments of Nikita Bilous

I trust your expertise, and I'm ok with skip symlinks at all at windows. So, should I merge this PR with `symlink_file`, or will you remove it?

> Would love to do that as a hacktoberfest project. Including a msi Installer. So could you prepare a hacktoberfest label on that issue and assign me. :-) Go ahead!

First, I dont think you will get any speedup from parallelization, more likely the speed would degrade, for example on HDD it means additional head repositioning instead of linear reading....

Thanks for the clarifications, that was quite interesting read. But I'd really like to see some benchmarks showing that parallel copy (assuming source / destination are the same, as it...

I know how to do benchmarking, you don't have to explain this to me. I was hoping that you already have some benchmarking done (or read somewhere), otherwise it sounds...

For those who run into this error trying to execute `next()`: It only works if quickfix window is open (by calling `:Trouble`)

found the workaround myself: ```python try: ga_instance = pygad.load('test') ga_instance.fitness_func = fitness_func ``` still, would be nice to reflect this in documentation

After being stuck for an hour at same problem, i think i found solution: ```diff - lock = r.lock("lock") + lock = r.lock("lock", timeout=10) ``` without timeout blocking aquire will...