
Search In
Hello all!,Nowadays everyone wants that their website visited by every users in every countries and this can be possible with make your website multilingual, so in this blog I am going to describe you how to make your website multilingual.
First you
While storing and retrieving list of elements we use many classes for that like ICollection,IList .
We also have one collection that be used for this purpose named as IEnumerable.
IEnumerable<T>
Th
Sometimes we need to find whehter the zip file contains valid files or not. Suppose you have a zip file which contains multiple file you want to upload that zip file only if it contains files having extension jpeg,jpg,png,gif,tiff only, so we can do
Sometimes we want to sort a List based on some property. Suppose we have a List of UserModel and we want to sort List by firstName then we can do that easily by using Collections.sort() and Comparator interface.
Example: In the below example I'm
In this article I will guide you to use the tinymce-rails gem to add text editor functionality. TinyMCE is a rich text editor that outputs HTML, makes it easy to add content in rails application.
First you need to add the tin
The C Preprocessor not the compiler part, but it executes as compilation occurs.
C Preprocessor is just a text substitution tool that tells the compiler to do required pre-processing before the actual compilation.
&n
1.CakePhp is basically a framework which is based on MVC pattern i.e(model view controller).
2.Cakephp have built in validation.
3.Cakephp have fast and flexible php syntax with helpers.
4.Cakephp is very friendly because developer done their code
Validation is a process of analyzing the exactness of data. It assures that the data entered is according to our requirement or not.
CakePHP has it's own inbuilt validation rules. In CakePHP validation rule is locate in the Model file of that pa
Hi Readers!
Below is the code to launch the Apple Maps application and display the directions between 2 points on Map.
Example 1: Display directions
MKPlacemark *placemark = [[MKPlacemark alloc] initWithCoordinate:CLLocationCoordinate2DMake(42.31
METHOD OVERLOADING:
Having more than one methods with the same in the same scope. i.e. class is known as method overloading.
It is useful in increasing the readability of the program. If a user wants to perform some operation say multiplication on
