Latest Movie :
Recent Movies
TOP TWO SOFTWARES TO RUN ANDROID APPS ON YOUR PC FOR FREE

Do you like to run android apps on PC?Are you thinking how to do it?This post will answer the questions with two new solutions.
Two best softwares to run android apps on PC

Bluestacks
Temple Run in Bluestacks


This is the best android app emulator that I have ever used.This has a wider app compatibility and is absolutely free.The software is available for Windows XP,VISTA,WIN 7/8.The software is even available for Mac OSX.They have currently started a new service called GamePop through which you could run android apps on your TV.The service is available for Pre-order and is not free.
Bluestacks Interface


Intel AppUp
Intel AppUp
Like Bluestacks Intel AppUp is also completely free.This software is developed by Intel.This software doesn't have a good collection of apps although new apps are added every day.They also have a nice clean interface.
HOW TO RECORD ANY SOUND ON YOUR PC WITHOUT MICROPHONE?

Last day I was doing some edits on my PC for my friend.But unfortunately I was unable to save the audio file.So I decided to record the edited audio.To avoid the noise while recording I decided not to use the microphone for recording.So how can you record any sounds on your PC without a microphone?The following trick is done on a windows 7 PC.

Steps to record any sound on your computer without a mic

  1. Search for "sound" using the search box in start menu OR Go to Control Panel > Hardware and Sound > Sound
  2. Click on the Recording tab.
    Sound dialog box displaying the Stereo Mix option.
  3. Right click on Stereo Mix and click on "Set As Default Communication Device".
  4. Now open sound recorder by searching for sound recorder in start menu search.
  5. Launch the application and start recording.
  6. Record and enjoy!

If you can't  see the Stereo Mix option?

  • If you cannot find the "Stereo Mix" icon on the "Recording" tab, right-click on an empty white space within the box and click "Show Disabled Devices." Right-click "Stereo Mix" and click "Enable" to turn the function on.

  • Update your audio drivers.
  • If you see an option called Mono Mix or Wave Out Mix instead of Stereo Mix,don't worry because they all have the same functions.

WHY GOOGLE CHROME IS THE BEST TOOL FOR DEVELOPERS? HIDDEN FEATURES OF CHROME

Google Chrome is a very good browser for developers as well as all internet surfers.Chrome stands as the best web browser with its fast and reliable performance.It  has millions of free apps and extensions in the chrome store.Moreover it is the best tool for web developers due to its unique features.Learn why Google chrome is the best tool for web developers and also learn some of the hidden features of chrome that you don't know.



Why Chrome is the best tool for web developers?

A good developer  needs to experiment a lot with your content and that is what Google chrome helps you do.Chrome has a built in developer feature called Chrome Dev Tools that helps web developers to edit webpages on the go (Note: The edits made are temporary and will last only until you refresh the page) with ease.This is the first reason for chrome to be the best browser for developers.Learn more

Chrome,the best web developer tool.To be a good developer you need to properly manage time.To use time efficiently you need tools and that's what Google chrome store has.Chrome Store has a vast collection of free apps and extensions for developers.This is the second reason for chrome to be the best browser for developers.

Thirdly,all your bookmarks and browsing history can be backed up to your email.So even when you leave your desktop you can always experience the way you browsed.This is one of the most important feature that any browser should have.

Lastly, a developer needs to have at least his basic tools with him all the time.The hidden features of Google chrome will let anyone open up his files without leaving chrome.

Hidden Features Of Google Chrome

There are several hidden features in Google Chrome that you might be unaware of.Below are the different hidden features of Google chrome.
Hidden features of google chrome

Chrome As A Video Player

You can use chrome to play videos.This simple video player has a pause button,full screen button,a slider,mute button and a sound level slider.To use this feature simply drag the video that you want to play into a new tab.Press  F11 to go full screen.

Chrome As A Music Player

It can be a used as an excellent music player too.This music player also has a pause button,mute button,slider and a sound level adjuster.Simply drag an audio file into a new tab to play.

Chrome As A Picture Viewer

You can view any picture in your browser with this feature.Simply drag a picture into a new tab to view it.But this picture viewer doesn't have any next/previous buttons.But it has a zoom in/out function.Press  F11 to go full screen.

Chrome As A PDF Viewer

Surprised,huh? As the title says you can use this masterpiece browser to view even PDF files(Good bye Adobe Reader :)  ).This feature allows you to view your Pdf files with different options like fit page to screen horizontally or vertically,zoom in,zoom out,print,etc.A page number displayed as you scroll along the pages gives you an idea of your current page location. Drag the Pdf into a new tab to access this feature.



TOP 5 WAYS TO CUSTOMIZE YouTUBE EMBEDS

