Friday, January 30, 2009

Install Flash Player for Firefox on Ubuntu

Install Flash Player on Ubuntu linux, use following command

sudo apt-get install flashplugin-nonfree

Thursday, January 29, 2009

Know the Ubuntu version

Use following command to know the Ubuntu OS version

cat /etc/issue

Monday, January 26, 2009

KDE on Install on Ubuntu Server

Install KDE desktop on Ubuntu Server

- sudo aptitude update

- sudo aptitude install kubuntu-desktop

Wednesday, January 21, 2009

Remove Hyperlink from multiple cells in Excel

In a blank cell, enter the number 1 .
Copy that cell.
Select the cells with the hyperlinks.
Right click on the seleted cells and click Paste Special.
Under operations, select multiply and click OK.

Tuesday, January 20, 2009

Get XML element inner text

XmlDocument xmlDocument = new XmlDocument(); // Creates new instance of XMLDocument

xmlDocument.Load(filePath); // Loads the XMLString which is XML file in one single string

XmlNode XMLElement = xmlDocument.SelectSingleNode("//data[@name='BrowserString1']//value"); // Gets the List of all XML elements foun

String value = XMLElement.InnerText;