Archive for the ‘TEChNoLoGY’ Category

L.A. Noire

May 15th, 2013, posted in Art, BoYs, TEChNoLoGY
Share

L.A. Noire,Team Bondi ,Rockstar Games. ,LA,game

L.A. Noire (pronounced [ˌɛl ˌɛɪ ˈnwaʁ]) is a 2011 neo-noir crime video game developed by Team Bondi and published by Rockstar Games. It was released for PlayStation 3, Xbox 360 and Microsoft Windows.

L.A. Noire,Team Bondi ,Rockstar Games. ,LA,game

L.A. Noire is set in Los Angeles in 1947 and challenges the player, controlling a Los Angeles Police Department (LAPD) officer, to solve a range of cases across five departments.

L.A. Noire,Team Bondi ,Rockstar Games. ,LA,game

Players must investigate crime scenes for clues, follow up leads, and interrogate suspects, and the players’ success at these activities will impact how much of the cases’ stories are revealed.

Share

Life Of Ours These Days

April 26th, 2013, posted in COMiCS, SOCiAL NEtWORkS
Share

Life Of Ours These Days,Life Of Ours, These Days,table,facebook,twitter,skype,internet,net,wordpress,linkedin

Share

How to change XAMPP server port?

April 9th, 2013, posted in Microsoft, PHP
Share

How to change XAMPP server port?,port,xampp,xamp,wamp,windows,php,html,website making,website desiginning,ServerName

To Change The XAMPP Server Port Number

  1. Stop the XAMPP server, if it is running already.
  2. Open the file [XAMPP Installation Folder]/apache/conf/httpd.conf.
  3. Now search for the string *Listen 80 *(I’m assuming that your XAMPP was using the port 80. Otherwise, just search for the string ‘Listen’). This is the port number which XAMPP uses. Change this 80 to any other number which you prefer.
  4. Then search for the string ‘ServerName‘ and update the port number there also.
  5. Now save and re-start XAMPP server and you are done.

Why do we need to change the port number? Because, these days, it is very common that a web developer needs to have multiple web servers running, all at the same time. For example, an XAMPP server can be used to run the local WordPress blog, while a JBoss server also needs to be up for testing a java web applications. In such scenarios, if two or more servers are trying to use the same port number, then the late comer will fail to get the port. So, it becomes necessary to change any one server’s port number to avoid the conflict.

How to change XAMPP server port?,port,xampp,xamp,wamp,windows,php,html,website making,website desiginning,ServerName,port number

Share

You Are Not How Many Likes You Get

April 2nd, 2013, posted in COMiCS, Fight Club, MESSAGEs, SOCiAL NEtWORkS
Share

You Are Not How Many Likes You Get,fight club,fight,club,brat pit,facebook,movies,messages,

Share

C Hello World Program

March 26th, 2013, posted in C
Share

C hello world program :- c programming language code to print hello world. This program prints hello world, printf function is used to display text on screen, ‘n’ places cursor on the beginning of next line, stdio.h header file contains declaration of printf function. The code will work on all operating systems may be it’s Linux, Mac or any other and compilers. To learn a programming language you must start writing programs in it and may be your first c code while learning programming.

C Hello World Example :

#include <stdio.h>

int main()
{
  printf("Hello worldn");
  return 0;
}


Hello World Program In C :

#include <stdio.h>

int main()
{
  char string[] = "Hello World";

  printf("%sn", string);

  return 0;
}
Share