getting-started-with-phonegap-cordova

Getting Started with Phonegap/Cordova

There are two approaches through which you can develop mobile applications. The first approach is native development which means you will develop applications for one platform at a time. 2nd approach is developing application in HTML, CSS and Javascript in a native container. This approach is also called hybrid applications development because it is the mixture of native applications and web applications. It can be useful in developing mobile applications for different platforms (android, iOS, windows etc.) at the same time. Here we will dive into this approach using Phonegap and Cordova.

Read More
hostname-and-fully-qualified-domain-name-in-linux

Hostname and Fully Qualified Domain name in Linux

Hostname identifies your computer and Fully Qualified Domain name refers to hostname combined with domain name. E.g. hostname is server, domain name is webdevelopertuts.com, then fully qualified domain name (FQDN) will be blog.webdevelopertuts.com.

Read More
how-domain-name-is-resolved-to-IP-address

How Domain name is translated/resolved into IP Address?

Sometimes you ask yourself that how do I go to a specific server by just typing the domain name, although every server is recognized by an IP Address. This is done by Domain Name System (DNS). DNS is a system that translate/resolve domain name into an IP Address. Read More to know the process of resolution.

Read More
what-is-php-composer

What is PHP Composer?

Composer is a tool that manages dependencies in a project based on php. This tool installs/update the dependencies required by your project.

Read More
what-is-domain-name

What is Domain name?

A domain name is a unique name that identifies a website. It was introduced because humans can easily remember names instead of numbers. Let's dive into it.

Read More
how-webserver-serves-the-pages

How webserver serves the pages?

Web server is a kind of server that servers the web pages. We browse websites everyday but most of you don't know how the pages comes into your browser full of content and styles by only writing the name of the website.

Read More
what-is-client-server-architecture

What is Client Server Architecture?

A computer network architecture, in which clients makes request and the server responds to that request.
OR
The Client Server Architecture is a model/design/structure in which the Client makes the request for any service and the Server provides that service or responds to that request.

Read More