I use recordMyDesktop to grab the screen movie but its default format is in ogv. If you want to convert to Flash format locally you can use the following command. Feel free to add it in your bashrc. If I recall correctly, this method can produce the best conversion in ...
Iterative closest points(ICP) demo
http://www.youtube.com/watch?v=igb8mAJ6F5I
The Perl code generating the plot is listed below
#!/usr/bin/perl
use strict;
use warnings;
use Chart::Gnuplot;
### Write running time
open my $IN, '<', "benchmark.dat" or die $!;
# Data
my @x;
my @y;
while( <$IN> ) {
chomp;
my ($t1, $t2) = split /\s/;
push ...
Using OpenMP with CMake
Add the following lines into your CMakeLists.txt
# Even though -fopenmp won't appear in the GUI options, it does take effect
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp")
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fopenmp")
Backspace and Delete in TotalView's XTerm commandline interface
I used TotalView a lot but the keyboard backspace and delete keys were totally messed up. Luckily I found the solution in a great article as follows:
Install lighttpd as a service in Cygwin
cygrunsrv --install lighttpd --path /usr/sbin/lighttpd
--args "-D -f /etc/lighttpd/lighttpd.conf" --disp "CYGWIN lighttpd"
See more http://www.cygwin.com/ml/cygwin-apps/2004-09/msg00115.html