Like us on facebook to get more free pro tricks daily...!

Liked us?

Tuesday, 15 May 2012

Use pendrive as RAM to increase computer speed

0 comments
TRICK TO SPEED UP YOUR COMPUTER USING PEN DRIVE

Yes it is true now you can use pen drive as RAM to speed up your computer and work more faster.
If your Computer works slow when you are using multitasking,browsing pictures or playing multimedia files, This is because of you don't have enough memory to store cache files. With the use of this simple trick you can speed up your computer with your USB Pen drive.


Windows Ready Boost can use storage space on some removable media devices, such as USB flash drives, to speed up your computer. When you insert a device with this capability, the Auto Play dialog will offer you the option to speed up your system using Windows Ready Boost. If you select this option, you can then choose how much memory to use for this purpose. However, there are some situations where you may not be able to use all of the memory on your storage device to speed up your computer.

Some universal serial bus (USB) storage devices contain both slow and fast flash memory, and Windows can only use fast flash memory to speed up your computer. So if your device contains both slow and fast memory, keep in mind that you can only use the fast memory portion for this purpose.

Pen drive
The recommended amount of memory to use for Windows Ready Boost acceleration is one to three times the amount of random access memory (RAM) installed in your computer. For instance, if your computer has 512 megabytes (MB) of RAM and you plug in a 4 gigabyte (GB) USB flash drive, setting aside from 512 MB to 1.5 GB of that drive will offer the best performance boost. The minimum size for any USB flash drive to work with Windows Ready Boost is 256 MB.

Step by step guide to INCREASE YOUR COMPUTER SPEED USING PEN DRIVE

Step 1 : Plug a flash drive or other removable media device into your computer.
Pc With Pendrive
Step 2 : Open My Computer and Right Click the the Properties dialog box for your flash drive or other removable media device.
Dialogue box
Step 3 : Click the "Ready Boost" tab on the right side of the window. Select "Use this device" and select the amount of space on the pen drive you want to allocate to the computer memory.


Step 4 : Click apply, OK to proceed.


How to Stop Ready Boost.


Step 1 : Open My Computer and Right Click the the Properties dialog box for your flash drive or other removable media device.


Step 2 : Click the "Ready Boost" tab on the right side of the window. Select "Do not Use this device"
That's all...
don't forget to leave comment...
Read more >>

Trick to Move Photos from Facebook to Google Plus

0 comments
Move your photos from Facebook to Google+ quickly and easily using this trick!
 Now at this time this trick is only working with Firefox and Chrome browser.
This trick is used to transfer all your photos from Facebook to Google plus, Wish you could get all of your Facebook pictures over to Google+ easily? Fortunately, there is an easy way to do just that using a simple technique.

You can also transfer complete album also from Facebook to Google+
moveyourphotos.com lets you download photos from ANY FACEBOOK ALBUM YOU CAN VIEW - NOT JUST YOUR OWN. This may at first seem a bit over the line when it comes to privacy,but these are only photos you already have permission to view and download on Facebook. You can also move the photos you're tagged in!!!
7terabyte.blogspot.com
If you are doing this though you should understand that Facebook does not load all of the photos you're tagged in at once, rather it loads more as you scroll down This means if you want to transfer all of these photos you will most likely have to make sure all the thumbnails have loaded.
Here is the Step By Step Guide to Move Facebook Photos to Google Plus.

  1. Download and install the add-on from moveyourphotos.com (Use Firefox simply drag the file onto the Firefox window to install)
  2. Navigate to within a Facebook photo album which you would like to transfer to your Google+ account
  3. Enter a name for the album in the text box on your brand new spanking photo importer toolbar.
  4. Click 'make album'
  5. At this point, you may repeat the last 3 steps with as many different Facebook albums as you want
  6. When you have recorded the information of all the albums you wish to import to Google+, click 'submit all albums'
  7. You will be brought back to moveyourphotos.com and given a link to login to your Google account
  8. Once you have logged in to Google we will begin processing your photos, upon completion we will give you a link to your new albums on Google
  9. AND YOU'RE DONE!!
Read more >>

Sunday, 13 May 2012

Premuim Social Traffic popup plugin for blogger

2 comments

A Social Traffic Pop Up with timer function

Boost your blog traffic with your exiting readers help

