Wednesday, April 9, 2014

How to send free sms to worldwide without registration from internet?

Today i am going to share how can we send sms (short message service) to worldwide (including nepal, india.) for free without registration. Yes it is possible through internet to send message (SMS) from one place to another place for free. There are lots of sites which provides free sms services but most of the sites ask for register to their site to use the free sms sending feature but there are also some sites from where we can easily send free sms to worldwide. The site i am talking about is aFreeSMS.com . It is online International Free Text Message provider (free sms provider) allows you to send sms to worldwide for free.


Why should you use this?

  • No Registration is requires
  • Easy to Use
  • Unlimited Text Messages
  • 98% Delivery Rate
  • Fast SMS Delivery

Features & Benifit :

This Messaging platform is up 7days a week and 24 hours a day available and accessible anywhere around the world. This allow you to make your marketing strategies and broadcast to your clients from any places like, cafes, office, home or even overseas.

Note: Ad blocker should be disabled for using this service.
Read More »

Saturday, April 5, 2014

How to repair windows system files from command prompt



System files of a Computer can be repaired by using command prompt with the help of sfc command. It usually takes 5-10 minutes to complete operation i.e. to repair system files.

Follow these steps :-

  1. Run command prompt with administrative privilege.
  2. Now type this command sfc/scannow and press enter.
  3. After the completion of process, Restart the Computer.

Note :-for sfc/scannow command to work correctly make sure that you have given administrative privilege to command prompt in windows7,8,8.1 and windows vista. But this is not required in earlier version of windows. 
Read More »

How to move post title before blog name


  • Go to Blogger Dashboard >> Template >> Edit HTML.
  • Now search for this code
<title><data:blog.pageTitle/></title>

  • Now replace <title><data:blog.pageTitle/></title> code with following code.
          <b:if cond='data:blog.pageType == "item"'>
<title><data:blog.pageName/> |<data:blog.title/></title>
<b:else/>
<title><data:blog.pageTitle/></title> </b:if>
  • Now save the template and you are done! 
Read More »

Saturday, March 29, 2014

How to get facebook, twitter, youtube followers for free

Yes guys you can get free facebook followers, likers, sharers, and similarly for twitter as well as youtube also. This is a kind of traffic or like exchange site. click this banner to get free followers.

Like-Ex.Com
Read More »

PD-Proxy Bandwidth limit reached solution

PD-Proxy is the one of the best and most used VPN( Virtual Provate Network) around the world. Well, PD-Proxy trial has maximum of 100 mb/account per day for downloading and uploading. after using 100mb, bandwidth limit reaches in a trial account, So you need to upgrade your account to use more data and you also won't have any limit for using it, But you have to pay extra $5 per month.
In a trial account after using 100mb suddenly PD-Proxy disconnects and message occurs saying,

                                              Bandwidth limit reached!
     Please upgrade your account to premium to continue browsing!
                   Tunnel successfully connected!


Solution to the bandwidth limit reached in PD-Proxy:-

  1. First Download Volumeid.exe from here(It is an official program from microsoft ).
  2. Now extract and copy it to the C:\windows\system32 folder.
  3. Run command prompt with administrator privilage.
  4. type volumeid.exe C: xxxx-xxxx ( where x represents any number) (eg. volumeid.exe C: 5345-3435) and press enter.
  5. If you are doing this for first time a new popup window will open accept the license from microsoft.
  6. Exit the command prompt and restart the computer.
Now you can use again PD-Proxy after bandwidth limit reached. And make sure PD-Proxy account should be an another account not the same which has been reached its limit. Now enjoy surfing the internet.
Read More »

Sunday, March 23, 2014

How to remove showing posts with label on blogger


  • Go to Blogger Template >> Edit HTML and Search for the below code
<b:includable id='status-message'>
  • Now Expand the code and replace with the below code.
<b:includable id='status-message'>
<b:if cond='data:navMessage'>
<div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>

  • And save it.
Read More »

How to remove subscribe to post atom

  • Go to Blogger Template >>Edit HTML and press ctrl+F and serach for this code 
<b:include data='feedLinks' name='feedLinksBody'/>
  • Now remove the above code and save it
Read More »

How to add Read more Post on Blogger


  • Go to Blooger Template >> Edit Html and Press ctrl+f and type this code <data:post.body/> and hit enter twice and replace this with below code.

<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<div expr:id='&quot;summary&quot; + data:post.id'><data:post.body/></div>
  <script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);</script>
<span class='readmore' style='float:right'><a expr:href='data:post.url'>Read More &#187;</a></span></b:if></b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/></b:if>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'><data:post.body/></b:if>

  • Now search for </head> and just above </head> Paste the below code.
<script type='text/javascript'>
posts_no_thumb_sum = 490;
posts_thumb_sum = 400;
img_thumb_height = 120;
img_thumb_width = 120;
</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 = posts_no_thumb_sum;
if(img.length>=1) {
imgtag = '<span class="posts-thumb" style="float:left; margin-right: 5px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = posts_thumb_sum;
}
var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}
//]]>
</script>
  • And save it.

Read More »