Showing posts with label performance. Show all posts
Showing posts with label performance. Show all posts

Sunday, May 17, 2015

C vs Python

The same algorythm on the same input data solves the same task in 3.5 sec coded in Python, in 0.22 sec coded in Cython, but in 0.08 sec coded in C99 and compiled with an old good GCC ;) No extra libraries - just some math with final print(f).

Sunday, July 1, 2012

How to write speedy loops in JavaScript

And if you still think that the Google Chrome's JavaScript Engine (V8, WebKit) is faster than the old good "Gecko" from Mozilla Firefox, just check the link below:

HERE IS THE TEST (nothing dangerous)

Use pure JavaScript instead of frameworks and wrappers

I hate frameworks and wrappers of any kind, because of... You must understand that any framework causes performance leaks.

Here is just one more brilliant example.