Your program is returning ErrorLevel 128 (exit code)

Here is a scenario: You have written a program; You run it; First line of the program never gets executed; ErrorLevel (exit code) 128 is returned. You search Google for solution, but nothing useful is found. This happened to me. Problem was — Windows was running out of memory on my virtual computer. This can …

Online CPU benchmark now with user comments

Two weeks ago we launched a New version (v1.5) of online CPU benchmark – SilverBench. This new version allows users to post comments — details about their tested machines. Of course these comments are optional and completely anonymous if user chooses to. Comments can be viewed on the main page, result page and Top 100 …

How to execute JavaScript after inserting into element.innerHTML automatically

Here is a scenario: you have some software/component that inserts partial HTML into page using JavaScript element.innerHTML function; you can insert any HTML tags including <script>; you can not call any JS function (software/component does not have such functionality), and inserted script using innerHTML is not executed automatically. After some lost time trying to come …