Comment on: I just spent 12h in Delphi trying to fix fatal bug. At the end I had to check almost line per line until I removed a '\' character from a string.
1 21 Sep 2016 01:09 u/texan11moore in v/programmingComment on: I just spent 12h in Delphi trying to fix fatal bug. At the end I had to check almost line per line until I removed a '\' character from a string.
I agree, I spent the whole day yesterday trying to figure out a performance issue that was caused by a missing '&' in c++.
Comment on: Stackoverflow needs to be circumvented. rant + ramble
The irony it is the same type of people who keep on complaining how the 1% is the devil.
yep. For my case, a big cache was passed as a parameter within a loop, so it was copying the cache data structure every single time in the scope of the called function. The problem was preventable if we passed the value by reference instead of by value.