Tools and Software

Converting and merging TIFF files to PDF

Submitted by hpn on February 23, 2007 - 08:12
Notes
Found this on a forum. Very useful in converting Tiffs to PDF. tiff2ps -h 8.5 -w 11 *.tif > tiffs.ps ps2pdfwr -g7920x6120 tiffs.ps OR $ for f in *.tiff; do convert [options] $f $f.ps; done $ convert *.ps merged.ps $ ps2pdf merged.pdf For the first method, you'll need Ghostscript Utilities installed. For the second, you'll need imagemagick installed.
Converting multiple JPG files to PNG hpn January 24, 2007 - 10:15
Notes
(Quite handy - and you can even go ahead to shrink the two commands to one). for A in *.jpg; do convert $A $A.png; done rename -v 's/\.jpg.png$/.png/' *.jpg.png This, on GNU/Linux, with [:http://www.imagemagick.org/|imagemagick].
Renaming multiple files at one go hpn January 10, 2007 - 15:53
Notes
rename -v 's/\.php5$/.php/' *.php5 (the above command renames .php5 to .php in the present folder)
GaNapa GDM hpn January 6, 2007 - 09:09
GDM for the rightists? Not quite, but you could find it useful if you, like me, are not-so-orthodox Hindu who prays to [:http://www.hindunet.org/god/Gods/ganesh/|Ganesha] everyday before starting work.
Setting SCIM as default Input Method on Ubuntu Dapper and Edgy hpn December 17, 2006 - 12:19
Notes
Many people have asked me about this, so let me point to this wonderful piece of documentation on Ubuntu Wiki. [:https://wiki.ubuntu.com/InputMethods/SCIM/Setup] and if you're still stuck wondering why GTK IM Module isn't working for you on OpenOffice, there's [:http://www.scim-im.org/wiki/faq/gtk_gnome/why_i_can_not_input_with_scim…|another] [:http://www.scim-im.org/wiki/documentation/installation_and_configuratio…|wonderful piece of documentation] for you.
Ubuntu on Pentium D processor hpn December 3, 2006 - 08:44
Notes
For some new hardware I bought recently, I was almost lost in a maze recompiling the kernel and applying patches for SATA (libata) until I found out that the AMD-Xeon kernel on the Ubuntu repositories work just fine for Pentium-D processor.
Grisbi hpn September 25, 2006 - 18:58
Notes
Looking around for some good Open source payroll software for a friend of mine, I came across this personal finance management tool by name [:http://www.grisbi.org/|Grisbi]. It is a lot simpler than GnuCash (GnuCash looks heavily bloated and the latest version keeps crashing most times). It also has .QIF file support (although .QIF exported from Paypal didn't work very well). GnuCash files can also be imported into it.

Top 100 articles on Kannada Wikipedia

Submitted by hpn on September 21, 2006 - 05:46
[:http://ru.wikipedia.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4…|Edward Chernenko] of [:http://ru.wikipedia.org/|Russian Wikipedia] has put across [:http://tools.wikimedia.de/~edwardspec/cgi-bin/top100.cgi?uselang=kn|this very nice tool] that counts the hits that various language Wikipedias receive (Javascript snippet needs to be inserted on wiki to get it started, though). For many months now, Wikimedia has not been keeping page hit statistics on Wikipedia project since they add up to the load on the servers.

KMFL - The Keyboard Mapping for Linux project

Submitted by hpn on July 22, 2006 - 08:28
Notes
[:http://kmfl.sourceforge.net/|KMLF] is a wonderful project that makes it even more easier to write keymaps for different languages. Unlike [:http://m17n.org|scim-m17n] (where .mim files are used to parse the layouts), this uses binary files compiled from source containing mapping. The source files are not very difficult to prepare.