Archive for 2013-11-24

HTML Fundamental

This tip will tell you exactly how to code your own HTML website.
First, remember that most tags must be eventually closed. The syntax would be: <tag> CONTENT </tag>.

Open a text editor such as notepad, or the HTML editor for your hosting service.
The first tag in your website should be <html>, which starts the HTML site.
Immediately after this should come the <head> tag.
So far, you should have the following:
<html>
<head>


The next step is to enter the title of your website. This is what shows up in the title bar of the internet browser. Put the title between the <title> and </title>. Then, end the head with </head>. You will end up with:

<html>
<head>
<title>TITLE</title>
</head>


Other data to put into the head includes metadata and stylesheet data.
The next step is to add the body of your website. This is where all the important stuff goes. Start out the body with the <body> tag. In a basic website, all the real content goes in the body.
The most basic way to write the body is to simply write a heading, then type.
Within the body, start off by writing the first heading. This should be big, so the <h1> tag should do the trick. After that, simply write the text of the site. Remember the syntax for making links:
 <a href="http://www.linktarget.com">LINK</a>

And for making images:
 <img src="http://imagesite.com/image.jpg"> .
Remember, most HTML Tips can be simply inserted into the body and used immediately.
Finish off the body with </body>, and the body is done.
The code with the body included should look like:

<html>
<head>
<title>TITLE</title>
</head>
<body>
<h1>THE SITE</h1>
blablabla
<a href="
http://www.linktarget.com">LINK</a>
IMAGE:
<img src="
http://imagesite.com/image.jpg">
</body>


Remember, you still have 1 more tag to close: the <html> tag. Close it with </html>, and your website is complete. The final code:

<html>
<head>
<title>TITLE</title>
</head>
<body>
<h1>THE SITE</h1>
blablabla
<a href="
http://www.linktarget.com">LINK</a>
IMAGE:
<img src="
http://imagesite.com/image.jpg">
</body>
</html>
Posted by Unknown

How to Create Windows 8 Bootable Pendrive

There are number of ways for installing an operating system to your computer. Most of the people do it by using bootable CD/DVD of windows. But we really don’t need to install windows very frequently and because of this , it is so difficult to put this bootable disc on safe place and remember where you have kept it when needed.
Also , number of times when you are installing window you see some error saying that some of the necessary installation file is missing from the disc and setup can not be continued. All this happens because of scratches present on disc surface since disc is too old to use.


Step 1 :Download Windows 7 USB/DVD download tool and install it.The link is,http://www.microsoftstore.com/store/msusa/html/pbPage.Help_Win7_usbdvd_dwnTool


This tool is available for free from Microsoft Corporation as well so you can get it from there too. Despite its name, this tool works with Windows 8 ISOs as well. You can use this tool for any version of Windows.

Step 2:After downloading and installing the tool, Run it , now you need to Browse and give the path where the ISO  file is located in your computer.

Step 3:Now select whether you want to create a bootable DVD for windows or you want it to be a bootable pendrive. Here you need to select USB device because you want to make bootable pendrive.

Step 4: Browse and select the pendrive which you want to make bootable. Make sure that the pendrive has atleast 4 gb free . Now click on Begin Copying.


Step 5:Once you begin copying , the tool will start creating bootable Windows 8 USB installer flash drive using the Windows 8 iso. Let this process complete , lastly when you see the message “Bootable USB Device created successfully”, you can restart your PC and boot from the USB drive.
Posted by Unknown

Top 5 Fastest SuperComputer In The World

1)Tianhe-2 (China)


China's new Tianhe-2 supercomputer officially became the fastest supercomputer in the world on Monday by blowing America's Titan supercomputer out of the water.

A group of computer scientists and engineers who twice a year release the "Top500" list of fastest supercomputers measured the Tianhe-2 at 33.9 petaflops (quadrillions of calculations per second). That's nearly twice as fast as the Titan, which was relegated to the second spot on the list.

Also dubbed Milkyway-2, Tianhe-2 came online two years before expected. It was manufactured by China's National University of Defense Technology and will be relocated to the National Supercomputer Center in Guangzho in southwest China by the end of this year.

