Wednesday, 24 August 2011

How to Add Recycle Bin to Windows 7 Taskbar



Step 1 : Right Click and select New Shortcut
Step 2 : For the location of the shortcut use the following:
explorer.exe shell:RecycleBinFolder
Step 3 : Name it “Recycle Bin” or anything else if you want.
Step 4 : Right click the newly created shortcut and select Properties
Step 5 : Click the “Change Icon” button
Step 6 : Now scroll a bit to the right and select the Recycle Bin Icon
Step 7 : Press OK to save the changes.
Step 8 : Right Click on the New Recycle Bin Shortcut and select Pin to Taskbar
Now you Pinned Recycle Bin on the Windows 7 Taskbar.

Sunday, 21 August 2011

How to Add Copy, Paste and Delete Buttons to Windows 7 Explorer toolbar


Goto Run and type regedit and click OK.
Then navigate to the registry key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderTypes\{5c4f28b5-f869-4e84-8e60-f11db97c5cc7}
Right click on the registry key click on Permissions.
In the Permissions box, under its sole security tab, highlight your own Administrators account and then check the box under Full Control – Allow.
Click Apply > OK.
Open the Permissions windows again and click on Advanced button instead, and click on the Owner tab.
Change owner to your Name.
Click Apply > OK.
NOW again in the Permissions box, under its sole security tab, highlight your own Administrators account and then check the box under Full Control – Allow. Click Apply > OK.
In the right side pane, right click > New > Key.
Give the Name for subkey as TasksItemsSelected and give it a value:
Windows.Copy; Windows.Paste; Windows.Delete;

These values correspond to the buttons Copy, Paste, and Delete.
Now restart or refresh Windows Explorer and select any file.
 
You can see these options now!

Thursday, 18 August 2011

How to edit webpage by Google chrome inspect element




Step 1: Open Google chrome  go to any website you want to edit according to your wish. Select the text you want edit then right click on it. Then select inspect element .


Step 2: After clicking Inspect element you will see a box has appeared below your web bar. Now the important thing is to find the sentence code you want to edit. You will find the sentence easily. Afterwards, double click on it and then simply change the value, as you can see I have changed my Bank Account Balance from 6000 to 100000000000


Step 3: Look at the right side of the box appeared and click close button to remove the code box. Then everything will look original. 

You can also try to change any other things you want. Note this will not do any harm to the website because it won't change anything permanently. When you will click refresh button everything will be normal. I hope you have enjoyed reading this article , please post comment here if you like it.

Thursday, 11 August 2011

How to Change Processor Name In Your PC




You can change your processor speed in a minute.
This is just a simple trick which you can use this for fooling people. For changing your processor name and speed, follow these steps:

1) Go to run and type regedit.
2) Go to “ HKEY_LOCAL_MACHINE ”.
3) Go to “ Hardware ”.
4) Then go to “ Description ”.
5) Go to “ System ” and  then “ CentralProcessor ”.
6) Go to “ 0 ”.
7) Then go to “ ProcessorNameString  ”.
8) Change the value data to Intel Core i7 Extreme 965 @ 7.99GHZ


CAUTION: You must take the backup of your processor name before adding the new value data.

Sunday, 7 August 2011

How to Easily Search and Download Songs or Mp3


Open Google search engine first.

Now let’s assume I am going to download the song “boomi enna suthudhe” from “Ethir Neechal”.

Just copy the code below with double quotes and paste it in your google search box.

"parent directory" mp3 OR wma OR ogg OR wav boomi enna suthudhe -html -htm -shtml -phtml -php -buy -aspx -jsp -asp -cgi -pdf –ftp

Now you can see the magic.

So Just you can replace the song name boomi enna suthudhe with your needed song name. 

How to create Matrix effect in Chrome

First open notepad.
Copy and paste the below code in the notepad.


<canvas id="canvasId" width="1330" height="650" style="border:1px solid black"></canvas>
<script type="text/javascript">
    var cW = 1330;
    var cH = 650;
    window.onload = windowReady(64);
    /**
    windowReady
    */
    function windowReady(ascii_start) {
        // Load the context of the canvas
        var context = document.getElementById('canvasId').getContext("2d");
        var charArray = [];
        for (var i = 0; i < 75; i++) {
            var temp = [];
            var yspeed = Math.random() * 10;
            var xspacing = Math.random() * 15 + 15;
            var fontSize = Math.random() * 20 + 5;
            var charlengh = 10+Math.floor(Math.random()*20);
            for (var j = 0; j < charlengh; j++) {
                temp.push(new create_chars(i * 15 + xspacing, j * 20+20, yspeed, j, fontSize));
            }
            charArray.push(temp);
        }
        function create_chars(xloc, yloc, yspeed, j, fontSize) {
            this.x = xloc;
            this.y = -yloc;
            this.dy = yspeed;
            this.fontSize = fontSize;
            if (j == 0)
                this.color = "white";
            else
                this.color = "green";
            this.text = String.fromCharCode(ascii_start + Math.floor(Math.random()*65));
        }
        function Draw() {
            context.globalCompositeOperation = "source-over";
            context.fillStyle = "rgba(0,0,0,0.9)";
            context.fillRect(0, 0, cW, cH);
            context.globalCompositeOperation = "lighter";
            for (var k = 0; k < charArray.length; k++) {
                for (var m = 0; m < charArray[k].length; m++) {
                    var charObject = charArray[k][m];
                    context.fillStyle = charObject.color;
                    context.font = "bold "+charObject.fontSize+"px Arial";
                    context.fillText(charObject.text, charObject.x, charObject.y);
                    context.fill();
                    charObject.y += charObject.dy;
                    if (charObject.y > cH) { charObject.y = 0; }
                }
            }
        }
        setInterval(Draw, 20);

    }
</script>

Save as matrix.html, and
Select All Files instead of Text Document(*txt) in the below tab.


Now open it in chrome!...

Monday, 1 August 2011

How to Add Facebook Comments to Blogger



Instructions

Log in to Facebook with the account that you want to administrate the comments for your blog. Browse to Developers.Facebook.com/setup to create the comment application for your blog.
Enter the name of your blog in the first box, and then enter the URL of your blog in the second box. Ensure that you enter the full URL with the "/" character at the end; otherwise, the application won't create. Choose a language from the drop-down menu, and then click "Create Application."
Copy or write down the application number generated by Facebook.
Copy the following HTML Code:
<b:if cond='data:blog.pageType == "item"'>
<div id='fb-root'/>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'APPLICATIONID', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
<fb:comments/>
</b:if>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.URL + "#more"' expr:title='data:post.title'><data:post.jumpText/></a>
</div>
</b:if>
Log in to your Blogger account at Blogger.com. Select the blog you want to edit, and then click on the "Design" tab. Click the "Edit HTML" link followed by "Expand Widget Templates." Find "<data:post.body/>" and paste the HTML code below it. Change "APPLICATIONID" in the HTML code to the Facebook Developer Application ID number you were given. Click "Save Template."
Click "Settings" followed by "Comments." Choose to "Hide" the Blogger comments. Scroll down to the bottom of the page, and then click "Save Settings."
Click the "View Blog" link to see your blog, and then click the title of a post. Scroll to the bottom of the post, and the Facebook comment box will be there. Click the "Administer Comments" link under the box to adjust the settings for your blog.


Twitter Bird Gadget