Design a site like this with WordPress.com
Get started

How To Make App From Website?

A mobile application is something that has become a necessity for any organization or a web service. ( because People want to use services on the go, They just don’t want to open Laptop for it ) Hence, Building a mobile application becomes a mandate for your business or service. (if you really want to … Continue reading How To Make App From Website?

How To Setup Http to Https Redirect For Any Server (IIS | Apache) ?

In this blog post, we will be using a free SSL certificate provider called NakedSSL, which helps you to redirect your traffic from a non-https service to an https. After reading this tutorial, you will get to know how you can secure a website for free. You will also learn, How to get Free SSL Certificate for your naked domain? … Continue reading How To Setup Http to Https Redirect For Any Server (IIS | Apache) ?

Don’t Ignore These HTML Tags ! (If You Really Want To Rank Higher On Google)

SEO (Search Engine Optimization), if applied logically, can help you gain tremendous traffic and may even help your website to top on google results page!. Yes, We all know, that Google & other search engines, use different mechanisms & techniques to choose top sites very wisely among several websites available on the internet. and Who Doesn’t Want … Continue reading Don’t Ignore These HTML Tags ! (If You Really Want To Rank Higher On Google)

How To Create A Responsive Login/Sign Up HTML Page ?.

In this tutorial, we will be creating a responsive Login/Signup page for your next web application. We will be using a bootstrap tabbed class, to make it more user friendly, thus making it more appealing to users. Prerequisite: To get started , we will be needing following libraries: Bootstrap 3.7 (CSS) Jquery 1.12.4 (JS) Boostrap … Continue reading How To Create A Responsive Login/Sign Up HTML Page ?.

How To Setup Virtual Host In Apache (XAMPP + PHP 5)

In this tutorial, we will setup a virtual host on Apache server. We will be using XAMPP and PHP during the process. Virtual hosts hide the specific project name & assign a local domain to the project URL, thus locally managing the project by a domain. For Instance: We have project CHAT_APP at location : C:\xampp\htdocs\CHAT_APP How do we … Continue reading How To Setup Virtual Host In Apache (XAMPP + PHP 5)

How To Integrate Auto Complete Search To Your Web Application ?

In this tutorial, we will integrate an auto-suggest feature to our existing web application. We will implement facebook’s user-search functionality in this tutorial. Auto Suggest feature helps to generate recommendations based on letters you type in the text box thus reducing user effort and enhance user experience. Google uses auto-suggest for their search queries and … Continue reading How To Integrate Auto Complete Search To Your Web Application ?

How To Implement Graph Using Java ?

If you are new to graph data structure , read article on graph introduction here. In this tutorial we will implement a bi-directional graph & uni-directional. We will actually be building an ADT(Abstract Data Type) for Graph ,which will host several functional features to be implemented on a graph. Let’s dive into the code directly: … Continue reading How To Implement Graph Using Java ?

Graph’s In Depth [PART 2]

In this article, we will discuss popular graph traversal algorithms. Before proceeding please read this article at first to get clear idea about graphs. Graph Traversals BFS (Breadth First Search) DFS (Depth First Search) Breadth First Search In the Breadth First Search, the traversal is done in a level wise manner. BFS uses Queue data … Continue reading Graph’s In Depth [PART 2]

Strings in Depth

Strings can be defined as a collection of characters with a null character (‘\0’) at the end. Strings are written in between double quotes for ex: “Welcome to C Programming”. Declaration of String The general form of declaring a string is char string_name[size]; where string_name is the name of the array & size specifies the … Continue reading Strings in Depth

Graph’s In Depth [PART 1]

Graph is a non linear data structure which consist of set of Edges & Vertices. They have applications in many fields of studies, Computer Networks are visualized through graphs, Internet is a one big example. Unlike Tree data structure,which is connected,graph may not always be connected. In the above graph:- V={A,B,C,D,E,F} E={(A,B),(A,D),(B,C),(C,D),(D,E),(E,F),(C,F)} Where V & … Continue reading Graph’s In Depth [PART 1]

Pointer’s In Depth

Pointer’s are the variable that stores the address of another variable. Whenever there is a need to refer/store the address of another variable for any operation, we use pointers. Pointer variables can be declared as follows: Basics of Pointers When using pointer’s, 2 operators are mainly used: Address of Operator (&) Value at Address Operator … Continue reading Pointer’s In Depth

Arrays In Depth

Arrays are one of the most basic data structures used today. Arrays can be defined as a data structure that holds the same group of elements, which are stored at contiguous memory locations. They are stored in contiguous memory locations to guarantee randomized access for a particular element. Arrays are best for fast lookup,i.e if … Continue reading Arrays In Depth