NUDT has listed several possible uses for Tianhe-2, including simulations for testing airplanes, processing "big data," and aiding in government security.

The last time a Chinese system landed on the list's top spot was in 2010 when the Tianhe-1 was ranked the fastest in the world.


2)Titan(United States)


It reached the number one spot on the "Top500 List" in November, but Titan has already been bumped down to second place.

Titan resides at the U.S. Department of Energy's Oak Ridge National Laboratory and helps scientists pioneer research into climate change, bio fuels and nuclear energy.

The supercomputer was manufactured by the American-based company Cray (CRAY) and has clocked in at 17.6 petaflops. Titan outperforms its closest competitor, another American computer called the Sequoia, by less than one petaflop and is one of the most energy efficient systems on the list.
The United States hosts 253 of the 500 supercomputers on the list -- more than any other country



3)K Computer(Japan)

Japan's K Computer became the first supercomputer capable of running faster than 10 petaflops. It held the title of the world's fastest supercomputer from June 2011 until June 2012. Now, it's ranked fourth.

Still, it's one of only 26 supercomputers in the world with performance greater than 1 petaflop.

There's something to be said for remaining in the top ten of the list for multiple years in an industry that's moving rapidly. The last system ranked on this year's Top500 list ranked 320 just six months ago.

K Computer is installed at the RIKEN Advanced Institute for Computational Science in Kobe, Japan and was manufactured by Fujitsu.



4)Stampede (United States)

"Stampede" at the Texas Advanced Computing Center of the University of Texas is one of those rare supercomputers that actually moved up in the rankings.

After receiving an upgrade since the last "Top500 List" was released in November, Stampede moved up one notch to number six.

It was manufactured by Dell (DELL, Fortune 500) and has achieved 5.2 petaflops.

Any researcher at a U.S. institution can submit a request to use Stampede, making it one of the largest open computer systems in the world. Currently, researchers are using Stampede to explore the flow of ice from Antarctica into the sea and to forecast earthquakes.


5)Juqueen (Germany)



Juqueen is the most powerful European supercomputer. Peaking at the speed of about 5 petaflops, it moved down two spots since November's "Top500 List" to No. 7 on the June list.

Different versions of the system, which have been manufactured by IBM (IBM, Fortune 500), have also cracked the top 10 in the past.

Juqueen is housed at the Forschungszentrum Juelich research center in Germany. It is one of 19 supercomputers located in Germany that made the Top500. The United Kingdom and France have 29 and 23 systems, respectively, on the list.


Posted by Unknown

Rooting Your Android Smartphone

Free Windows utility Kingo Android Root makes it a snap to jailbreak just about any Android smartphone. Here's how to use it.