YouTube is a growing platform for video shares.With its free services many people own a youtube channel.Videos are great way to learn something than by just reading.Many blogger uses youtube to share their videos on youtube and then embed the video in their post.But by default youtube has a default style for embedded player.In this post I will explain you thedifferent methods of customizing the youtube embedded player.You can also learn to add light version of the video player to decrease page load time.

How To find video ID?
The video ID can be located from the URL of the video.For example in this URL http://www.youtube.com/watch?v=85GqVYeyn18 the video ID is 85GqVYeyn18

Different Customized Players

Style 1 : Default Player

The default player can be easily embedded into your webpage.The code for the default player is given below.
<iframe width="420" height="315" src="//www.youtube.com/embed/Video ID" frameborder="0" allowfullscreen></iframe>

Replace the video ID with your video ID.

Style 2 : Only Thumbnail + Circle Play Button

This is a light weight version of the player.This embed player doesn't have the button panel and id chromeless.This player has a thumbnail preview with a circle play button at the center.This is a quick way of loading your webpage.This code can reduce your page size by over 300kb.We highly recommend to use this.
To add an embedded player like this use the below code.
<div class="youtube" id="Your Video ID" style="width: 320px; height: 180px;"></div>

Style 3 : Resize Player Option

If you want to provide an option to change your video player size embedded in a post you can use the below code.
<style type="text/css">
      #videoDiv {
        margin-right: 3px;
      }
      #videoInfo {
        margin-left: 3px;
      }
    </style>
    <script src="//www.google.com/jsapi" type="text/javascript"></script>
    <script type="text/javascript">
      google.load("swfobject", "2.1");
    </script>   
    <script type="text/javascript">
      /**
       * Resizing the player in JavaScript.
       */
     
      // Make the player small.
      function smallPlayer() {
        resizePlayer(480, 295);
      }
     
      // Set the player back to normal.
      function normalPlayer() {
        resizePlayer(560, 340);
      }
     
      // Make the player big.
      function largePlayer() {
        resizePlayer(640, 385);
      }
     
      // Set the loaded player to a specific height and width.
      function resizePlayer(width, height) {
        var playerObj = document.getElementById("ytPlayer");
        playerObj.height = height;
        playerObj.width = width;
      }
     
      // The "main method" of this sample. Called when someone clicks "Run".
      function loadPlayer() {
        // The video to load
        var videoID = "YOUR VIDEO ID"
        // Lets Flash from another domain call JavaScript
        var params = { allowScriptAccess: "always" };
        // The element id of the Flash embed
        var atts = { id: "ytPlayer" };
        // All of the magic handled by SWFObject (http://code.google.com/p/swfobject/)
        swfobject.embedSWF("http://www.youtube.com/v/" + videoID +
                           "?version=3&enablejsapi=1&playerapiid=player1",
                           "videoDiv", "560", "340", "9", null, null, params, atts);
      }
      function _run() {
        loadPlayer();
      }
      google.setOnLoadCallback(_run);
    </script>
  </head>
  <body style="font-family: Arial;border: 0 none;">
    <table>
    <tr>
    <td><div id="videoDiv">Loading...</div></td>
    <td valign="top">
      <div id="videoInfo">
  <a href="javascript:smallPlayer()">Small Player</a>
  <a href="javascript:normalPlayer()">Normal Player</a>
  <a href="javascript:largePlayer()">Large Player</a>
      </div>
    </td></tr>
    </table>
  </body>
</html>
 Replace the video ID with your video ID.Change the size of  small player,normal player and big player by changing the values inside resizePlayer(***, ***) with your desired width and height respectively.

Style 4 : Change The Playing Video

If you want to embed a video player that has an option to change the playing video use the code below.
 <style type="text/css">
      #videoDiv { 
        margin-right: 3px;
      }
      #videoInfo {
        margin-left: 3px;
      }
    </style>
    <script src="//www.google.com/jsapi" type="text/javascript"></script>
    <script type="text/javascript">
      google.load("swfobject", "2.1");
    </script>    
    <script type="text/javascript">
      /*
       * Change out the video that is playing
       */
      
      // Update a particular HTML element with a new value
      function updateHTML(elmId, value) {
        document.getElementById(elmId).innerHTML = value;
      }
      
      // Loads the selected video into the player.
      function loadVideo() {
        var selectBox = document.getElementById("videoSelection");
        var videoID = selectBox.options[selectBox.selectedIndex].value
        
        if(ytplayer) {
          ytplayer.loadVideoById(videoID);
        }
      }
      
      // This function is called when an error is thrown by the player
      function onPlayerError(errorCode) {
        alert("An error occured of type:" + errorCode);
      }
      
      // This function is automatically called by the player once it loads
      function onYouTubePlayerReady(playerId) {
        ytplayer = document.getElementById("ytPlayer");
        ytplayer.addEventListener("onError", "onPlayerError");
      }
      
      // The "main method" of this sample. Called when someone clicks "Run".
      function loadPlayer() {
        // The video to load
        var videoID = "ylLzyHk54Z0"
        // Lets Flash from another domain call JavaScript
        var params = { allowScriptAccess: "always" };
        // The element id of the Flash embed
        var atts = { id: "ytPlayer" };
        // All of the magic handled by SWFObject (http://code.google.com/p/swfobject/)
        swfobject.embedSWF("http://www.youtube.com/v/" + videoID + 
                           "?version=3&enablejsapi=1&playerapiid=player1", 
                           "videoDiv", "480", "295", "9", null, null, params, atts);
      }
      function _run() {
        loadPlayer();
      }
      google.setOnLoadCallback(_run);
    </script>
  </head>
  <body style="font-family: Arial;border: 0 none;">
    <table>
    <tr>
    <td><div id="videoDiv">Loading...</div></td>
    <td valign="top">
      <div id="videoControls">
        <p>Select a video to load:</p>
        <select id="videoSelection" onchange="loadVideo();">
          <option value="
