|
|
|
|
|
by davidjohnstone
5068 days ago
|
|
The server side code of http://www.cyclinganalytics.com/ is almost entirely Python with a small amount of C. There's one particular bit of data processing that gets a couple of orders of magnitude speedup by writing the code in C rather than Python. It involves lots of loops and indexes, and it's possible there's a faster way to do it in Python, but I couldn't think of one. |
|