Rooting is the Android equivalent of jailbreaking, a means of unlocking the operating system so you can install unapproved (by Google) apps, update the OS, replace the firmware, overclock (or underclock) the processor, customize just about anything, and so on.
Of course, for the average user, rooting sounds like -- and can be -- a scary process. After all, "rooting" around in your smartphone's core software might seem like a recipe for disaster. One wrong move and you could end up with bricked handset.
Thankfully, there's a new Windows utility that makes rooting a one-click affair: Kingo Android Root. It's free, and based on my initial tests with a Virgin Mobile Supreme, it works like a charm. (Be sure to check the compatibility list before you proceed, keeping in mind that although the Supreme wasn't on it, the utility had no problem with it.) Here's how to get started.
Step one: Download and install Kingo Android Root.

Step two: Enable USB debugging mode on your phone. If it's running Android 4.0 or 4.1, tap Settings, Developer Options, then tick the box for "USB debugging." (You may need to switch "Developer options" to On before you can do so.) On Android 4.2 and later, tap Settings, About Phone, Developer Options, and then tick USB debugging." Then tap OK to approve the setting change.
Step three: Run Android Root on your PC, then connect your phone via its USB sync cable. After a moment, the former should show a connection to the latter.



Step four: Click Root, then sit back and wait while the utility does its thing. The aforementioned Supreme took all of about two minutes, including the automated reboot at the end.
And that's all there is to it. If you decide you want to reverse the process, just run Android Root again, connect your phone, then click Remove Root.
With that done, now you can take advantage of options like USB On-the-Go to make your unexpandable phone expandable.




Posted by Unknown

C++ program to enter a number and print it into words

#include<iostream.h>
#include<conio.h>

void once(int a)
{
switch(a)
{
case 1: cout<<"One";
break;
case 2: cout<<"Two";
break;
case 3: cout<<"Three";
break;
case 4: cout<<"Four";
break;
case 5: cout<<"Five";
break;
case 6: cout<<"Six";
break;
case 7: cout<<"Seven";
break;
case 8: cout<<"Eight";
break;
case 9: cout<<"Nine";
break;
}
}

int tens(int a,int b)
{
int flag=0;
switch(a)
{
case 1:
flag=1;
switch(b)
{
case 0: cout<<"Ten";
break;
case 1: cout<<"Eleven";
break;
case 2: cout<<"Twelve";
break;
case 3: cout<<"Thirteen";
break;
case 4: cout<<"Fourteen";
break;
case 5: cout<<"Fifteen";
break;
case 6: cout<<"Sixteen";
break;
case 7: cout<<"Seventeen";
break;
case 8: cout<<"Eighteen";
break;
case 9: cout<<"Nineteen";
break;
}
break;
case 2: cout<<"Twenty";
break;
case 3: cout<<"Thirty";
break;
case 4: cout<<"Fourty";
break;
case 5: cout<<"Fifty";
break;
case 6: cout<<"Sixty";
break;
case 7: cout<<"Seventy";
break;
case 8: cout<<"Eighty";
break;
case 9: cout<<"Ninety";
break;
}
return(flag);
}

void hundred(int a)
{
switch(a)
{
case 1: cout<<"One Hundred";
break;
case 2: cout<<"Two Hundred";
break;
case 3: cout<<"Three Hundred";
break;
case 4: cout<<"Four Hundred";
break;
case 5: cout<<"Five Hundred";
break;
case 6: cout<<"Six Hundred";
break;
case 7: cout<<"Seven Hundred";
break;
case 8: cout<<"Eight Hundred";
break;
case 9: cout<<"Nine Hundred";
break;
}
}

void main()
{
clrscr();
int n,a[3],i=0,flag=0;
cout<<"Enter any number(max 3 digits):";
cin>>n;

  while(n!=0)
{
a[i++]=n%10;
n=n/10;
}

  for(i=i-1;i>=0;--i)
{
if(i==0&&flag==0)
once(a[0]);
if(i==1)
flag=tens(a[1],a[0]);
if(i==2)
hundred(a[2]);
cout<<" ";
}
getch();
}

   

Posted by Unknown

C++ program to calculate sum of two numbers

#include<iostream.h>
#include<conio.h>

void main()
{
int x,y,sum;
clrscr();

cout<<"Enter first no: ";
cin>>x;
cout<<"Enter second no: ";
cin>>y;

sum=x+y;
cout<<"\nSum = "<<sum;
getch();
}


Posted by Unknown

Java program to convert given number of days into months and days



class Days
{
 public static void main(String...s)
 {

  int n,m,d;
  n=Integer.parseInt(s[0]);
  
  m=n/30;
  d=n%30;
  
  System.out.println(n+" days"+" = "+m+" months "+"and "+d+" days");
 }
}


Posted by Unknown

C++ Program to calculate sum and average of three numbers

#include<iostream.h>
#include<conio.h>


void main()
{
 clrscr() //to clear the screen
 float a,b,c,sum,av;
 cout<<"Enter three numbers:";
 cin>>a>>b>>c;


 sum=a+b+c;
 av=sum/3;
 cout<<"\nSUM="<<sum;
 cout<<"\nAverage="<<av;


 getch(); //to stop the screen
}

Posted by Unknown

What is a Local-Area Network (LAN)?



A local-area network (LAN) is a computer network that spans a relatively small area. Most LANs are confined to a single building or group of buildings, however, one LAN can be connected to other LANs over any distance via telephone lines and radio waves. A system of LANs connected in this way is called a wide-area network (WAN).
Most LANs connect workstations and personal computers. Each node (individual computer ) in a LAN has its own CPU with which it executes programs, but it also is able to access data and devices anywhere on the LAN. This means that many users can share expensive devices, such as laser printers, as well as data. Users can also use the LAN to communicate with each other, by sending e-mail or engaging in chat sessions.
LANs are capable of transmitting data at very fast rates, much faster than data can be transmitted over a telephone line; but the distances are limited, and there is also a limit on the number of computers that can be attached to a single LAN.
Emergence of Ethernet Fabric Will Push Users to Rethink Their Data Center Physical Switch Networks Download Now
Types of Local-Area Networks (LANs)
There are many different types of LANs, with Ethernets being the most common for PCs. Most Apple Macintosh networks are based on Apple's AppleTalk network system, which is built into Macintosh computers.
The following characteristics differentiate one LAN from another:
topology : The geometric arrangement of devices on the network. For example, devices can be arranged in a ring or in a straight line.
protocols : The rules and encoding specifications for sending data. The protocols also determine whether the network uses a peer-to-peer or client/server architecture.
media : Devices can be connected by twisted-pair wire, coaxial cables, or fiber optic cables. Some networks do without connecting media altogether, communicating instead via radio waves.
Posted by Unknown

Meaning Of Bios

The full form of BIOS is Basic Input Output System . It is responsible to start computer and holds information and settings about all the hardware devices attached to the computer.
Posted by Unknown

Google Page Design (C++ Program)

#include<iostream.h>
#include<conio.h>
#include<graphics.h>
#include<dos.h>
#include<math.h>
void main()
{clrscr();
int g=0,d;
initgraph(&g,&d,"c:\turboc3\bgi");
setbkcolor(15);
setcolor(1);
settextstyle(3,0,5);
outtextxy(190,140,"G");
setcolor(4);
settextstyle(3,0,5);
outtextxy(220,140,"O");
setcolor(3);
settextstyle(3,0,5);
outtextxy(250,140,"O");
setcolor(1);
settextstyle(3,0,5);
outtextxy(280,140,"G");
setcolor(2);
settextstyle(3,0,5);
outtextxy(310,140,"L");
setcolor(4);
settextstyle(3,0,5);
outtextxy(340,140,"E");
setcolor(1);
settextstyle(3,0,5);
setcolor(4);
settextstyle(1,0,2);
outtextxy(100,350,"SEARCH");
settextstyle(1,0,2);
outtextxy(380,350,"I'M FEELING LUCKY");
setcolor(8);
rectangle(140,200,480,230);
rectangle(93,350,183,380);
rectangle(370,350,580,380);
getch();
}


Posted by Unknown

HAARP: Secret Weapon Used For Weather Modification, Electromagnetic Warfare

“It isn’t just conspiracy theorists who are concerned about HAARP. The European Union called the project a global concern and passed a resolution calling for more information on its health and environmental risks. Despite those concerns, officials at HAARP insist the project is nothing more sinister than a radio science research facility.”
– Quote from a TV documentary on HAARP by the Canadian Broadcasting Corporation (CBC).
HAARP (High Frequency Active Auroral Research Program) is a little-known, yet critically important U.S. military defense program which has generated quite a bit of controversy over the years in certain circles. Though denied by HAARP officials, some respected researchers allege that secret electromagnetic warfare capabilities of HAARP are designed to forward the US military’s stated goalof achieving full-spectrum dominance by the year 2020. Others go so far as to claim that HAARP can and has been used for weather modification, to cause earthquakes and tsunamis, to disrupt global communications systems, and more.
Major aspects of the program are kept secret for alleged reasons of “national security.” Yet there is no doubt that HAARP and electromagnetic weapons capable of being used in warfare do exist. According to the official HAARP website, “HAARP is a scientific endeavor aimed at studying the properties and behavior of the ionosphere, with particular emphasis on being able to understand and use it to enhance communications and surveillance systems for both civilian and defense purposes.” The ionosphere is the delicate upper layer of our atmosphere which ranges from about 30 miles (50 km) to 600 miles (1,000 km) above the surface of the Earth.
The HAARP website acknowledges that experiments are conducted which use electromagnetic frequencies to fire pulsed, directed energy beams in order to “temporarily excite a limited area of theionosphere.” Some scientists state that purposefully disturbing this sensitive layer could have major and even disastrous consequences. Concerned HAARP researchers like Dr. Michel Chossudovskyof the University of Ottawa and Alaska’s Dr. Nick Begich (son of a US Congressman) present evidence suggesting that these disturbances can even cause tsunamis and earthquakes.
Two key major media documentaries, one by Canada’s public broadcasting network CBC and the other by the History Channel, reveal the inner workings of HAARP in a most powerful way. The very well researched CBC documentary includes this key quote:
“It isn’t just conspiracy theorists who are concerned about HAARP. In January of 1999, the European Union called the project a global concern and passed a resolution calling for more information on its health and environmental risks. Despite those concerns, officials at HAARP insist the project is nothing more sinister than a radio scienceresearch facility.”





To view the European Union (EU) document which brings HAARP and similar electromagnetic weapons into question, click here. The actual wording at bullet point 24 in this telling document states that the EU “considers HAARP by virtue of its far-reaching impact on the environment to be a global concern and calls for its legal, ecological and ethical implications to be examined by an international independent body before any further research and testing.” This reveling document further states that the EU regrets the repeated refusal of the U.S. government to send anyone to give evidence on HAARP.
To watch this engaging 15-minute CBC documentary online, click here. For an even more detailed and revealing 45-minute History Channel documentary on HAARP and other secret weapons used for electromagnetic warfare, click here. Below are two quotes from the History Channel documentary:
“Electromagnetic weapons … pack an invisible wallop hundreds of times more powerful than the electrical current in a lightning bolt. One can blast enemy missiles out of the sky, another could be used to blind soldiers on the battlefield, still another to control an unruly crowd by burning the surface of their skin. If detonated over a large city, an electromagnetic weapon could destroy all electronics in seconds. They all use directed energy to create a powerful electromagnetic pulse.”
“Directed energy is such a powerful technology it could be used to heat the ionosphere to turn weather into a weapon of war. Imagine using a flood to destroy a city or tornadoes to decimate an approaching army in the desert. The military has spent a huge amount of time on weather modification as a concept for battle environments. If an electromagnetic pulse went off over a city, basically all the electronic things in your home would wink and go out, and they would be permanently destroyed.”
For those who still doubt that such devastating secret weapons have been developed, here is an intriguing quote from an article in New Zealand’s leading newspaper, the New Zealand Herald:
“Top-secret wartime experiments were conducted off the coast of Auckland to perfect a tidal wave bomb, declassified files reveal. United States defence chiefs said that if the project had been completed before the end of the war, it could have played a role as effective as that of the atom bomb. Details of the tsunami bomb, known as Project Seal, are contained in 53-year-old documents released by the Ministry of Foreign Affairs and Trade.”
If the military secretly developed a weapon which could cause a tsunami over half a century ago, what kind of advanced deadly weapons might be available now? And why is it that the general public still doesn’t know about secret weapons developed over 50 years ago? To understand why the media isn’t covering these highly critical issues, click here. Clearly the military has the capability to cause a tsunami and likely to cause earthquakes and hurricanes, as well. It’s time for us to take action to spread the word on this vital topic.
Having interpreted to for top generals in my work as a language interpreter with the US Department of State, I learned that military planners are always interested in developing the most devastating weapons possible. Yet these weapons are kept secret as long as possible, allegedly for reasons of national security. The many layers of intense secrecy both in the military and government result in very few people being aware of the gruesome capabilities for death and destruction that have been developed over the years. There are many examples of major defense projects kept successfully out of the public’s eyes for years and even decades.
The massive Manhattan Project (development of the first atomic bomb) is one such example. The building of an entire city to support the project in Oak Ridge, Tennessee was successfully kept secret even from the state’s governor. The stealth bomber was kept top secret for many years, and the public still has no way of knowing it’s full capabilities. It is through the use of the highly organized military and intelligence services that the power elite of our world, working in cooperation with key allies in government and corporate ownership of the media, are able to carry out major cover-ups and secret operations like those involved with HAARP.
Some researchers have raised questions about the possible involvement of HAARP in major disasters like the earthquake in Haiti, Indonesian tsunami, and hurricane Katrina. Could these have been HAARP experiments gone awry? Might they even have been caused by rogue elements which gained control of this devastating technology. Of course disasters like this happen regularly on a natural basis, yet if you begin to research, there is some high strangeness around some of these disasters. The evidence is inconclusive, yet with the known and unknown major destructive capabilities of this weapon, serious questions remain.
Jesse Ventura, the former Navy Seal who turned pro wrestler only to then become governor of Minnesota, has also done a special on HAARP that is a bit sensationalized, yet contains useful information. 
Posted by Unknown

Information About IBM.

IBM's Blue Gene supercomputers were awarded the National Medal of Technology and Innovation by U.S. President Barack Obama on September 18, 2009.



Various IBM facilities
IBM Rochester (Minnesota), nicknamed the "Big Blue Zoo"
IBM Avenida de América Building inMadrid, Spain
IBM Japan Makuhari Technical Center, designed by Yoshio Taniguchi
IBM Haifa Research Lab, Haifa, IsraelIn 2012, Fortune ranked IBM the No. 2 largest U.S. firm in terms of number of employees,the No. 4 largest in terms of market capitalization, the No. 9 most profitable, and the No. 19 largest firm in terms of revenue.Globally, the company was ranked the No. 31 largest firm in terms of revenue by Forbes for 2011. Other rankings for 2011/2012 include the following:


No. 1 company for leaders (Fortune)


No. 1 green company worldwide (Newsweek)


No. 2 best global brand (Interbrand)


No. 2 most respected company (Barron's)


No. 5 most admired company (Fortune)


No. 18 most innovative company (Fast Company)


For 2012, IBM's brand was valued by Interbrand at $75.5 billion.


For 2012, Vault ranked IBM Global Technology Services No. 1 in tech consulting for cyber security, operations and implementation, and public sector; and No. 2 in outsourcing.

Watson, an IBM artificial intelligence computer, is capable of "learning" as it operates.

Posted by Unknown

How to increase internet speed by 20 Percent(Windows Vista,Windows 7 and Windows 8)


Do you know that; by default, Microsoft has reserved 20% of your available bandwidth for their own purposes? This reserved bandwidth is used for Windows Updates and many other tasks like this. In this article, you are being taught to snatch back this reserved bandwidth from Microsoft. As a result of which your internet speed will be increased by 20%. To learn and understand the procedure follow these easy steps:

1)Click Start then go to Run.

2)Here, type “gpedit.msc” (without quotes).

