
Search In
Counting number of vowels,consonants and digits in a string:
In this program we are counting how many vowels ,consonants and digits are in the string which will be entered by the user. After user inputs a string , string will be iterated from 0th i
While working with ADO.NET you need to understand the thing why SqlCommand is used.
We have two kind of operations related to database:
1 That will make changes in the database
Insert
Update
Delete
2 That will n
LAMP full form is Linux Apache Mysql PHP. To install LAMP with one command on Ubuntu 14.04 just write the following command:
First refresh your package index...
$ sudo apt-get update
Now install the LAMP stack:
sudo apt-ge

I was facing issue to run the following lines of code on php:
$url = "http://example.com/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
curl_setopt(
I am writing this blog because I faced issue for adding cron jobs in Amazon Ec2 cloud server. I was using Linux 64bit .
To add cron jobs open command prompt (via putty if windows) and login via ssh, when you are login then type:
which php
this wi
Hello Reader's if you are developing product shopping based web portal in which you want to integrate the twitter tweet button, then this blog is very helpful to you.
To integrate the twitter tweet button you have to follow some step as bel


This blog will let you know how to upgrade Ubuntu 14.04 to 14.10 through GUI. Firstly we would need to upgrade some packages command line:
$ sudo apt-get update
$ sudo apt-get dist-upgrade
Now on the search bar of Ubuntu type
No
This blog will let you know how to create sudo users on CentOS.
Steps to create new sudo user
Step One: Login to your server as root user
$ ssh root@server_ip_address
Step Two: Use the adduser command to add new user to your system
adduser use
About Grails:
Grails is open source web framework based on Groovy programming language which runs on Java platform.
Steps to install Grail:
Step One: Install JDK
sudo apt-get install openjdk-6-jdk
Step Two: Insta
Install SSH Server on Ubuntu 14.04
In order to install SSH server on Ubuntu, you need to install OpenSSH server package. Use the following command to setup SSH server:
sudo apt-get install openssh-server
Configure SSH Server
After installation i
