12 Wallpapers in which linux criticizes windows.
Just for FUN. Some cool wallpapers.
<a href="http://www.bablotech.com/2009/01/26/12-wallpapers-in-which-linux-criticizes-windows/">12 Wallpapers in which linux criticizes windows.
Just for FUN. Some cool wallpapers.
<a href="http://www.bablotech.com/2009/01/26/12-wallpapers-in-which-linux-criticizes-windows/">12 Wallpapers in which linux criticizes windows.
Adding a border to the images from command line is quite simple. But if you have couple of images in a directory that you want to add border to then it may become quite painful 🙂
So what is the solution. You can simply use a one liner to do the job for you.
for i in *.jpg; do montage -geometry 720×576 -background black -quality 100 $i conv-$i; done
Today I found a nice link on the startup speed of Openoffice and better integration with go-oo.org
<a href="http://gotsource.blogspot.com/2008/11/openoffice.html" target="_blank">Link Here.
So what are you waiting for go and get it <a href="http://go-oo.org/" target="_blank">here.
Found a nice utility on sourceforge called jatss
URL: http://sourceforge.net/projects/jatss/
Description: JATSS Time Sheet is pile of Perl code hastily thrown together to provide a simple to use time tracking tool for small groups.
Pros: Simple Web UI.
Fast to setup and fix issues.
Cons: Not too many features.
Scratch <a href="http://scratch.mit.edu/about">website.
Description from their site:
Scratch is a new programming language that makes it easy to create your own interactive stories, animations, games, music, and art — and share your creations on the web.
Scratch is designed to help young people (ages 8 and up) develop 21st century learning skills. As they create Scratch projects, young people learn important mathematical and computational ideas, while also gaining a deeper understanding of the process of design.
Continue readingHave you ever had a column-oriented text file, similar to a spreadsheet, but the columns weren't in the order you wanted? For instance, suppose you
had the following information in a file named "checkbook.orig":
COST DATE BALANCE
10.00 040198 1000.00
20.00 040298 980.00
30.00 040298 950.00
The information is good, but you'd prefer to have the DATE column first, followed by the COST information in the second column, and the BALANCE column third.
Continue reading