I have provide most awaited Social traffic Popup widget for blogger  When the Facebook Like box or +1 button placed in your blogs sidebar, It\'ll not be a attractive place to force the readers to click them.But When a +1 button or Like box popes Up (without annoying them) The readers will surely  click on buttons.
Also you can add Email subscription box in the pop up too.

Features

  • Combined reach of over 1.4 BILLION social media accounts.
  • Completely locks all page usability until popup is closed or a social action is completed.
  • Popup stays centered as the user scrolls up and down.
  • Optional close button.
  • Optional advanced close features allow visitors to close the popup by clicking outside of the popup area or by pressing the escape key.
  • Cookies remember which users have not completed a social action.
  • Like Button and Google +1 with dependent URL configurations.
  • Support for both of Twitters Follow and Tweet buttons.
  • Setup takes literally seconds!
  • 100% customizable CSS.
  • Configure everything from the beautiful built in settings panel.
  • Set background opacity right from the settings.
  • Works on all sites big and small.
  • Proven to induce more social shares = more traffic & better rankings = more $$$$

1.Install The java script

First log in to your Blogger account, Then Go to.. Template tab and then BackUp your template in case if you accidentally delete or add a wrong code.

Then Click Edit HTML and search for </head> tag ( Ctrl+F ) . Add the following code just before it.

<!--Start Social Traffic Pop Up by 7terabyte.blogspot.com -->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js' type='text/javascript'/>
<script src='http://dinhquanghuy.110mb.com/jquery.cookie.js' type='text/javascript'/>
<script type='text/javascript'>
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(){
centerPopup();
//loads popup only if it is disabled
if(popupStatus==0){
$(&quot;#backgroundPopup&quot;).css({
&quot;opacity&quot;: &quot;0.7&quot;
});
$(&quot;#backgroundPopup&quot;).fadeIn(&quot;slow&quot;);
$(&quot;#popupContact&quot;).fadeIn(&quot;slow&quot;);
popupStatus = 1;
}
}

//disabling popup with jQuery magic!
function disablePopup(){
//disables popup only if it is enabled
if(popupStatus==1){
$(&quot;#backgroundPopup&quot;).fadeOut(&quot;slow&quot;);
$(&quot;#popupContact&quot;).fadeOut(&quot;slow&quot;);
popupStatus = 0;
}
}

//centering popup
function centerPopup(){
//request data for centering
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var windowscrolltop = document.documentElement.scrollTop;
var windowscrollleft = document.documentElement.scrollLeft;
var popupHeight = $(&quot;#popupContact&quot;).height();
var popupWidth = $(&quot;#popupContact&quot;).width();
var toppos = windowHeight/2-popupHeight/2+windowscrolltop;
var leftpos = windowWidth/2-popupWidth/2+windowscrollleft;
//centering
$(&quot;#popupContact&quot;).css({
&quot;position&quot;: &quot;absolute&quot;,
&quot;top&quot;: toppos,
&quot;left&quot;: leftpos
});
//only need force for IE6

$(&quot;#backgroundPopup&quot;).css({
&quot;height&quot;: windowHeight
});

}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
if ($.cookie(&quot;anewsletter&quot;) != 1) {

//load popup
setTimeout(&quot;loadPopup()&quot;,5000);
}
//CLOSING POPUP
//Click the x event!
$(&quot;#popupContactClose&quot;).click(function(){
disablePopup();
$.cookie(&quot;anewsletter&quot;, &quot;1&quot;, { expires: 7 });
});
//Click out event!
$(&quot;#backgroundPopup&quot;).click(function(){
disablePopup();
$.cookie(&quot;anewsletter&quot;, &quot;1&quot;, { expires: 7 });
});
//Press Escape event!
$(document).keypress(function(e){
if(e.keyCode==27 &amp;&amp; popupStatus==1){
disablePopup();
$.cookie(&quot;anewsletter&quot;, &quot;1&quot;, { expires: 7 });
}
});

});
</script>
<!--End Social Traffic Pop Up by 7terabyte.blogspot.com -->
If you are familiar with Java Scripts, The comments marked with Red color is for you.


2.CSS Code

After the Java script, Search for this code   ]]></b:skin>  Just before it add the following code.


#popupContactClose{
cursor: pointer;
text-decoration:none;
}
#backgroundPopup{
display:none;
position:fixed;
_position:absolute; /* hack for internet explorer 6*/
height:100%;
width:100%;
top:0;
left:0;
background:#000000;
border:1px solid #cecece;
z-index:1;
}
#popupContact{
        border-top:5px solid #53A9FE;
        border-left:5px solid #53A9FE;
        border-bottom:5px solid #53A9FE;
       border-right:5px solid #53A9FE;
border-radius:30px;
       -moz-border-radius:30px;
       -webkit-border-radius:30px;
       
display:none;
position:fixed;
_position:absolute; /* hack for internet explorer 6*/
height:384px;
width:408px;
background:#FFFFFF;
z-index:2;
padding:12px;
font-size:13px;
}
#popupContact h1{
text-align:center;
color:#6FA5FD;
font-size:22px;
font-weight:700;
border-bottom:1px dotted #D3D3D3;
padding-bottom:2px;
margin-bottom:20px;
}
#popupContactClose{
font-size:14px;
line-height:14px;
right:6px;
top:4px;
position:absolute;
color#A30101;
font-weight:700;
display:block;
}

3.The Gadgets to appear

You can add anything that fit with the popup box. Such as a feedburner subscription box, Like box, Share buttons or anything. Just with the above format.
And this code should be apear Just before  </body> tag.


<div id='popupContact'>
<a id='popupContactClose'>
<img alt='x' height='20' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUI5vBI43OmWHrCM4TdCnsS9UqlxGAiOSGS_gVfqWZkQVrJlQjWXuO7b61L2lRUK-VRn9VeQ9Dbdt5emTbrjMTbSmYPywnTjPOU1PgbCIIg34S47lfwhSbvbUSDanXABEOEUkWfVEzuOwz/s800/Button-Close-icon.png' width='20'/>
</a>
<h1>PopUp Title</h1>
Code of the gadget you need
<br/>
<p style=" line-height:0px; font-size:10px; font-weight:bold; text-align:center;"><a style="color:#D3D3D3;" href="http://www.blogtrickstream.com/2011/12/one-time-popup-for-blogger-like-box.html">Get This</a></p>
<p id='contactArea'/>
</div>
<div id='backgroundPopup'/>



Just replace " PopUp Title " with a PopUp title of your choice . Also replace " Code of the gadget you need " with your gadged HTML code, It could be a Like box, +1 button, Subscription box, Welcome message.. or any.

Thats all...!!!

Read more >>

Saturday, 7 April 2012

"Do You Like This Story? Widget

0 comments
After several trials and errors finally we managed to design a fully equipped blogger widget that contains Facebook Like & Send button,  Email Form (Subscription box) and social media icons. This widget can be found on many wordpress blogs added at the bottom of posts. It catches great attention of the visitor and forces him to like and share your article. That's why we named this gadget as "Do you like this story?" It is a more advance version of the widget I shared few days back which only offered visitors with a subscription option but this one offers a lot more. It will increase your Traffic through Facebook, Increase your subscribers, facebook fans and twitter followers. Indeed a magic box! 
 
Free Recgarge !

do you like this story? blogger widget



Live Demo

Add This Widget to BlogSpot Blogs

I have kept the installation process extremely easy so feel comfortable to try it.
  1. Go To Blogger > Design > Edit HTML
  2. Backup your template
  3. Check the "Expand Widget Templates" box
  4. Search for,
<data:post.body/>
    5.   Just below it paste the following code,

<b:if cond='data:blog.pageType == &quot;item&quot;'>
<style>
form.emailform{
margin:20px 0 0;
display:block;
clear:both;
}
.mbttext{
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVhGkNezVuusrh5fU_hajh96e1BPfCi6iPrz7Av1VAKRhdRoNyD8msw-CTYPv7L8D6Wjo0KPSRrIwLwq0H-3gbRfRtqqNLhZSFPU39Zi3uPrD4YZjPScuwfTggLc3rrbFOF-HT_0FyBtP9/s28/w2b-mail.png) no-repeat scroll 4px center transparent;
padding:7px 15px 7px 35px;
color:#666;
font-weight:bold;
text-decoration:none;
border:1px solid #D3D3D3;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: 1px 1px 2px #CCC inset;
-webkit-box-shadow: 1px 1px 2px #CCC inset;
box-shadow: 1px 1px 2px #CCC inset;
}
.mbtbutton{
color:#666;
font-weight:bold;
text-decoration:none;
padding:6px 15px;
border:1px solid #D3D3D3;
cursor: pointer;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-goog-ms-border-radius: 4px;
border-radius: 4px;
background: #fbfbfb;
background: -moz-linear-gradient(top, #fbfbfb 0%, #f4f4f4 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fbfbfb), color-stop(100%,#f4f4f4));
background: -webkit-linear-gradient(top, #fbfbfb 0%,#f4f4f4 100%);
background: -o-linear-gradient(top, #fbfbfb 0%,#f4f4f4 100%);
background: -ms-linear-gradient(top, #fbfbfb 0%,#f4f4f4 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=&#39;#FBFBFB&#39;, endColorstr=&#39;#F4F4F4&#39;,GradientType=0 );
background: linear-gradient(top, #fbfbfb 0%,#f4f4f4 100%);
}
#doulike-outer {
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
-goog-ms-border-radius: 10px 10px 10px 10px;
border-radius: 10px;
background: none repeat scroll 0 0 transparent;
border: 1px solid #D3D3D3;
padding: 8px;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
width:480px;
}
#doulike-outer:hover{
background: none repeat scroll 0 0 #FFF;
-moz-box-shadow: 1px 1px 2px #CCC inset;
-webkit-box-shadow: 1px 1px 2px #CCC inset;
box-shadow: 1px 1px 2px #CCC inset;
}
#doulike-outer td{
padding:3px 0;
}
</style>
<div id='doulike-outer'>
<div id='doulike'>
<table width='100%'>
<tbody>
<span style='font-style: italic; font-size: 30px; font-family: arial,sans-serif, verdana;  color:#FF683F;'>Do you Like this story..?</span>
<tr>
<td>
<div id='fb-root'/><script src='http://connect.facebook.net/en_US/all.js#xfbml=1'/><fb:like font='' href='' layout='button_count' send='true' show_faces='false' width='300'/>
</td>
</tr>
<tr>
<td align='left'> <p style='color:#666; font-style:italic; margin:0px 0px 5px 0px; '>Get Free Email Updates Daily!</p>
<form action='http://feedburner.google.com/fb/a/mailverify' class='emailform' method='post' onsubmit='window.open(&apos;http://feedburner.google.com/fb/a/mailverify?uri=7terabyte&apos;, &apos;popupwindow&apos;, &apos;scrollbars=yes,width=550,height=520&apos;);return true' style='margin: 0pt;' target='popupwindow'>
<input name='uri' type='hidden' value='7terabyte'/>
<input name='loc' type='hidden' value='en_US'/>
<input class='mbttext' name='email' onblur='if (this.value == &quot;&quot;) {this.value = &quot;Enter your email...&quot;;}' onfocus='if (this.value == &quot;Enter your email...&quot;) {this.value = &quot;&quot;}' type='text' value='Enter your email...'/>
<input alt='' class='mbtbutton' title='' type='submit' value='Submit'/>
</form>
</td>

<td><p style='color:#666; font-style:italic; margin:0px 0px 5px 0px;  '>Follow us!</p>
<a href='http://feeds.feedburner.com/7terabyte' rel='nofollow' target='_blank' title='Suscribe to RSS Feed'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_h0irypwoPxjldxyWPzLgbR0ggqGxosJFI4WBsOvMPC3xWSUVoVfAsoa5sw9Ml_FEPYgfwlgXGFnAP7jbL4FAqZQ70QMJuOtenYQoQMENCSSjgQOcsHA9K4XCMQY-ZxhLrbpkcV_LTSM7/s40/w2bRSS+.png'/></a>
<a href='http://twitter.com/7terabyte' rel='nofollow' target='_blank' title='Follow us on Twitter'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMs27MK6icTNoaN96esfYkXFCyb7Gz58-UeysZNaTEKxCezYTb5bfG-n1dEqO6mQdeGfa-LjdF8jbRdPLVYtmNQer20wRYzg-00exRhWthnGqDgcgV6l4Mo1e768l_QkYnM_iOoSZ3yM0_/s40/w2bTwitter.png'/></a>
<a href='http://www.facebook.com/7terabyte' rel='nofollow' target='_blank' title='Follow us on Facebook'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8TnyPnUcQlIoMIDls8OMVUYN49F_-l-M76C787UZSPdhnpxYG_ZOA3cZniIsYrFzYT123nXdR2RSZHHg19neeGv0g950QQBpwtOza8cK-hMOcxW1zhMZ6rowlcSuNXR4nb9Ml7OEIcRVQ/s40/w2bFaceBook.png'/></a>
</td>
</tr>
</tbody></table></div></div>
</b:if>
Now make these changes,
  • To change the colour of the "Do you like this story..?" text then simply change #FF683F  with a hexadecimal color of your choice.
  • Now replace http://feedburner.google.com/fb/a/mailverify?uri=7terabyte with your Feedburner Email Feed link. You can get it by visiting your feedburner account then navigate to Publicize and then to Email Subscriptions.
  • Replace 7terabyte with your feed title. It appear at the end of your feed link. In my case it is http://feedburner.google.com/fb/a/mailverify?uri=7terabyte
  • Replace orange link with your Feedburner link
  • Replace the blue link with your twitter link
  • Replace the purple link with your Facebook Like Page link
After you have made all the necessary changes simply save your template and you are all done!
Read more >>

Thursday, 5 April 2012

Add a Cute Flying Twitter Bird

0 comments

flying-twitter-birdWith Twitter's worldwide popularity and with over 200 million users, generating 65 million tweets a day, it has become a must for every web master to use twitter sharing buttons and applications as much on his web as possible. This lets users to easily  tweet our blogs and websites which thereby generates traffic for us in return. Harish of way2blogging has coded a beautiful cute twitter bird that flies from corner to corner of your web page as you scroll up or down. It has a follow me link as well as tweet link. It is compatible with all browsers.

I am sure you will love to see that bird flying.  So here goes the demo,

 

 

How To Add the Twitter Flying Bird To Blogger?

  1. Go To Blogger > Design > Edit HTML
  2. Backup your template
  3. Search for </body>
  4. And just above it paste the code below

 

<script src='http://bloggerblogwidgets.googlecode.com/files/way2blogging.org-tripleflap.js' type='text/javascript'>
</script>
<script type='text/javascript'>
var twitterAccount = &quot;7terabyte&quot;;
var tweetThisText = &quot; <data:blog.pageTitle/> : <data:blog.url/> &quot;;
tripleflapInit();
</script>

 

   5.  Replace 7terabyte with your twitter account username.

    6.  Save your template and you are done!

    7.   View your blog to see it flying. :)

 

If you faced any problem just let me know. Have fun!

Read more >>

Facebook Social Bookmarking Widget for you

0 comments

I hope most of you have downloaded the free Social Media Buttons which are designed just how Facebook Buttons are designed. In today's tutorial we will learn how you can add those buttons to your blogger blogs. The steps are similar to the earlier Social Bookmarking widget that we shared.

Facebook-Bookmarking-Widget




Live Demo

Steps To Be Followed

  1. Go To Blogger > Design > Edit HTML
  2. Back up your template
  3. Check the Expand Widget Templates box
  4. Then click Ctrl + F and in the browser search box paste this,
data:post.body
    5. Now Just above this code paste the code below,
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<table border='0'>
<tr>
<td>
<!--Stumbleupon-->
<a expr:href='&quot;http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Stumble' src='StumbleUpon Button Link'/></a>
</td>
<td>
<!-- Twitter -->
<a expr:href='&quot;http://twitthis.com/twit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Twitter' src='Twitter Button Link '/></a>
</td>
<td>
<!--DIGG-->
<a expr:href='&quot;http://digg.com/submit?phase=2&amp;url=&quot;  + data:post.url' rel='external nofollow' target='_blank'><img alt='Digg This' src='DIGG Button Link '/></a>
</td>
<td>

<!--Email a Friend-->
<a expr:href='data:post.emailPostUrl' expr:title='data:top.emailPostMsg'>
              <img alt='' src='EMAIL Button Link'/>
          </a>
</td>
<td>
<!--Facebook-->
<iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.url + &quot;&amp;layout=standard&amp;show_faces=false&amp;width=100&amp;action= like&amp;font=arial&amp;colorscheme=light&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:450px; margin-top:16px; height:40px;'/>
</td>
</tr>
</table></b:if>

    6.  Simply Replace the blue bolded text with button links I shared in last post on Facebook Buttons. Finally save your template and you are done! :>
Read more >>
 

Total Pageviews

Translate

7TeraByte © 2012. All Rights Reserved | DMCA Protected | Back To Top