3)Press Enter to open the group policy editor.

4)Then move to: Local Computer Policy =>> Computer Configuration =>> Administrative Templates =>> Network =>> QOS Packet Scheduler.



5)Now Double click on Limit Reservable bandwidth.

6)It will say it is not configured, but the truth is under the “Help".By default, the Packet Scheduler limits the system to 20 percent of the bandwidth of a connection, but you can use this setting to override the default.“

7)From here ENABLE the reservable bandwidth, then set it to ZERO. This will allow the system to reserve nothing, instead of the default 20%.

Posted by Unknown

How To Increase Internet Speed In Windows XP

By Default, Windows reserves 20% of bandwidth for it’s own use.This should be undone immediately to optimize your net speed.To do so you need not install any extra program,you can do this with a simple setting given below.
Press "Windows key + R"(shortcut key for RUN).
Now type gpedit.msc.This will give access to Group Policy Editor.

Then Navigate to Computer Configuration/Administrative Templates/Network/QOS Packet Scheduler using the pane on the left side.
Now in the right panel you will notice a option called "Limit Reservable Bandwitdth".Right click on it and choose "Edit" option.
A new window will pop out where you find Bandwidth Limit is set to 20% by default.Now click enabled and change Bandwidth Limit to 0 then apply the changes.


Hit ok the close the group policy editor
Posted by Unknown

