
Search In
Amplitude modulation is a modulation conversion technique that is used mainly for the communication of data over the carrier wave. In this type of modulation the amplitude is varied in corresponding to the wave being transmitted into the carrier.
&n
Hi Readers!
Many times we need to check what Core Image filters do we have in iOS framework. Here is a simple code to get all the list of filters with their attributes. This will be easier for you to check and apply any filter on an image.
I
These all extend existing CakePHP functionality so they are almost similar but differ on what they extend from the existing folder.
The Component is used here in the controller it will used as a packages of logic and function and these are shared b
There are two kind of for loops in PHP, one is for() loop & other is foreach().
The for() loop has three sections: init, termination & increment.
Syntax:
for (initialization; Condition Check ;increment) {
code to be executed;
}
First
Simple Forgot Password System In CakePHP Via Email
Hello Readers,
This blog tutorial will explain how to create a simple Forgot Password system in CakePHP where a users will type email in input box & retrieve new password in their registered em
This blog will let you download files from ftp using curl. Ftp url is given below. From this url we need to download this file filename.gz
ftp://ftp.example.se/filename.gz
Following is the working example:
$curl = curl_init();
$file = fopen("fil
$.each loop is the substitute of the age old for loop and for-in loop.
jquery provide an object iterator utitlity $.each() and collection iterator utitlity .each().
$.each is an generic iterator function for loop. It is used for both object and arr
Client and server communication is done with two commonly used http method
1.GET
2.POST
GET- GET is basically used for getting the data from the server sometime cached.
The $.get method is used in jQuery to get the data.
$.get(URL,callback);
u
How to add Cron Jobs in Ubuntu?
I was facing issue for adding cron jobs in dedicated hosting (in Ubuntu). In order to add cron jobs in Ubuntu go to the terminal and type:
$ sudo crontab -e
this will open your personal crontab (cron configuration
Hello reader's if you are developing the website in which data is generated in div and height of them is not equal then you can sort out your problem from this blog.
In the scenario above, sometimes text matter in the div is not equal so
