Get the crisp of what I....

I brief here what I See , what I Read, what I Know, what I Hear. And remember this is my view. No offenses meant.
Showing posts with label Technical. Show all posts
Showing posts with label Technical. Show all posts

Tuesday, October 02, 2007

Crazy isn’t...

Recently I came to know about a new browser called CRAZY browser. I am used to Firefox mostly but few good features of this browser makes me to write this post. Once you are used to it, can never leave it.

First of all, this is a freeware and installs immediately (the download file size is small). It has got all things more than a normal browser reqiure. It downloads the pages faster. It doesn’t require you to install Java framework in your machine. It has got inbuilt popup blocker to block the pages and good cool features which I will be talking about in a few moment.
The one main drawback I see on this browser is – it requires IE to be installed previously in the machine – since it uses some of IE features. Ok lets be optimistic.

Cool features of Crazy

The domain completion for .com, .net, .org. Most of the browsers complete the URL of .com if you key in Ctrl + Enter. But this browser also completes .net and .org by keying in different combination. This can be configured in the OPTIONS section to our needs.
Also the tabbed browsing and the new mouse interface. You can close a page just by simply moving the move to some direction.


This action on mouse by holding the right click and releasing will close the current page. Similarly there are other cool movements to handle the pages.

This browser also allows closing the page in 3 different options.

- Close the current page
- Close all unavailable pages – where you get page cannot be displayed error
- Close all but locked pages

You can lock a page and prevent it from accidental closing. The other nice feature in this browser is grouping. You can group related pages into a single group – for example all news related sites into one group. Next time, just click the group name and it opens all the pages in one go.

I am yet to explore much into this browser but I am impressed by different feature it provides as of now. It is still in beta version and you can try it out for free from this location http://www.crazybrowser.com/

Friday, August 03, 2007

U R BEING WATCHED

This could be big blog writing but yet it is interesting to read and I hope you will enjoy it.

My recent reading was related to UFO (Unidentified Flying Objects). I had some knowledge about it when I was little and had seen some movies related to that. But after this recent reading, I go with the conclusion that there is life present somewhere in the Universe for sure.

From the readings I could derive the following:

The aliens are
  • Are more powerful than man
  • Not willing to interact with humans
  • Studying earth and the living and non living things on the earth
  • Also experimenting on other objects in the universe - like our famous moon, Mars
  • Using some improvised technology which is not known so far, to make objects dispappear or invisible to human eyes
  • A different technology that helps flying other than using jet of air or a combination since people could not hear sounds
Few interesting facts about them are:

Almost all the UFO look similar in structure - few of them vary very little but all of them with no wings to fly. They look like disc or hat, which helps us to say that they also come from an atmosphere like or some fluid medium based object similar to earth. Reason being, since the UFO are designed in an aerodynamic way - this structure is required only when we travel through a fluid to reduce the friction between the object and the fluid.

To say more, the lunar space module which landed on the moon need not be aerodynamic since there is no atmosphere in moon and hence the friction is very minimal whereas for the objects to survive in atmosphere it should be aerodynamically designed to reduce the friction caused by the atmosphere - that is the reason why most of the planets are in sphere shape. If you can see how the landing over Mars been done you can understand more.

One more question also arises here - is the reason for the aerodynamic structure is because of their plan to travel to earth where atmosphere is present? A question to be answered.

Ok let me come to other points - on the UFO
  • Some UFO grabbed a speed of 200 - 300 km in 2-4 seconds with out making any noise
  • The radio communications failed when UFO appeared near the range
  • Car engines stopped functioning when near to UFO
  • Animals can locate the space ships - for dogs suddenly barking at the sky happened when UFO was sighted.
  • Most of the UFO ships are not visible to human
  • When approached nearby they moved in a random direction and flew at a very high speed disappearing in seconds
  • Few UFO were visible to naked eye whereas most of them appeared only in the photographs taken - they were not visible when they were taken so there is evey possibility that no. of UFOs might come to earth every year and go unnoticed. I think this happens even today
  • People or animal not harmed by them although there are stories where people being abducted but not
  • UFO sighted to explore the sea water and animals - i remember seeing a snap wherein a UFO comes out of sea water
They have also noticed a big UFO spanning some 400km in diameter from a space shuttle with earth at the background. Few UFO sightings were observed in Moon and in space.

I too remember some past experiences- suddenly some light glows in the night in the sky - moves for a distance and disappears. I thought these could be some debris in the sky like asteroids or meteors. But I now speculate why it can't be UFO. Good no. of videos are present in You tube and you would also be interested to know about AREA 51. Browse the net .

For more information, check in Google (type UFO). Remember the next time you snap a picture of sky check it for UFO in the back ground. But be sure that YOU ARE BEING WATCHED

Tuesday, December 12, 2006

Kinda technical stuff...

Ever thought of Merlin greeting you when you open your outlook. Here it is..
Open Outlook and go to Tools> Macro>Visual Basic Editor










Add the Microsoft Agent Control 2
.0 as reference

















Go to This Outlook Session and paste the following code.

Public Sub Application_Startup()

Dim strMorning As Date

Dim strNoon As Date

Dim strEvening As Date
Dim strNight As Date

Dim strNow As Date

strNow = Format(Now, "hh:MM:ss AM/PM")

strMorning = Format("7AM", "hh:MM:ss AM/PM")

strNoon = Format("12PM", "hh:MM:ss AM/PM")
strEvening = Format("4.30PM", "hh:MM:ss AM/PM")

strNight = Format("8.00PM", "hh:MM:ss AM/PM")

Set agentMerlin = New Agent

With agentMerlin ' Load a character
.Characters.Load "merlin", "c:\windows\msagent\chars\merlin.acs" 'If the folder ''c:\winNT\msagent\chars\ is not present on your disk, create such a folder and save ''merlin.acs to that folder
'' Display the character
.Characters("merlin").Show
.Characters("merlin").MoveTo 0, 0
Select Case True

Case strNow >= strMorning And strNow < style="font-style: italic;">.Characters("merlin").Speak "Good morning Senthil. Had ur breakfast"
Case strNow >= strNoon And strNow
.Characters("merlin").Speak "Good afternoon. Hope u had a nice lunch"

Case strNow >= strEvening And strNow .Characters("merlin").Speak "Still working. Then go for a break - i mean coffee/tea!!!!!!"
Case strNow >= strNight And strNow
.Characters("merlin").Speak "Had ur dinner. Nowadays u work very hard. Take care of ur health dude"

End Select

agentMerlin.Characters("merlin").Hide

End With
End Sub

Save and close the window. Now go to Tools>Macro>Security and select Low security level to run your macro.
























That’s it. Now you see when you open the Outlook, you will greetings as this….