How to Remove Trojan Horse Virus




Firstly you need to have anti-virus software installed in your system and that too an updated one or else they will miss the latest species of Trojan horse. Anti-virus software helps prevent the system from many Trojan viruses. Then make sure you have updated your operating system as well with all new security patches.
One may also have to install Anti-trojan programs like The Cleaner which specialize in Trojans. Once it is installed reboot your computer in safe mode and use the cleaner to clean all registries and drives for any Trojan suspected. Make sure the internet is unplugged while cleaning. Once cleaning is complete reboot the system again.
After using the cleaner make sure that you have updated your operating system and have changed all the passwords. Once the system is repaired make sure to take a backup of every data and reformat the system completely.

Software that remove Trojan Horse Virus completely from your computer:http://www.quickheal.com/download-free-antivirus?p=3/
Posted by Unknown

Steps Increase battery life of your laptop

There is an inbuilt command in your computer for improving battery life as well as the performance of the system but not all users are aware of it. Some laptops directly provide an interface with option termed as “ POWER SAVING MODE ” but  if your laptop is old or don’t have this feature by default , you need not to worry because you can do the same task manually.

If you have a laptop with Windows 7 installed, you can use the ‘powercfg‘ command . It will display useful information about your laptop’s energy consumption and usage. If  you can understand and maintain  it correctly then you can extend your Battery life and performance by great amount.


