Changes between Version 22 and Version 23 of DeveloperGuidelines/Optimisation


Ignore:
Timestamp:
05/13/10 19:15:23 (15 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Optimisation

    v22 v23  
    2828There are more things to consider besides performance, e.g. usability and maintainability of code. New contributors should be able to easily understand the code, and bugs should be easy to find.
    2929
    30 Python performance tips: http://wiki.python.org/moin/PythonSpeed/PerformanceTips
     30Python performance tips:
     31 * http://wiki.python.org/moin/PythonSpeed/PerformanceTips
    3132
    3233=== Specific Examples ===
     
    5152(0.012 vs. 0.007 seconds vs in a test case)
    5253
    53 Javascript string concatenation: http://aymanh.com/9-javascript-tips-you-may-not-know#String_Concatenation_vs._Array.join
     54Javascript string concatenation:
     55 * http://aymanh.com/9-javascript-tips-you-may-not-know#String_Concatenation_vs._Array.join
    5456
    5557=== Profiling ===