The graph contains a red dataset – my personal emails and a green dataset – emails sent from my university account. The Y axis is time of day and the X axis is the date. Each dot is an email sent at that time on the given day.
Number of emails sent per year:
Year | Personal Count | School Count |
2003 | – | 57 |
2004 | 145 | 310 |
2005 | 412 | 310 |
2006 | 474 | 354 |
2007 | 728 | 815 |
2008 | 831 | 1,378 |
2009 | 804 | 1,140 |
2010 | 893 | 438 |
2011 | 438 | 464 |
2012 – to May | 68 | 59 |
Out of curiosity I wanted to know how fast manufacturer provided the micro SD card in my DROID X phone is. Today I did a test to figure that out.
Procedure:
Results:
You can see that the write speed peaked at about 7.5MB/s and read peaked at just over 13MB/s. These speeds qualify this card as a class 6 card. Not bad considering the card is labeled as class 2. I expected far worse. So, if you are planning to replace this card and want one with at least the same performance buy class 6 or higher. Numerous forum users are reporting that cards higher than class 4 cause problems on the Droid X. I tried a class 10 and had to return it. Now I am using a class 4 with no problems.
]]>My how-to assumes you have a Linux system with standard development tools and compilers installed as well as GNU cross-compilers for the target platform.
The toolchain file sets a few parameters for the cmake system to override the default behavior of searching for the system compilers. I modified a sample from vtk.org CMake wiki. Here is my modified sample that cross-compiles for an ARM processor running Linux.
# this one is important SET(CMAKE_SYSTEM_NAME Linux) #this one not so much SET(CMAKE_SYSTEM_VERSION 1) # specify the cross compiler SET(CMAKE_C_COMPILER /usr/local/bin/arm-linux-gcc) SET(CMAKE_CXX_COMPILER /usr/local/bin/arm-linux-g++) # where is the target environment #SET(CMAKE_FIND_ROOT_PATH /opt/eldk-2007-01-19/ppc_74xx /home/alex/eldk-ppc74xx-inst) # search for programs in the build host directories SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) # for libraries and headers in the target directories SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)]]>