Step 1: Click on the Start Menu and type “ CMD ” in the Start Search bar.

Step 2: The search will start and it will then display an icon of “ CMD ” . simply right click on it and select Run as administrator.

Step 3: It will open command line, now simply run the command “powercfg -energy” without quotes. (For windows 7 users.)

                                 -OR-

Simply run the command “powercfg /energy” without quotes. (For windows 8 users.)

Step 4: Now Press “Enter”.

Once you successfully execute this command , Windows  will run a complete scan of  your system and it will find some ways to improve performance and power efficiency.

The results of this process will be saved to an HTML file, which is commonly  present  in the “System32” folder of most of the systems.
Posted by Unknown

Four Ways To Use Mobile Internet On PC Using Android

Now you can use your Internet data plan which is active in your phone on your Computer. Sometimes there is a situation when your broadband / Dongle / Internet connection is not working. In such cases you have to perform your works by using your phones. Although Android phones have capability of performing almost every task that you may do using a computer still computers are better in many ways as they have support for USB , specialized softwares and most importantly ease of use. So why to depend on your phone internet when you can even use it in your Computer.

 There are four very efficient ways to use your mobile internet in PC. Which includes two ways that doesn't require any specialized software installed in your computer as well as your phone because Android phone has inbuilt features to share internet.

