9lessons:Outlook.com on a Custom Domain

9lessons:Outlook.com on a Custom Domain

Link to 9lessons Programming Blog

Outlook.com on a Custom Domain

Posted: 28 Oct 2013 11:43 AM PDT

Are you looking for free better email services for your domain? I suggest Outlook.com is the best option to setup your custom domain email service. This provides 50 member accounts free with all Outlook features like communicator, file storage etc. take a look this post follow the steps and setup your free Outlook account for your domain.

Outlook.com on a Custom Domain
Read more »


Post a Comment

9lessons:Understanding Regular Expression

9lessons:Understanding Regular Expression

Link to 9lessons Programming Blog

Understanding Regular Expression

Posted: 21 Oct 2013 11:22 AM PDT

Regular expression is the most important part in form validations and it is widely used for search, replace and web crawling systems. If you want to write a selector engine (used to find elements in a DOM), it should be possible with Regular Expressions. In this post we explained few tips that how to understand and write the Regular Expression in simple way.

10 Reasons To Get A .BLOG Name Now

Read more »


Post a Comment

9lessons:10 Reasons To Get A .BLOG Name Now

9lessons:10 Reasons To Get A .BLOG Name Now

Link to 9lessons Programming Blog

10 Reasons To Get A .BLOG Name Now

Posted: 18 Oct 2013 11:38 AM PDT

Blogging has become more than just a way for people to express themselves over the internet; it has become a way for people to connect over shared interests. With the relative ease of setting up a personal blog, many people from all ages and backgrounds have started blogging. Choosing what domain extension to use for your blog is one of the most important steps to creating a successful blog.

10 Reasons To Get A .BLOG Name Now

Read more »


Post a Comment

IPL Twenty20 Cricket

IPL Twenty20 Cricket


ICC World Twenty20 Qualifier 2013

Posted: 11 Oct 2013 05:16 AM PDT

DateMatch DetailsTime (IST)Place
Nov 15 - FriAfghanistan v Netherlands15:30Sharjah
Nov 16 - SatCanada v Ireland15:30Abu Dhabi
Nov 16 - SatAfghanistan v Scotland15:30Sharjah
Nov 19 - TueKenya v Scotland15:30Dubai
Nov 22 - FriNetherlands v Scotland11:30Dubai
Nov 23 - SatKenya v Netherlands11:30Dubai
Nov 24 - SunAfghanistan v Kenya15:30Sharjah

Pakistan vs South Africa in UAE 2013

Posted: 11 Oct 2013 04:30 AM PDT

DateMatch DetailsTime
(IST)
Place
Nov 13 - Wed1st T20I - South Africa v Pakistan21:30Dubai
Nov 15 - Fri2nd T20I - South Africa v Pakistan21:30Dubai


Post a Comment

9lessons:Customizing Google Maps

9lessons:Customizing Google Maps

Link to 9lessons Programming Blog

Customizing Google Maps

Posted: 07 Oct 2013 11:50 AM PDT

Do you know Google is providing an awesome feature, that you can create a totally customizable personalized Google Maps for your website based on theme colors. Today I want to explain how to customize and style Google Map from the scratch, just very few lines of code, this helps you to enrich your website design.

Customizing Google Maps

Read more »


Post a Comment

C Programming

C Programming


Flag Structure Design

Posted: 05 Oct 2013 01:07 AM PDT

Q. Write a C program to print the following flag design as:

 * * * * * * * * *
 * * * *
 * * * *
 * * * *
 * *
 * * * *
 * * * *
 * * * *
 * * * * * * * * *

Ans.

/*c program for flag design*/
#include<stdio.h>
int main()
{

 int num=7,r,c;
 for(c=1; c<=9; c++)
    printf(" *");
 printf("\n");
 for(r=1; r<=num; r++)
 {
  if(r==4)
  {
    for(c=1; c<=2; c++)
       printf(" *");
  }
  else
  {
    for(c=1; c<=4; c++)
       printf(" *");
  }
  printf("\n");
 }
 for(c=1; c<=9; c++)
    printf(" *");
 getch();
 return 0;
}

/**************************************************************
The output of above program would be:
***************************************************************/


Output of Flag Structure Design C program
Figure: Screen shot for flag-structure-design C program




Post a Comment

ComputerGeek

ComputerGeek


php.ini configuration file Default values

Posted: 02 Oct 2013 11:12 PM PDT

php.ini configuration file Default values The PHP configuration file(php.ini) is read when PHP is initialized. php.ini includes the core php.ini directives you can set these directives to configure your PHP setup.php.ini will be located at /usr/local/lib/php.ini OR /etc/php5/apache2/php.ini or /etc/php.ini php.ini default values: display_errors ;Default Value: On This determines whether


Post a Comment