Video ID" selected>Video Title </option>
          <option value=
Video ID "> Video Title </option>
          <option value=
Video ID "> Video Title </option>
        </select>
      </div>
    </td></tr>
    </table>
  Change the default video to load by replacing the video ID with your video ID in the video to load section.
To add different options change the video ID and the video title at the end of the code.The below is demonstration of the code.



Loading...

Select a video to load:

Style 5 : YouTube Player Generator With Custom Options


If you want to add a different styled player then use the Youtube Player Generator.It offers a variety of custom options.


HOW TO EXTRACT ALL HYPERLINKS IN A WEBPAGE?

Sometimes you might need to have the all the hyperlinks from a webpage.For example if you are a developer you might be in need of a javascript or css of a webpage that is hosted externally.Sometimes this trick will also help you extract the download link from survey sites.Whatever might be the reason let us learn to do this.We will learn 3 different ways to extract hyperlinks from a webpage in this post.

Extract Hyperlinks From A Webpage In Chrome

This trick is very simple but is limited to Google chrome users.The trick is performed with  via the Chrome Dev tools.
Steps To Extract Hyperlinks From A Webpage In Chrome
Extract hyperlinks from a webpage in chrome
  1. Go to the page from which you want to extract the hyperlinks.
  2. Click on 'Inspect Element' from the right click menu.
  3. Click on the 'Console tab'.
  4. Now paste the following code in the input field.                                                                                                                                 urls = $$('a'); for (url in urls) console.log ( urls[url].href );
  5. Hit enter.

iWeb Tools's Link Extractor
Extract hyperlinks using iweb tool

This is a web based service which means you don't have to download any software nor it is limited to any users.You can use this tool here.This tool will show the type of file along with the anchor text in the output field.
How To Use This Tool?
Using this tool is very simple.All you have to do is to go the the above url.Enter the webpage url in the input field and hit extract!

BuzzStream Tool

Extract hyperlink from html codes
This is quite different from the other two because in this case we are extracting all the urls from an html code.This trick will not display the output links on the website itself.All the links on that page are exported as a CSV file which automatically downloads to your computer once you hit the create CSV button.The CSV file has three different columns including the actual link,it's original website and the anchor text.
How To Use This Tool?
  1. Go to Buzz Stream Urls Extract Tool
  2. Copy the source code of the webpage from which you want to extract the Url.
  3. Paste it in the tool's input field and hit create CSV.A CSV file containing the hyperlinks will automatically be downloaded to your computer.
How To Get The Source Code Of Webpages?

Chrome:Right click on the webpage and click on view page source or press Ctrl + U
Internet Explorer:Right click from the webpage and click on view source.
Firefox & Netscape:Right click  and click on  view page source or press Ctrl + U
Opera:From the view menu click on source or press Ctrl + F3

CHECK WHETHER YOUR PC CAN RUN A GAME

Everyone loves playing games!Today we have games that are just like cinemas.Modern games have high texture quality and animations which requires a good PC.Many people lands on buying games that are not supported on their system.If you are one among them this post will be extremely useful to you.You can also know where to spend your money for a better game play.Many sites provides information on system requirements for a particular game.But these system requirements are not worth or we don't want it either.This is where system requirements lab helps us.

Can you run this game

System requirements lab is a site that scans your hardware online and tells whether you can run a game.They have a huge and daily updated game database.So make sure you visit this site before buying any games.Of course,if you are having a high end PC,there is nothing to worry about.They will tell whether you can run a game on minimum,recommended or optimal settings.Be a game forecaster!