1. USE INTERNET FROM ANDROID USING USB

  • Connect your Android phone via USB to Computer 
  • Press Home / Applications button and go to Settings
  • Go to More and select Wireless & Networks section 
  • Now open Tethering & Portable Hotspot
  • Check USB Tethering to establish a USB data connection with your computer and Uncheck the  sever the connection option
You are now all set to use internet on your computer simply using USB cable.

 2. USE INTERNET FROM ANDROID USING BLUETOOTH HOTSPOT

  • Connect your Android phone via USB to Computer 
  • Press Home / Applications button and go to Settings
  • Go to Bluetooth From Wireless and Network Section
  • Turn On Bluetooth and make it Discoverable
  • Now Come to your Computer , Click On Start Button go to Control Panel
  • Click on Hardware & Sound then on Devices And Printers
  • Finally click on Add a device and select your Android phone from list to pair it & click Next
  • Coming back to phone , go to Wireless and Network Section & Check Bluetooth tethering
In this way you can use your mobile net in computer using Bluetooth tethering

3. USE INTERNET FROM ANDROID USING PORTABLE HOTSPOT

  • Press Home / Applications button and go to Settings
  • Go to More and select Wireless & Networks section 
  • Now open Tethering & Portable Hotspot and check Portable Wifi Hotspot
  • Tap on Configure Wifi Hotspot & Enter any name as your SSID
  • Set security and password for your Wifi Hotspot & Save it.
