Sunday, October 16, 2005

Albert Einstein

"Person of Century".

http://www.albert-einstein.org/
http://alberteinstein.info/

Born March 14 1879

Dies April 18 1955.

You can view actual hand written Einstein's notes including famous "e = mc2" at
http://alberteinstein.info/gallery/gallery.html

Charlie Chaplin :)

DOB : 16 April 1889
Date of Death : 25 December 1977

http://www.charliechaplin.com/article.php3?id_article=3

http://www.imdb.com/name/nm0000122/bio

http://www.clown-ministry.com/History/Charlie-Chaplin.html

Lot to learn from this great actor, personal life was demolished and also he was always questioned about his loyality to England. But he never shown this on-sreen. :(

His Personal quotes
"I have no further use for America. I wouldn't go back there if Jesus Christ was President." ( he was denied of re-entry in USA)

"To truly laugh, you must be able to take your pain, and play with it!"
"I remain just one thing, and one thing only -- and that is a clown. It places me on a far higher plane than any politician."
"Laughter is the tonic, the relief, the surcease for pain"


Hats of to this great Actor.

~Amod

Friday, October 07, 2005

"His Principle of Peace Was Bogus"

Interview of Gopal Gopal Godse, co-conspirator in Gandhi's assassination and brother of the assassin, looks back in anger--and without regret

http://www.time.com/time/asia/magazine/2000/0214/india.godse.html

Thursday, September 01, 2005

Today 2 Sep , 2005.
I came across article in Times of India "Girl saved by computer lifeguard"
Story goes like a young girl was drowning in swimming pool which was guarded by an extraordinary computer system that keeps an eye on everybody in swimming pool. The girl was pulled unconscious from the deep end of a public ppol in North Wales, when underwater cameras spotted that she was not moving and alerted a lifeguard. The lifeguard could not see the girl in the crowded pool but was able to respond to the alert and rescued her within 62 seconds. It is the first time in Britain that the Poseidon survelliance system manufacured by a french company has helped life guards to save a swimmer from drowing.

The poseidon system is a series of cameras at the pool that monitor swimmers, matching the images with a database to detect those in distress or unconscious.


That's just amazinag....

see links

http://www.poseidon-tech.com/us/save.html
http://www.poseidon-tech.com/us/system.html

Wednesday, August 31, 2005


My First U.S. Visit:

I went to US on 12April 2005 and return on 10 July 2004. During this period I stayed at KANSAS CITY. It was a very nice experience. I also went to CHICAGO.

Friday, August 26, 2005

Check For Upgrades

Software Upgrades

Most of software’s today has option to look for latest version. Below document explains way to check for latest version or way to check for upgrades.

Who should read this document:

Any software developer who has basic knowledge of software development can read this document. Also some basic knowledge of XML is necessary.




Most of software products had major, minor updates in product. The user should aware of updates is using Newsletter or by checking for sites periodically. Another way to increase the download count for product is making user aware of latest available product.

There are various ways you can prompt user to download the latest version. For e.g. Adobe Acrobat Reader at start of program asks for “Check latest version”. Or you can have a menu “Check for Upgrade”

The way it works is as follows.

One of common way to see latest version available on server is by reading the PAD (Portable Application Description) file. This files store all information about product. This is normal xml file with predefined tag structure. By reading this XML you can get information like “Company Info”, “Program Info”, “Web Info” etc.


Generally pad files are useful for submitting products on various sites. For e.g. suppose we have to submit product at site www.download.com . Now here for each product we have to enter company information, product information etc. This becomes tedious when you have to submit product to lot of sites. Instead of that you just have to submit your pad file containing your information and corresponding site will update information on their site.

So once we have our pad file created. Store them on server and make accessible to everyone. For e.g. a common path for pad file will be www.yourcompany.com/app.xml (where app is application name)

To get latest version of product available on server read xml file and tag “XML_DIZ_INFO/ Program_Info/ Program_Version”.

Once we get the latest version available on server, we can compare with what version user has. If the version on server is greater then we can prompt user to download the latest version from server. We can also find the path of setup by reading tag structure “XML_DIZ_INFO/ Web_Info/ Download_URLs/ Primary_Download_URL”

Once we get the download link of software we can directly execute the link so that user can save setup and run itself. Or that can be achieved from Inno Setup ( http://www.jrsoftware.org/) a free software installation tool, there is a third party dll (ISX download dll) which check for internet connectivity and download the setup and installs it.

Pseudo code for upgrade utility.


Step 1: Get version installed on user machine
Call GetCurrentVersion() method to get current version.
Step 2: Get Version Installed on Server
Call GetLatestVersion() method to get Version installed on server.
Step 3: if GetLatestVersion() > GetCurrentVersion() then
Prompt user if he want to download latest version
Step 3a: if User wants to download the latest version
Step 3b: Call GetDownloadURL() to get setup link
Step 4b: Process with the URL to download latest setup.
Step 4: Exit method.


Method GetCurrentVersion():

Step 1: Read registry to get current version installed by user
Or
Get application main Executable and read version information of that File
Or
Read application resource file to get the Version information

Step 2: Return the version retrieved from step 1.

Method GetLatestVersion()

Step 1: Get the pad file path for e.g. www.yourcompany.com/product.xml.
Step 2: Read the tag structure “XML_DIZ_INFO/ Program_Info/ Program_Version”
Step 3: Return the value read from step 2


Method GetDownloadURL()

Step 1: Get the pad file path
Step 2: Read the tag structure “XML_DIZ_INFO/ Web_Info/ Download_URLs/ Primary_Download_URL”
Step 3: Return the value read from step 2.



If you have any queries or suggestion please contact me at amod_go@yahoo.com