Sunday, October 03, 2010

KDD software

KNIME: http://www.knime.org/
WEKA:

Wednesday, November 11, 2009

Editing and Programming

The gnuplot (doc) is a portable command-line driven graphic utility

The make utility (doc) automatically determines which pieces of a large program need to be recompiled, and issues commands to recompile them.

useful Linux tips and tricks:
* grep -E "pattern1|pattern2" searches for conjunctions of patterns

* To configure a printer via the CUPS service use http://localhost:631 on a web browser

* nohup abcd & starts the program abcd in the background in such a way that the subsequent log out does not stop it

Latex Presentations

beamer class
prosper class

Friday, January 25, 2008

MathAbramowitz and Stegun: Handbook of Mathematical Functions

I found this handbook cited in a paper and I found it interesting:

http://www.math.sfu.ca/~cbm/aands

Tuesday, January 08, 2008

cups printing

To configure a printer via the CUPS service use http://localhost:631 on a web browser

Tuesday, December 11, 2007

CDBurnerXP

This is a free Windows program for burning CD/DVDs
http://www.cdburnerxp.se/
It needs .Net Framework 2.0

Monday, December 03, 2007

tree-dvips

If you want to use tree-dvips package, you have to compile with latex, not pdflatex and then dvips; ps2pdf

Wednesday, August 22, 2007

UBUNTU: How to mount an Image (ISO) file

To mount Image (ISO) file:
sudo mkdir /media/iso sudo modprobe loop sudo mount file.iso /media/iso/ -t iso9660 -o loop

To unmount Image (ISO) file:
sudo umount /media/iso/