Your phone is now generating Wifi Signals which can be used by your laptop.

4. USE INTERNET FROM ANDROID USING TETHER

 Tether is a specialized software that allows you to use internet of your Android phone to computer. 
The download can be obtained from here:http://www.mediafire.com/download/0mii7n0bx2lwvsg/tether.exe
(Account Of Tether Is Needed,Sign Up First)


  • Before you run tether in your computer , connect your phone via USB and make sure that USB Debugging is enabled in your phone.
  • If not , you can enable USB Debugging by navigating to Setting > Applications > Development and mark USB Debugging
  • Now Install Tether in your computer. During installation it will ask several times for confirmation click Yes and Trust everytime. It will install Tether in your phone at the same time so make sure that your phone is connected to computer during installation
  • After installation choose your device i.e. Android and mode i.e. USB

Once it shows that you are connected to Android , you can run any browser and start using internet on your computer.


This window shows you confirmation and status of your internet connection . If you need to check your amount of data sent / received during active session you may refer to this window anytime.
Posted by Unknown

Top 5 Android Launcher

1.GO LAUNCHER EX



 Go Launcher Ex is one of the oldest and most popular Android Launcher available today. It is being used for customization of Home screens since Android Froyo. It is dependable and capable of customizing the Home Screen along with the themes , visual appearance and even icons used by your Android phone.

Go Launcher Ex gives their users a huge choice of themes among more than 10000 themes already available inGoogle Play Store with many themes adding with each passing day. Many themes includes powerful and attractive widgets for customization of your Home Screen which takes its beauty to the next level. Go Launch Ex is voted as the best launcher for Android by 100,000,000+ people worldwide.




2.APEX LAUNCHER:


Apex launcher supports upto 9 different Home Screens on your Android phone with customizable grids.The package includes several other tweaks which makes this launcher more attractive. Apex Launcher allows customization over several functional areas like Home Screens , App Drawers , Transition effects , Icon packs , Themes etc.
Apex launcher can also be used in Android powered Tablets. If you want a fully functional cool layout launcher version then you may switch to the paid version of this app which will allow you to unleash all customized effects to make your experience with interface even better.



3.NOVA LAUNCHER


Nova launcher is a smooth and very popular launcher for Android phones. It gives feel of Android ICS version but with certain classy enhancements. It has upgraded versions of custom icons which has unread count displayfeature available. It is supported by phones as well as Tabs powered by Android OS. It's features includes different colorful themes , Scrollable Dock , Different scrolling effects , Folder Icons etc. It supports upto 7 icons per page where pages can be range 3 at most. Nova launcher is rated as 5 star by more than 78000 people worldwide.




4.SMART LAUNCHER


Smart Launcher has a very minimalist design and it requires very low resources usage on your phone so it is very suitable with phones with a little lower configuration. It is very innovative launcher with great design which allows users to launch any application within a few keystrokes. The unique feature of Smart Launcher is that it is the only launcher on Google Play Store which is capable of automatic sorting and cataloging of the installed applications in phone. It automatically organizes all the apps installed in phone on app drawer according to their categories where you can further customize if needed.
Smart Launcher comes in free as well as paid versions. Free version contains a home screen with Shortcuts and most commonly used apps but in paid version , you will get option to take use of several widgets as well.




 5.91 LAUNCHER


91 Launcher is a complete package which comes along with 91 attractive themes to choose from several different categories such as Nature , Cars , Sports , Games etc. It offers many different kinds of wallpapers and widgets to customize your Android phone completely according to your taste. 91 Theme Creator allows users to create their own themes. Theme transition effects can be applied on Home Screens as well as on app drawers. It supports gesture feature allowing you to add more fun with this app.

Posted by Unknown
Powered by Blogger.

© Information Technology