
Search In
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
Description:
Given a string of integers, count how many times that integer repeats itself, then return a string showing the count and the integer.
Example: countMe('1123') (count_me in Ruby)
Here 1 comes twice so <count><integer
To Recursively load the template objects and create the real objects in openerp show detail given below.
1-param company: company the wizard is running for
2-param code_digits: number of digits the accounts code should have in the COA
3-param tran
Communication in IPV6
In IPV6 we dont have any broadcast technique for delivering message and data.
The IPV6 can not be dependent on the DHCP Dynamic Host Control Protocol for the configuration , it also auto configure its own IP.
Traversing means to select HTML element on the basis of their relationship with other elements. Begining with one element we move through the DOM(Document object Model) untill we achieve the element needed.
As we shift from one element to another in
1> To delete an element from an array, use reject as shown below:
arr = ['a','b','c','d','e']
arr.reject! { |i| i.match('d')}
Result :=> ["a", "b", "c", "e"]
2> To delete particular keys from the array whose elements are also arrays,
In Joomla admin when we creating Menu and give the menu alias name it's working fine.
But sometimes, the case when we change the alias name of one menu.
For example: we change example.com/mymenualias1 to example.com/mymenualias2
We are redirected
Hi All,
Some time we need to update value in a table in some pattern or increment order. Then we use loop and iterate with all record, but as know looping is take time and our application become slower.
We can achieve this by without loop also. bel
variables are good and sufficient to hold the single values, But what if we want to store multiple values in a single variable in that case you have to use arrays or objects
Values in arrays are saved index base. Remember that arrays in JavaScri
Delegate is a type which holds the method(s) reference in an object. It is also referred to as a type safe function pointer. Delegates concept will match with function pointer concept of c++ language.
We use delegate keyword when we need to create
