Inside the hard disk

I found a dusty prehistoric hard disk. A 30MB one… yeah, it’s 30MB, not 30 GB. Let’s see what’s hiding in that.

30MB hard disk

Meet the hard 30MB disk

Top View of hard disk

Top view of the hard disk

Bottom view of hard disk

Bottom view of the hard disk

bottom view of hard disk without frame

Bottom view of the hard disk without frame

Opened the back cover

Opened the back cover

Removed the metal frame
Removed the metal frame

Removed the side screws

Removed the side screws. Figured out that they could just be turned to unscrew.

The grey thing was glued
The grey thing was glued. Removed it with a screwdriver.

The top cover could be removed the same way

The top cover was also removed with a screwdriver

Inside the hard disk
Inside the hard disk

The head of the hard disk
The head of the hard disk

This is the most critical part of the hard disk. The head does not touch the disk, but lies extremely close to it. When your hard disk gets a shock or whenever some dust gets into it, the head may accidentally touch the disk. This is where your hard disk crashes and you just let out your plethora of swearing.

The hard disk platter

The hard disk platter

Note: Here’s why it’s called a hard disk, compared to the floppy disk. Here, the platter disk is rigid. It is a circular disk on which magnetic data is stored.

The head removed
The head removed

The hard disk spindle motorThe hard disk spindle motor

A little souvenir hanged on my door :)That’s a good souvenir now hanging on my door.

Posted in Photoblog | Tagged | 6 Comments

Using !important rule in CSS

Whenever you use CSS (Cascading Style Sheets), defined styles are applied in the same order as they are read by your browser.
If a style is present at the top of a stylesheet and is changed afterwards in the document, the new property will be applied.

Let’s see that in details.
h3 {
color: #0000ff;
}

This line will set your <h3> header tag to blue. However, if further down in your stylesheet you redefine the <h3> tag:
h3 {
color: #00ff00;
}

The color of your <h3> heading will now be green.

The !important rule in CSS is used whenever your want to prevent some property to be redefined.
h3 {
color: #0000ff !important;
}

This way, even if you redefine the <h3> tag again in your stylesheet, the <h3> tag will stay blue. However, this does not work in IE.

Try it now. Here’s the HTML file:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h3> Lorem Ipsum... </h3>
</body>
</html>

And the CSS file:
h3 {
color: #0000ff !important;
}

h3 {
color: #00ff00;
}

Remove the !important and refresh the page. You’ll notice the text turns to green.

How to use the !important with WordPress?

Ever wanted to make your comments stand out among all other comments on your blog? A simple hack to highlight the author’s comments can be used using the !important rule. Just add these lines of codes in your style.css file:
.bypostauthor {
background-color: #c0c0c0 !important;
}

You can change the #c0c0c0 color to any color of your choice.This way, your visitors and subscribers will easily find your comments.

Posted in wordpress | Leave a comment

African Violet

African Violet
African violet

Posted in Photoblog | Tagged , , | 2 Comments

Rosebud

Rose

Somewhere in my garden…

Posted in Photoblog | Tagged , , | 4 Comments

Black Lady Bird With Yellow Spots

black lady bird with yellow spots

Little lady bird found in my garden. Anyone can identify it?

Posted in Photoblog | Tagged , , | 2 Comments

Bee on Yellow Flower

bee on yellow flower

Posted in Photoblog | Tagged , | 2 Comments

Giant Bamboo – Dendrocalamus giganteus

Dendrocalamus giganteus
Dendrocalamus giganteus
Giant Bamboo plant shot at Réduit.
Posted in Photoblog | Tagged , | 2 Comments

Yellow Flower

Nice flower found on the road between the State House (Chateau de Réduit) and “Bassin Canard”
Close up shot
Fly on yellow flower
Caught a fly on the flower

I managed to pick some seeds from dead flowers. I hope they’ll germinate. I won’t mind having this beauty in my garden :)
Posted in Photoblog | Tagged , | 5 Comments

Caudan Waterfront – Bay View – Panoramic – Port Louis – Mauritius

Caudan Waterfront - Bay View - Panoramic - Port Louis - Mauritius
Panoramic view of CaudanWaterfront bay.
Posted in Photoblog | Tagged , | Leave a comment

Labourdonnais Hotel – Caudan – Port Louis – Mauritius

Vertical panoramic shot of one side of Labourdonnais Hotel, Caudan Waterfront, Port Louis, Mauritius

Vertical panoramic shot of one side of Labourdonnais Hotel, Caudan Waterfront, Port Louis, Mauritius

Posted in Photoblog | Tagged , | 2 Comments