
Search In
Ever since it first appeared back in 1995, JavaScript has been one of the top 3 programming languages.
Stats say that 95.1% of websites currently use it.
However, despite its obvious domination and ubiquitousness, JavaScript has a
In order to promote a mobile application there are various strategies & goals that need to be implemented, so that the targeted audience know the existence of your mobile application along with its
A function is a group of statements that does a special task. the function can be called repeatedly to execute the same statements.
The syntax of the user defined functions in php is as :
function functionName() {
code to be executed;
}
Here
UserEntities objUserEntities= new UserEntities();/*Create object of user entity
/* Add records into the database */
public void AddUser(User objUser)
{
objUserEntities.AddToUsers(objUser); /*Linq has its own function to insert th
In the last tutorial we learnt how to install RVM. In this one we will take one step further by creating Gemsets.
Note - Gemsets are used to eliminate “Gem clutter” and version mismatches. Also by creating Gemsets we can install multiple versions of
Today I am writing a blog about rails initialization process for beginners. Rails initialization process a vast topic. Here I am going through the use of config/environment.rb, config/environments/production.rb, config/environments/staging.rb, config
To install the OpenOffice follow the below steps:
1- To uninstall Libreoffice(if installed) type the below command from terminal
sudo apt-get remove --purge libreoffice* #if installed
2- To install OpenOffice run the below command from terminal
ID's in HTML are generally used as unique identifiers for the elements present in the DOM but it is not a compulsion to have only one element with a unique ID, which means you can have multiple elements with the same ID.
JQuery selector $("#idofelem
we often come to a situation where we have to create the dictionary based on the alphabetic order.
So here is the program for creating a Dictionary with first letter of the array element. array element First letter is a key for adding the element i
Binary Search:- The Binary Search is one of the most important searching technique in Searching Algorithm. The one of property of this searching algorithm is, all the elements are in sorted order in array. The worst case and average case complexity o
