I have a production server running with the following flag: –XX:+HeapDumpOnOutOfMemoryError Last night it generated a java-38942.hprof file when our server encountered a heap error. It turns out that...
  • May 22, 2022
  • 0 Comments
I’ve recently become interested in algorithms and have begun exploring them by writing a naive implementation and then optimizing it in various ways. I’m already familiar with the standard...
  • May 16, 2022
  • 0 Comments
What’s the easiest way to profile a PHP script? I’d love tacking something on that shows me a dump of all function calls and how long they took but...
  • May 15, 2022
  • 0 Comments
Is there a standardized way in R of measuring execution time of function? Obviously I can take system.time before and after execution and then take the difference of those,...
  • May 14, 2022
  • 0 Comments