Sunday 29 April 2018

Deploy Angular app to Firebase and GitHub pages

Creating an angular app is a fun, but when it comes to deployment everyone struggle a lot and if you want to test your app on live server there is a cost attached to it, don't worry will be using free and easy hosting for testing our angular app on live server. Firebase provide free hosting for angular apps and GitHub pages is also a place where you can host static website. This tutorial will cover deploying angular app to Firebase and Github Pages.




Sunday 8 April 2018

Angular2 Firebase OAuth for Google, Facebook, Twitter and GitHub

Authentication is one of the common part of any web and mobile application, in this tutorial will cover how to use Firebase API in Angular2 project for open authentication. It includes Facebook, google, twitter and GitHub. We will use angular CLI for completing this project.

Friday 8 July 2016

Implement GCM Push Notification for Websites

If you ask a developer what feature is missing in web application, the first answer is PUSH NOTIFICATION. Notification is a great way to engage users to your website. So today i'm explaining push notification using Google Cloud Messaging for websites.


Project structure:

Sunday 12 January 2014

How to install different theme on yii application?

In web application, designing  also has same importance as development because user interface matters. If UI is not user friendly then ultimately application won't be useful. Here i'll show you brand new theme installation on yii php framework.
First we need some template compatible with yii framework. I found two template link which is free Theme1 Theme2  download both templates from given links. After downloading complete follow the steps

Steps
1. First go to your yii app folder where you've installed yii framework app( for installation read my first blog installaiton)

2. Copy template folder and paste it into the theme directory which exist in your app folder (/opt/lampp/htdocs/yiiapp/themes/)


Wednesday 8 January 2014

How to install yii php framework on ubuntu linux?

Yii helps Web developers build complex applications and deliver them on-time.
Yii is pronounced as Yee or [ji:], and is an acroynym for "Yes It Is!". This is often the accurate, and most concise response to inquires from those new to Yii:
Is it fast? ... Is it secure? ... Is it professional? ... Is it right for my next project? ... Yes, it is!

Yii is a free, open-source Web application development framework written in PHP5 that promotes clean, DRY design and encourages rapid development. It works to streamline your application development and helps to ensure an extremely efficient, extensible, and maintainable end product.

Steps to install yii php framework on ubuntu


1. Dowanload the latest version of yii framework from http://www.yiiframework.com

Wednesday 11 September 2013

How to run php program?

I already introduced about what is PHP  and how to install XAMPP, Now in this tutorial i'll tell you how to write PHP program and run in the local server.

Step 1
Assume you have installed XAMPP in C drive
Go to C:\xampp\htdocs

Create your own folder, name it as akshay 


Tuesday 28 May 2013

How to get started with PHP

PHP does not come pre-installed on Windows systems. To work with PHP on Windows, PHP will need to be manually downloaded and installed. instead of downloading separate PHP we will download XAMPP, it is a free and open source cross-platform web server solution stack package. ( its a bundle which contains all the required libraries to run a PHP program) 
XAMPP's name is an acronym for

  • X- (to be read as "cross", meaning cross-platform)
  • A- Apache HTTP Server
  • M- MySQL
  • P- PHP
  • P- Perl
How to Install XAMPP ?

Tuesday 14 May 2013

What is PHP


Whenever anyone is learning PHP, the most common questions that first come up are: What is PHP? And how does it work?

It is precisely these questions we will look at in this lesson. It's a big help to understand such basics related to PHP before you start developing you own PHP pages. Such basic understanding will increase the speed of learning significantly.
So, let's get started!

Thursday 9 May 2013

What is Foreign Key?


What's in a Database?
a database is a container that holds tables and other SQL structures related to those tables.

What is an Object??

Before the development of Object Oriented programming, the variables were considered as isolated entities. For example, suppose a program needs to handle data in car manufacturing company, here testing the cars having number, Color, Speed. Three separated variables will be declared for this.

int number,speed;
String color;