
Search In
1> 'each' will loop through each element of the array and evaluate whatever is return inside the block, but it returns the original array without any change.
a = [5,10,15,20]
=> [5, 10, 15, 20]
a.each {|t| t+2}
=> [5, 10, 15, 20]
a.each


Hey peeps, You might have found yourself struggling with the selections in maya
specially during the process of unwrapping . You make selection and it just disappears and you don't know how to bring it back without using undo command.
Heres a quick
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
I designed my form with writing this script below. In this script showing $(wrapper).append() will trigger the action of adding the input boxes or any thing that you put inside it. For ex I used name, email and phone input text boxes. All you just n
We can increase or set width of a UIButton according to button title test. To set the width of a UIButton use CGSize. Here is the code :-
CGSize stringsize = [yourButton.titleLabel.text sizeWithFont:[UIFont systemFontOfSize:17]];
[yourButton setFra
Hello
Today, we will discuss about the tasks that need to carried out in order to upload an .ipa to the apple store.
Following are the things that need to be accomplished to upload the .ipa file:
Prepare the PhoneGap Build to produce a .ipa file
Anonymous methods are code with just like delegates.They contain the body part without defining the signature associated.
You need not specify the return type in an anonymous method.
Writing an Anonymous Method
Anonymous methods are declared wi
While displaying data inside grid is very common but sometimes you need to display data in the chart for decision making and for management purpose.
In that case what you need to do is to integrate the chart with your .NET application.
Chart From a
For doing search in C we use linear search a very simple and common searching process used for finding elements inside the array.
Linear search is also called as the sequential search.
Linear Search Algorithm
Lin
Hi all,
Tic-Tac-Toe is simple game in which you will try to mark your sign in three blocks to make a row , column or diagonal.
RULES FOR TIC-TAC-TOE
1. The game is played on a grid that's 3 squares by 3 squares.
2. You are X, your fri
