Search This Blog

Monday 11 March 2013

How To Protect Your Blog or Page Using Password

1ST METHOD

1. Login to your blogger Account >> Dashboard >> Edit Post >> Edit Pages

2. Now add the one of code given below to your page

<script language="JavaScript">
var password;
var pass1="PASSWORD-HERE";
password=prompt('Enter your password in order to view this page!',' ');
if (password==pass1) alert('Correct password, OK to enter!');
else {
  window.location="SITE-LINK";
}
</script>

Note: Replace PASSWORD-HERE with your password and SITE-LINK with your page 

SITE-LINK : 2011/04/how-to-protect-your-blog-or-page-using.html

3.Now Save your "Page" and You are done,

cheers

THANKS TO 
http://www.bloggertricksandtoolz.com/










2ND METHOD




  • Create a New Page on your Main Blog.
    • If you are password protecting Blog B which is a family blog for example, then in your main blog, Blog A, you may wish to create a "page" thats entiled "Password Needed" and in that page you write a simple note explaining that "The blog you were trying to view is password protected. If you feel you are reaching this message in error, please contact me at <your email address>."
    • Publish the page (no gadget to be added).
    • View Page to get the URL.
  • Save/Note this URL as you need it in the following steps.
Put into action!
Next, login to Blogger, go to the Dashboard and click Design.  If using the new Blogger interface, then go to your blog and click on Layout (from the left).
Next, click Add a Gadget and choose HTML/JavaScript.
Copy and paste in this code (also downloadable here) in the large text box (leaving the title blank):
Edit this code.
  • Change the occurances of the word TypePad with

How To Protect Your Post With Password in Blogger


Whenever we think about security the first words arrives in our mind is “Password Protection”. We are in 21st century the era of information technology, now days almost every thing has highest security i.e. online communities, files, documents and etc. Security plays vital role and have great significance when it comes to the personal matters and complex things. If the entire world is getting protected so why do we bloggers left behind.

An extremely powerful and useful script for blogger Blogspot blogs has been introduced by well known blog vincentcheung This script is capable of hiding what ever text you want in a form of encrypted code which can be uncovered if your users know the password to see the hidden text. Currently it is the most useful and secured method of protecting our post which I personally liked a lot. The hidden text is not easy to crack so it remains hidden from un-welcomed visitors. And according to the creator even he cannot decrypt (View) the hidden text except the person who knows the password. The whole systems works like a security lock which will only operate if we have the key to unlock so Today we will Password Protect our Bloggers Posts.

I know you would love to see the live demo that how the whole process works so before we spin our fingers over the tutorial first look at the instant preview.


Adding JavaScript To Blogger Blogs:

These steps are simple so do as directed
  • Go To Blogger.com >> Your Blog
  • Now Select Template >> Edit HTML
  • Now Press Proceed >> And Search For 
]]></b:skin>

  • And Now just below it paste the following code 
<!--MBL POST PASSWORD PROTECT CODING --> <script type="text/javascript" src="http://www.vincentcheung.ca/jsencryption/jsencryption.js"></script>

 How To Password Protect Our Post in Blogger

Now it is up to us whatever we wish to show images, text, videos, or any thing to only preferred visitors. So to password protect a certain content of your post simply go to Blogger.com >> Create Post and once you are finished do as directed

Step #1.  Now Switch to HTML mode and copy all the code that is present there as shown in the image below



Step #2.  Now we will go to Encryption PageOn this page you will be able to see four boxes

  • One with yellow color is called Key Box.
  • One with green color is called Plain Text Box 
  • One with red color is called Cipher Text Box.
  • And one with blue color is called HTML Code BoxBut we are only interested in Key box, Plain Text Box and Html Box. so do as follows.
  • Enter your desirable password in Key box.



    • And Now after Pasting the code Hit Encrypt button present below Plain Text Box
    • After Pressing Encrypt Button COPY the code from the HTML CODE box

    The Html Code which you copied in the previous step is the same post that you created previously in Blogger but this time you will observe strange illogical characters so don’t worry it is the same post with same images, videos. Now you can use this HTML code in your any posts and instead of seeing the big sum of code your visitors will see a link >> Show Encrypted text.

    Step #3.  Now after copying the code get back where we were working previously,Blogger >> Create Post >> Now in the Blogger Post Editor under HTML TABpaste the HTML code which your copied earlier. You can write anything instead of this text >> Show Encrypted text But make sure you do all the changes under HTML TAB


    So That's how we can password protect our post in Blogger. This is a new feature which we discovered I hope you will enjoy this newly introduced function. Till then Peace, Blessings, And Happy Protecting

    Sunday 10 March 2013

    8 MUST KNOWN TIPS FOR WINDOWS 8 NEWBIES


    8 must know tips for Windows 8 newbies 8 gotta know tips for Windows 8 newbies
    Made the leap to the drastically revamped Windows 8? Feeling a little lost? You’re not the only one.

    2 WAYS TO MAKE A POST STICKY ON BLOGGER & BLOGSPOT

    HOW TO CRAETE A SLIDESHOW FOR BLOGGER & BLOGSPOT


    This tutorial will shows you how to add featured content slideshow to show your featured post to your readers.This slideshow is very easy to setup and can easily manage width and height to match your template.Not only that you can change the speed of this slideshow easily.Default width is 550px and Default height is 200px.I think you will love this slideshow.You can see the DEMO of this widget from here.

    This tutorial updated: 2013/02/02



    1.Login to your blogger dashboard--> layout- -> Edit HTML
    2.Scroll down to where you see </head> tag .
    3.Copy below code and paste it just before the </head> tag .
    <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js' type='text/javascript'></script>
    <script type='text/javascript'>
    //<![CDATA[
    
    
    (function($){
    
    $.fn.s3Slider = function(vars) {
    
     var element     = this;
     var timeOut     = (vars.timeOut != undefined) ? vars.timeOut : 4000;
     var current     = null;
     var timeOutFn   = null;
     var faderStat   = true;
     var mOver       = false;
     var items       = $("#" + element[0].id + "Content ." + element[0].id + "Image");
     var itemsSpan   = $("#" + element[0].id + "Content ." + element[0].id + "Image span");
    
     items.each(function(i) {
    
         $(items[i]).mouseover(function() {
            mOver = true;
         });
    
         $(items[i]).mouseout(function() {
             mOver   = false;
             fadeElement(true);
         });
    
     });
    
     var fadeElement = function(isMouseOut) {
         var thisTimeOut = (isMouseOut) ? (timeOut/2) : timeOut;
         thisTimeOut = (faderStat) ? 10 : thisTimeOut;
         if(items.length > 0) {
             timeOutFn = setTimeout(makeSlider, thisTimeOut);
         } else {
             console.log("Poof..");
         }
     }
    
     var makeSlider = function() {
         current = (current != null) ? current : items[(items.length-1)];
         var currNo      = jQuery.inArray(current, items) + 1
         currNo = (currNo == items.length) ? 0 : (currNo - 1);
         var newMargin   = $(element).width() * currNo;
         if(faderStat == true) {
             if(!mOver) {
                 $(items[currNo]).fadeIn((timeOut/6), function() {
                     if($(itemsSpan[currNo]).css('bottom') == 0) {
                         $(itemsSpan[currNo]).slideUp((timeOut/6), function() {
                             faderStat = false;
                             current = items[currNo];
                             if(!mOver) {
                                 fadeElement(false);
                             }
                         });
                     } else {
                         $(itemsSpan[currNo]).slideDown((timeOut/6), function() {
                             faderStat = false;
                             current = items[currNo];
                             if(!mOver) {
                                 fadeElement(false);
                             }
                         });
                     }
                 });
             }
         } else {
             if(!mOver) {
                 if($(itemsSpan[currNo]).css('bottom') == 0) {
                     $(itemsSpan[currNo]).slideDown((timeOut/6), function() {
                         $(items[currNo]).fadeOut((timeOut/6), function() {
                             faderStat = true;
                             current = items[(currNo+1)];
                             if(!mOver) {
                                 fadeElement(false);
                             }
                         });
                     });
                 } else {
                     $(itemsSpan[currNo]).slideUp((timeOut/6), function() {
                     $(items[currNo]).fadeOut((timeOut/6), function() {
                             faderStat = true;
                             current = items[(currNo+1)];
                             if(!mOver) {
                                 fadeElement(false);
                             }
                         });
                     });
                 }
             }
         }
     }
    
     makeSlider();
    
    };
    
    })(jQuery);
    
    //]]>
    </script>
    <script type='text/javascript'>
    $(document).ready(function() {
    $('#s3slider').s3Slider({
    timeOut: 4000
    });
    });
    </script>
    <style type='text/css'>
    #s3slider {
    background:#000000;
    border:1px solid #818e8f;
    width: 550px;
    height: 200px;
    position: relative;
    overflow: hidden;
    }
    #s3sliderContent {
    width: 550px;
    position: absolute;
    top:0px;
    padding: 0px;
    margin: 0px;
    }
    .s3sliderImage {
    float: left;
    position: relative;
    display: none;
    }
    .s3sliderImage span {
    position: absolute;
    left: 0;
    font: 20px Trebuchet MS, sans-serif;
    padding: 10px 0px;
    width: 550px;
    background-color: #000;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    color: #fff;
    display: none;
    bottom: 0;
    text-align:center;
    }
    .clear {
    clear: both;
    }
    </style>
    NOTE : To change the speed of slideshowchange the value 4000.


    4.Save your template.

    5.Now go to Layout-->Page Element and click on "Add a gadget".

    6.Select "html/java script" and add the code given below and click save.
    <div id="s3slider">
    <ul id="s3sliderContent">
    
    <li class="s3sliderImage"><a href="YOUR-LINK-HERE"><img style="width:550px;height:200px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhb8LqgYAebhpj0qsjzqi4m2YLPFSZw-varVmZOeyFN9pY6mh_N6cBd5Q_8sLCMeo4RG0YoS_NoHvIQPrNowsEOzTiCM7y5Yk2DeYkfRg2LK4wuZIHsuqIYajrMgZtzUGt-4mseiH2C7Nyi/s1600/Crysis-11.jpg" /><span>Crysis : Download Full Version</span></a></li>
    
    <li class="s3sliderImage"><a href="YOUR-LINK-HERE"><img style="width:550px;height:200px;" src="YOUR IMAGE LINK HERE" /><span>Halo 3 : Play Game Online</span></a></li>
    
    <li class="s3sliderImage"><a href="YOUR-LINK-HERE"><img style="width:550px;height:200px;" src="YOUR IMAGE LINK HERE" /><span>Avatar : Watch Movie Now !!!</span></a></li>
    
    <li class="s3sliderImage"><a href="YOUR-LINK-HERE"><img style="width:550px;height:200px;" src="YOUR IMAGE LINK HERE" /><span>Call Of Duty 4 : Get Here</span></a></li>
    
    <li class="s3sliderImage"></li>
    </ul>
    </div>
    
    <div class='clear'></div>
    NOTE : Replace YOUR-LINK-HERE and YOUR IMAGE LINK HERE with your content.


    &

    Now you have successfully installed this slide show to your site.

    Thursday 7 March 2013


    Cool na? :) Now Learn How to create one by Clicking here


    How To Add Auto ‘Read More’ Feature with Thumbnails


    This nice trick will automatically create post summaries with thumbnails. You don't need to add any extra code in every blogger post that you make.
    Tutorial Updated : Jan 1, 2013
    1.Go to "Template" --> "Edit HTML" of your blog.
    2.Click on "Expand Widget Templates"
    3.Scroll down to where you see </head> tag.
    4.Now add below code just before </head> tag.
    <script type='text/javascript'>
    summary_noimg = 250;
    summary_img = 200;
    img_thumb_height = 150;
    img_thumb_width = 150; 
    </script>
    <script type='text/javascript'>
    //<![CDATA[
    
    function removeHtmlTag(strx,chop){ 
     if(strx.indexOf("<")!=-1)
     {
      var s = strx.split("<"); 
      for(var i=0;i<s.length;i++){ 
       if(s[i].indexOf(">")!=-1){ 
        s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length); 
       } 
      } 
      strx =  s.join(""); 
     }
     chop = (chop < strx.length-1) ? chop : strx.length-2; 
     while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++; 
     strx = strx.substring(0,chop-1); 
     return strx+'...'; 
    }
    
    function createSummaryAndThumb(pID){
     var div = document.getElementById(pID);
     var imgtag = "";
     var img = div.getElementsByTagName("img");
     var summ = summary_noimg;
     if(img.length>=1) { 
      imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
      summ = summary_img;
     }
    
     var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
     div.innerHTML = summary;
    }
    
    //]]>
    </script>
    Note : You can change below values as your choice.
    summary_noimg : number of character to display when there is no image.
    summary_img : number of character to display when there is an image.
    img_thumb_height : hight of the post thumbnails.
    img_thumb_width : width of the post thumbnails.
    5.Now Scroll down to where you see this:
    <data:post.body/>
    6.Replace above code with below code.
    <b:if cond='data:blog.pageType != "static_page"'>
    <b:if cond='data:blog.pageType != "item"'>
    <div expr:id='"summary" + data:post.id'><data:post.body/></div>
    <script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");</script>
    </b:if>
    </b:if>
    <b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if>
    
    <b:if cond='data:blog.pageType == "static_page"'><data:post.body/></b:if>
    
    <b:if cond='data:blog.pageType != "static_page"'>
    <b:if cond='data:blog.pageType != "item"'>
    <div style='float:right;margin-right:10px;margin-top:5px;'>
    <a expr:href='data:post.url'>Read More</a>
    </div>
    </b:if>
    </b:if>
    7.Now save your template and you are done.

    How To Disable Highlight Text on blogger blog








    1.Log in to your dashboard--> layout- ->Page Elements


    2.Click on 'Add a Gadget' on the sidebar.


    3.Select 'HTML/Javascript' and add the code given below and click save.

    Wednesday 6 March 2013

    DOWNLOAD BATTLEFIELD 1942 PC GAME RAR

    DOWNLOAD BATTLEFIELD 2 PC GAME RAR





    How to delete windows.old in windows 7 or undeleteable files & folders


    1ST METHOD

    To delete the Windows.old folder from an earlier installation of Windows, follow these steps:
    1. Click Start, type disk cleanup in the Start Search text box, and then click Disk Cleanup.
    2. In the Disk Cleanup Options d

    Monday 4 March 2013

    Speeding Up Windows 7: Everything You Need to Know


    No matter which version of Windows you use, you will find your PC slowing down after a few months of regular use. This holds true for the latest incarnation as well ““ Windows 7. There are several third-party utilities that optimize Windows, but it is not safe to run system programs from unknown developers
    .
    In this guide, we will cover speeding up windows 7 and how to optimize your Windows 7 PC or Laptop in a safe manner. These steps do not involve any “hacks”, so you can safely use them without harming your system in any way.

    #1: Remove Unused Programs & Windows Features

    When you buy a PC or laptop, it usually comes pre-installed with a lot of demo-ware, trial-ware, try-before-you-buy kind of software. If you like to play with new applications all the time, you might have yourself installed software downloaded from the Internet. Each program installed on your computer uses system resources that you are wasting if you don’t really need the software. Remove and uninstall all software that you no longer need from Control Panel ““> Programs ““> Uninstall a program. Also see How to Uninstall Applications Efficiently and Remove Obsolete Files.
    Also, from Control Panel > Programs ““> Turn Windows features on or off, uncheck any Windows features you don’t need.

    #2: Review Startup Programs

    The most common cause of slowdown are programs that automatically run when Windows starts and keep running in the background consuming precious system memory.
    The simplest way to detect which programs are running when you start Windows is to check the notification area on the taskbar. Click the up arrow to show hidden icons. Uninstall any programs you don’t need, or disable the option within that program to start it automatically.
    msconfig
    A better way to review startup programs is to use the System Configuration utility. From the

    Customize Your Windows 7 System IN FIVE WAYS


    We all long to be recognized as individuals. Consequently, we find ever more ways to express our uniqueness. As a result, fashion and design have extended their reach into all corners of our lives, making everyday items not only nice to look at, but also easier to use.

    Windows 7 provides plenty of internal options to change the look and feel of your computer. It’s easy to give the operating system a unique style and at the same time enhance your experience as a user. For most of the coolest ways to customize Windows 7, you don’t even have to mess with hacks or additional software.
    Let me show you how you can dress up your installation of Windows 7 and make using your computer a visual and functional joy.

    1. Change The Welcome Screen

    There are two basic things you can change that will affect the welcome screen. First of all, you can change your profile picture. Secondly, you can apply a hack or software to change the background image.
    To change your profile picture, go to > Start and type > User Accounts into the bar that says > Search programs and files, then open the respective entry under > Control Panel. Next, select > Change your picture. You can now choose a default image or click > Browse for more pictures… at the bottom of the list to access your own files.

    Once you have selected an image click the > Change Picture button and you’re done.
    customize windows 7
    To change the logon screen manually, check out the procedure described in this article - How To Change Windows 7 Logon Scr

    Speed Up The Windows 7 Shutdown Process IN Three Ways


    One of the key improvements of Windows 7 is its lightning fast start-up. Aaron Dietrich of the Windows Client Performance team received a lot of praise for this achievement. However, what the developers apparently failed to optimize and speed up was the shutdown process.

    Ever since I switched to Windows 7 on my laptop, which had previously shut down within seconds while running on Windows XP, the slow shutdown has been nagging me. If you also happen to be looking for ways to kick-start a Windows 7 slow shutdown, look no further! Here I will introduce you to 3 ways to optimize or speed up the logoff process, so that you can leave the office or get into bed faster.

    Prologue

    I tested these tips one after the other on my Windows 7 netbook (which shut down significantly faster after upgrading to 2GB RAM). I booted into Windows, started some standard programs, including Skype and Chrome with several different tabs open, waited until they had fully loaded, and then shut down the computer. In its native state, the shutdown took 32 seconds from clicking the ‘Shutdown’ button until the laptop had fully shut down.
    Initial shutdown time on test machine: 32 seconds

    1. Reduce Timeout To Kill Service Or App

    Before Windows shuts down, it attempts to properly close all running processes. If a service doesn’t close immediately, Windows waits for a few seconds, until it prompts the user that the service is not responding to the shutdown request. The amount of this waiting time is defined by registry keys and you can reduce it.

    These are two fairly harmless registry hacks. If you follow the steps outlined in this article, it should in no way harm your system. Nevertheless, I have to issue a warning:
    Editing the registry can damage your operating system! I or MakeUseOf take no responsibility whatsoever!  Make a backup of your registry before continuing.
    For the first hack, click the key combination > [WINDOWS] + [R], type > regedit into the text field, and click > OK to launch the registry editor.
    In the registry editor, navigate to this folder:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
    Within that folder (on the right) find and double-click the string > WaitToKillServiceTimeout.
    In the > Edit String window, change the > Value data from the default of 12000 (12 seconds) to 2000 (2 seconds). Click > OK to save the change.
    windows 7 slow shutdown
    For the second hack, navigate to the followin

    LEARN 10 Command Prompt Tricks and Hacks . Don't Miss It's Useful


    The Windows Command Prompt tool, and many of its commands, might seem boring or even relatively useless at first glance, but as anyone who has ever used the Command Prompt very often can tell you, there's much to love!

    Below are several Command Prompt tricks and other Command Prompt hacks that I guarantee will get you excited about many of the mundane sounding Command Prompt commands like telnet, tree, or robocopy... okay, robocopy sounds pretty cool.
    Some of these Command Prompt tricks and hacks are special features or uses of the Command Prompt itself, while others are just neat or relatively unknown things you can do with certain commands. Enjoy!

    1. Use Ctrl-C to Abort a Command

    Ctrl-C - Command Prompt Tricks
    Just about any command can be stopped in its tracks with the abort command: Ctrl-C.
    If you haven't actually executed a command, you can just backspace and erase what you've typed, but if you've already executed it then you can do a Ctrl-C to stop it.
    W

    WHAT TO DO AFTER INSTALLING WINDOWS 7 ????? 15 TIPS


    1. Use Keyboard Shortcuts

    Using the mouse, you can drag-”˜n-dock windows to either side of the screen, or drag it to the top to maximize it. These keyboard shortcuts are even faster:

    • Win+Left Arrow and Win+Right Arrow dock the window to the left and right side of the screen
    • Win+Up Arrow and Win+Down Arrow maximize and restore/minimize
    • Win+M minimizes everything
    • Alt+UpAlt+Left ArrowAlt+Right Arrow navigate to parent folder, or browse Back and Forward through folders in Explorer
    • Win+Home minimizes/restores all open windows except the active window
    • Alt+Win+# accesses the Jump List of program number ‘#’ on the taskbar

    2.Rearrange System Tray Icons

    SystemTray
    You can rearrange icons on the taskbar as you wish and start new (or switc

    Basic Tone & Colour Correction


    Tone and colour correction within Photoshop can leave many new/novice users confused, not least because of the vast array of tools but also the less than intuitive way in which some operate. This tutorial explains the basic tools and should also clear up some other mysteries along the way. 
    This version of the Basic Tone and Colour Correction
     tutorial has been revised to reflect the changes introduced with Photoshop 7. It has also been expanded to include comprehensive discussions on the following Adjustment tools.
    1. Brightness/Contrast
    2. Colour Balance
    3. Levels
    4. Curves
    5. Eyedroppers
    Before starting any serious work in Photoshop it important that we have the monitor calibrated and have Photoshop correctly configured, see the Photoshop CS & Colour Management essay. It's also quite helpful to have the desktop arranged in a way that allows both the "Channels", "Layers" and "Histogram" palettes to be viewed at the same time. Actually customising the desktop to ensure your ideal workflow has never been easier.
    A printer friendly Adobe Acrobat PDF version is downloadable by clicking the pdf icon 
    Image

    Typical Photoshop Palette Layout - Channels and Layers sh

    How To Completely Restore Your Windows Computer To Factory Settings


    Most computers from PC vendors come with certain pre-configured factory settings which are important to the computer’s operation. This is particularly true of laptops, which usually have special function buttons, and touch screen computers, which require special drivers in order to function. Of course, a computer from a factory also has default Windows settings and does not feature any of your own customizations
    .
    There may come a time in your computer ownership that you decide to basically hit the reset button.

    This may be because your computer was struck by a virus, or it may be because you are selling your computer and you want to make sure your personal information can’t be retrieved by the person you are selling to.
    Whatever your situation, this guide will help you completely restore your computer to absolutely pristine factory settings.

    Step 1: Save Files & Folders

    Depending on your version of Windows and the recovery system your computer’s vendor uses, some of your settings and files may be saved when you restore your computer to factory settings. However, it is best not to rely on this.
    how do i completely restore my computer
    Treat your restoration to factory settings the same as you would a complete re-format of your hard drive. Assume all data will be lost and back up all crucial information to an external har

    Saturday 2 March 2013

    এখন সফটওয়্যার ছাড়াই ব্যবহার করুন স্কাইপি ! (কেও মিস করবেন না!)


    “আসসালামু আলাইকুম”

    সবাই কেমন আছেন? আশা করি আপনারা সবাই অনেক ভাল আছেন।
    অনলাইনে প্রিয়জনদের সাথে চ্যাট করতে আম