How To Check Whether Your PC Can Run A Game?

  1. Go to System Requirements Lab
  2. Choose the game from the list and hit 'Can You Run It'.
  3. Choose the option by which you want them to scan your system specs.
  4. Wait for it to scan your system.
  5. You will see the results along with upgrade suggestions to play the game in minimum,recommended or optimal quality.
    Pass or fail

Alternative Way To Check Whether You Can Run A Game

  1. Go to game-debate.com
  2. Choose the game company.(By default it is selected EA.Click on the company logo  to select the company.)
  3. Choose the game from the drop down list.
  4. Fill up your system specs details below.
  5. Click Proceed.
  6. You will now see different ratings for your specs.A higher rating means you can run the game flawlessly.
Note:You need to know your system specs to perform the second method.

Do you have a high end PC?Are you able to play latest games without lag?If so,tell us your system specs and the game you tested.We would love to hear that in the comments.
Otherwise tell why you want this tool and which game you tested with this tool?

RECOMMENDED METHOD TO OPEN PASSWORD PROTECTED ZIP FILE 
It has now been common that at least 10 of every 100 files that you download from the internet is password locked.This is locked either because it is scam or the owner doesn't actually want to share it with you.There is no way to realize whether it is fake or not other than just opening the password protected file.Getting the passwords to unlock these are quite difficult because most of them are locked down in surveys.I have already told you how to open password protected zip file without password in my previous posts.I have seen a great positive response to my how to open password protected rar file without password posts.Therefore I will share a similar trick to unlock zip files without password in this post.

Things You Will Need

  • A good PC (It's better if you have a good one)
  • Ultimate Zip Cracker Software

Steps To Open Password Protected Zip File Without Password

  1. Download Ultimate Zip Cracker from the above link.
  2. Install it following the steps in the read me file.
  3. Start the program after successful installation.
  4. Set the path of the zip file.
  5. Choose the search method as password wizard (recommended for most cases).
  6. Click start and choose the appropriate options in the password recovery wizard (we recommend you to skip unnecessary methods like date search for faster search).
    Ultimate Zip cracker
    Always check the appropriate options in the recovery wizard.
  7. Copy the password from the pop up and unlock your zip file.
    unlock password protected zip file
    Pop up with the password

If that doesn't work...

If you are unable to retrieve the password for the locked zip file after following the above steps then we recommend you to choose the search method as dictionary attack and then for brute force attack.Brute force attack can take so long depending upon password length.Choose the settings appropriately.


HOW TO MIRROR YOUR iPHONE/iPAD/iPOD SCREEN TO YOUR COMPUTER FOR FREE? 

Apple's airplay mirroring on ipod,ipad and iphone allows us to wirelessly stream the screen to a Tvdisplay via the Apple TV.But if you want to mirror the screen to your computer then try this trick.There are different apps for windows that allows windows to act as an airplay receiver.Mirroring your iphone/ipod/ipad screen to your computer allows you to share the screen to a group of people around you.This trick will also be helpful when you want to teach someone to do something in iphone.Without further explanation lets do that!

Things You Will Need

  • An Apple iPhone/iPad/iPod touch
  • An internet connection
  • A Mac or a PC
  • Reflector app (Ofiicial Website)

Steps To Mirror Your iPhone/iPad/iPod Touch To Your PC

  1. Free download reflector app from the below link.
  2. Install reflector app and launch it.
  3. Open  preferences and save the settings.
    Open preferences
  4. You will now see the airplay option displayed right next to the airdrop option.
    Airplay option next to airdrop
  5. Click on that and you will be taken to a new page.Choose your computer from the list again.
  6. Turn on airplay.You will now see your ipod/ipad/iphone displayed on your computer screen.
  1. Turn on mirroring option
Note:Make sure to run the reflector app throughout and make sure that the internet connection is active.

How To Turn It Off?

To turn it off simply close the reflector app from your computer.


HOW TO SHARE YOUR INTERNET CONNECTION VIA WIFI?

Wifi connections are the best because they seem to support in all devices.Some devices such as an Apple iPod/iPad,tablets,PSP,etc.supports only Wifi connection.Wifi modems are cheap.If you are having an ethernet modem then you can use a Wifi router to make it Wifi rather than buying a Wifi modem.But if you are having an internet connection and a computer with wifi such as a laptop then here is a trick to make your internet connection Wifi.

Requirements

  • A computer with wifi
  • An active internet connection
  • Connectify Hotspot

Steps To Share Your Internet Connection Via Wifi

  1. Download Connectify  for free from here.
  2. Once installed,launch the application and set it up.
  3. Click start hotspot and wait for it to start.
    Connectify Hotspot
  4. On your wifi device the network will be detected and if not then scan for the network.
  5. That's it! Enjoy!


Powered by Blogger.
 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. COMPUTER USEFUL GUIDE AND TRICKS - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger