vim (or vi) and emacs are the two editors you can use on our system. If
you don't know either emacs or vim, I recommend vim over emacs.
To see some example Latex documents that produce slides and papers,
import postscript figures, use bibtex, and that use Latex's math mode,
look in my public directory (start with the README file):
/home/newhall/public/latex_examples/
Latex Tutorial
xwd > outfile.xwd # then click on window to capture in outfile.xwd
You can then use xv to edit outfile.xwd and save it in one of several
figure formats. See the man page for xwd for more details.
% time ./myprog
real 0m10.083s
user 0m0.000s
sys 0m0.004s
# here is time for a cpu-bound program. you can see almost all of its
# 7.931 seconds of execution time were due to user-level cpu time
%time ./a.out
real 0m7.931s
user 0m7.928s
sys 0m0.000s
% gcc -g -p -o myprog foo.c
when you run your program, a file named gmon.out is created that contains
profiling information of the run of your program. You can view this
file by running gprof (see the man page for gprof for more information):
% ./myprog
% gprof myprog gmon.out
Python
Sockets, http:
MPI and PVM: pthreads:
GPU computing:
OpenMP:
Grid, Cloud and similar: Parallel Algorithms: