Monday 27 October 2008

Download full version of Codeweavers software for free - One day only

We all know that spiraling gas prices throughout the world has put a strain on the economy. But instead of becoming melancholic about the whole situation, we should look at the brighter side of things. After all some good samaritan out there would do something to bring some cheer into our lives.

Take for instance CodeWeavers CEO Jeremy White, who was so put off with the state of affairs in his country (USA) that he placed a challenge to the outgoing US president George Bush. And what was the challenge ? Well Jeremy placed six goals (He calls them lame duck presidential goals) which included the goal of reducing the price of gasoline to below a particular amount. And if any one of his goals were met before George Bush finished his term at office, then Jermey will, for one day, give away his flag ship products Crossover Linux Pro (For Linux and Mac) and CrossOver Games (Linux and Mac) to anyone for free. Guess what, the price of gasoline has indeed fallen to the level set by Jermey and George Bush is still the American President.

So for one day, more specifically October 28, 2008 which happens to be today, you and I get to download the un-crippled full version of the above mentioned Crossover products and get a valid license for the same, with one year support thrown in for free.

So head over to Codeweavers website and download your legal copy of Crossover products. Once you download the products, visit this page to get your free serial number.

Those who are not aware of Crossover software, it is a fine tuned implementation of WINE software which allows you to install and run Windows software natively in Linux.

Note: Due to high volume of traffic to the main Codeweavers website, you may download the trial versions of the software for Linux and Mac platforms from here. The trial versions can be unlocked to full versions with registered accounts when the main site comes back online.

Friday 17 October 2008

Create Vertical Menu

We have learned how to create horizontal menu before. Now we will try to make a vertical menu. We will make a vertical menu like the image. Ok let's do it

1. Login to blogger then choose "Layout-->Edit HTML"
2. Put the script below before this code ]]></b:skin> or put it in CSS code area.

.glossymenu, .glossymenu li ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 185px; /*WIDTH OF MAIN MENU ITEMS*/
border: 1px solid black;
}
.glossymenu li{
position: relative;
}
.glossymenu li a{
background: white url('http://blog.superinhost.com/vertical/blue1.gif') repeat-x bottom left;
font: bold 12px Verdana, Helvetica, sans-serif;
color: white;
display: block;
width: auto;
padding: 5px 0;
padding-left: 10px;
text-decoration: none;
}
.glossymenu li ul{
position: absolute;
width: 190px;
left: 0;
top: 0;
display: none;
}
.glossymenu li ul li{
float: left;
}
.glossymenu li ul a{
width: 180px;
}
.glossymenu li a:visited, .glossymenu li a:active{
color: white;
}
.glossymenu li a:hover{
background-image: url('http://blog.superinhost.com/vertical/blue2.gif');
}

* html .glossymenu li { float: left; height: 1%; }
* html .glossymenu li a { height: 1%; }



You can change the menu color, look at the red text (blue1.gif and blue2.gif). Change it with some color menu below. For example, if you want to choose red color, then the code would be like this :

.glossymenu li a{
background: white url('http://blog.superinhost.com/vertical/red.gif') repeat-x bottom left;


dan

.glossymenu li a:hover{
background-image: url('http://blog.superinhost.com/vertical/red.gif');



Vertical Menu Color :

blue1.gif

blue2.gif

green1.gif

green2.gif

red1.gif

red2.gif

pink1.gif

pink2.gif

black1.gif

black2.gif



3. Save your template.
4. Then go to "Page Elements" menu
5. choose "Add a Gadget -->HTML/JavaScript" the insert the code below.

<ul id="verticalmenu" class="glossymenu">
<li><a href="/">Home</a></li>
<li><a href="http://trik-tips.blogspot.com">Trik Blog</a></li>
<li><a href="http://x-template.blogspot.com" >Free Template</a></li>
<li><a href="http://getebook.co.cc">Free Ebook</a></li>
</li>
</ul>



Note :
- The red code is the links.
- The Blue code is anchor text.
- If you want to add menu, just copy the blink code and paste it.

6. Then click "Save"

Create Vertical Menu

We have learned how to create horizontal menu before. Now we will try to make a vertical menu. We will make a vertical menu like the image. Ok let's do it

1. Login to blogger then choose "Layout-->Edit HTML"
2. Put the script below before this code ]]></b:skin> or put it in CSS code area.

