Subscribe: in Google Reader, by email, Twitter, or other options.
-->

Frozen Bubble – Free Game for Linux, Windows, Mac, and Mobile

If you’ve worked on Mandriva Linux, you’ve probably played Frozen Bubble. I remember the first time I played it a few years ago; I decided to keep Linux just for this game. =P

frozen_bubble
The game features penguins shooting coloured frozen bubbles to form groups of the same colour so they disappear. The object is to clear the whole screen before a bubble passes the line at the bottom. The game features 100 levels and includes a level editor.

Originally for Linux, Frozen Bubble is now available for Windows, Symbian S60 mobile phones, and even Mac. Besides that, there’s also a browser version of the game that can be played on your browser provided you have the Java Applet installed.
frozen_bubble_screenshot
Choose your Frozen Bubble:

HG’s Five Text Processing Tools for Linux

Any Linux Distro has many text processing tools installed by default. We can use these tools to get some of the desired outputs. Although every precautions have been taken in writing this post , still if you find some error please notify us [ WE are HUMAN and to ERR is Human ;-) ]

So here starts a short guide on various text processing tools.

1) tail
Short Description : output the 10 last lines of files

usage

$tail /your/path/to/file

the above command will display last 10 lines of the desired file. With the following arguments [ or in technical term switch ] you can get more out of it

$tail -n 2 /file/address

The above will display last 2 lines of your desired file [ you can change the value 2 with your own variable ;-) ]

$tail -f /file/address

This command is very useful to watch log files of ur Linux Box. This switch append the output with the changes in the file
$tail -v /file/name
This command will print the absolute file address of the file and then will output the last part of that file

2) head
Short Description : output the first 10 lines of files

usage
$head /your/path/to/file

The above command will display first 10 lines of the desired file. The “ head” command can be further customized with following switches

$head -n 4 /file/name
The above will print First four lines of your desired file [ please change value from 4 to your desired number / variable ]

$head -v /file/name
It will print file name and then will produce the head output :D

3) grep
Short Description : print lines matching a pattern

grep is really nice utility for searching a text withing a long file . It prints that line where the text is found

usage
$grep search_string /file/address
The above command will search for search_string in /file/address named file [ replace the search_string with what you want to search and /file/address with your file address]

4) sed
Short Description : stream editor for filtering and transforming text.

Usage
$sed -e 's:search:replace:g' /file/name

The above will produce output by replacing search string [ it will not change file ]

Now the main tool that is spell checking tool

5) aspell
Short Description: spell checking utility

usage
$aspell check /file/name
will check /file/name for any error and prompt if spelling error found. User then can replace correct spelling and it will be saved in file

$aspell list < /file_name
This will list of misspelled word from /file_name

So this was some shortlisted and commonly used text processing tools . Please note that this was basic text editing strings which are/may_be commonly used . For further info refer to each utilities manual entry ;-)

Creating Your Own Yum Repository

YUM or Yellowdog Updater Modified is an interactive, automated update program which can be used for maintaining systems using rpm. In short, Yum is an automatic updater and package installer/remover for rpm systems. It automatically computes dependencies and figures out what things should occur to install packages. Yum makes it easier to maintain groups of machines without having to manually update each one using rpm. Learn to make your own Yum repository.
Read more…