.glossymenu, .glossymenu li ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 185px; /*WIDTH OF MAIN MENU ITEMS*/
border: 1px solid black;
}
.glossymenu li{
position: relative;
}
.glossymenu li a{
background: white url('http://blog.superinhost.com/vertical/blue1.gif') repeat-x bottom left;
font: bold 12px Verdana, Helvetica, sans-serif;
color: white;
display: block;
width: auto;
padding: 5px 0;
padding-left: 10px;
text-decoration: none;
}
.glossymenu li ul{
position: absolute;
width: 190px;
left: 0;
top: 0;
display: none;
}
.glossymenu li ul li{
float: left;
}
.glossymenu li ul a{
width: 180px;
}
.glossymenu li a:visited, .glossymenu li a:active{
color: white;
}
.glossymenu li a:hover{
background-image: url('http://blog.superinhost.com/vertical/blue2.gif');
}

* html .glossymenu li { float: left; height: 1%; }
* html .glossymenu li a { height: 1%; }



You can change the menu color, look at the red text (blue1.gif and blue2.gif). Change it with some color menu below. For example, if you want to choose red color, then the code would be like this :

.glossymenu li a{
background: white url('http://blog.superinhost.com/vertical/red.gif') repeat-x bottom left;


dan

.glossymenu li a:hover{
background-image: url('http://blog.superinhost.com/vertical/red.gif');



Vertical Menu Color :

blue1.gif

blue2.gif

green1.gif

green2.gif

red1.gif

red2.gif

pink1.gif

pink2.gif

black1.gif

black2.gif



3. Save your template.
4. Then go to "Page Elements" menu
5. choose "Add a Gadget -->HTML/JavaScript" the insert the code below.

<ul id="verticalmenu" class="glossymenu">
<li><a href="/">Home</a></li>
<li><a href="http://trik-tips.blogspot.com">Trik Blog</a></li>
<li><a href="http://x-template.blogspot.com" >Free Template</a></li>
<li><a href="http://getebook.co.cc">Free Ebook</a></li>
</li>
</ul>



Note :
- The red code is the links.
- The Blue code is anchor text.
- If you want to add menu, just copy the blink code and paste it.

6. Then click "Save"

Saturday 11 October 2008

Free wallpapers for portrait monitors

Beautiful wallpapers for normal monitors are dime a dozen. In fact you will find links to quite a collection of wallpapers right on this blog. So what is unique about this set of wallpapers you might ask.

The USP of this collection is that it is optimized and targeted at portrait monitors - Those monitors whose height is larger than their width. Some of the wallpapers are a montage of numerous photos which have been stitched together to bring them to the required dimensions.


Check them out. They are indeed very beautiful.

Thursday 9 October 2008

Kingston unveils 32GB Linux friendly USB drive

Recent advances in storage technology has made it possible to literally carry all your data in your pocket. Kingston - one of the major global players in the USB storage and memory market with more than 2,000 memory products in its offing, has unveiled a 32GB USB flash drive called "DataTraveller 150".


Kingston DataTraveller 150

It has a dimension of 3.06" x 0.9" x 0.47" and is Linux friendly. Kingston offers the DataTraveller 150 with a 5 year warranty. It is priced at around USD 100.

Full Specifications of DataTraveler 150
  • Capacity – 32GB
  • Dimensions – 3.06" x 0.9" x 0.47" (77.9 mm x 22 mm x 12.05 mm)
  • Operating Temperatures – 32º F to 140º F (0º C to 60º C)
  • Storage Temperatures – -4º F to 185º F (-20º C to 85º C)
  • Convenient – Pocket-sized for easy transportability
  • Simple – Just plug into a USB port
  • Practical – Stores cap securely on end of device to prevent loss of cap
  • Guaranteed – Five-year warranty
  • Operating systems - Windows 2000, Windows Vista, Windows XP, Mac OSX and Linux.

Sunday 5 October 2008

Linux attains adulthood minus one

Yesterday - October 5 2008, Linux turned 17 years old. That is one year short for attaining adulthood if Linux were a human being. Seventeen years is no mean feat in the life of an operating system. Come to think of it, Windows 95, Windows 98, Windows ME, Windows NT, OS/2, all lasted only for a few years before they were superseded by their more mature counterparts.

On the other hand, Linux is going strong even after 17 years; Nay, it is surging up in the popularity chart albeit at a glacial pace. Companies like ASUS, DELL and others have started bundling and supporting different flavors of Linux on their laptops.

On the eve of celebrating the birthday of Linux - all of 17 years, what better way than to take a recap of the history of Linux ? Also read the original mail by Linus Torvalds in the Minix mailing list, introducing the Linux kernel to the outside world.