Saturday, December 27, 2014

How to add a responsive Recent Comment widget with avatars on blogger

Recent comments widget displays visitors the recent discussion on your website, More professional bloggers have added these kinds of recent comment widget on their blogs to make more professional, Today i am going to share the responsive or flexible or stylish recent comment widget to make your blogs more professional, Lets go through it.
recent comment
Step 1:- Go to Blogger Dashboard >> layout and click on 'Add a gadget' Link.

Step 2:- New pop up window will appear then scroll down the window and choose 'HTML/Javascript' optoin.

Step 3:- Now copy and paste the following code.

<div class='widget-content'>
<style type="text/css">
.rc{padding-left:24px; padding-top: 6px;}
.rc a:hover {color: #F3903E;text-decoration: none;}
.rc-ico{margin-left:-20px;margin-top:4px;float:left; margin-right:3px}
.rc-ico img {margin-top: -2px;margin-right:5px; border: 2px solid #fff;-webkit-border-radius: 100px;-moz-border-radius: 100px;border-radius: 100px;-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out; }
.rc-ico img:hover {-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);}
.rc-header{font-size: 13px;}
.rc-header a{}
.rc-body{font-style: italic; font-size:11px;padding: 0px 4px 1px 10px;border: 1px solid transparent;}
.rc-footer{font-size:11px; float: right;}
#rcw-cr {font-family: Arial,Tahoma;font-size:9px;padding-top:7px;display:block;}
</style>
<script type="text/javascript">
var numRecentComments = 5;
var maxCommentChars = 67;
var trueAvatars = true;
var urlMyAvatar = '';
var urlMyProfile = 'false';
var cropAvatar = true;
var sizeAvatar = 50;
var urlNoAvatar = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh5kBAKq-gJ5f0P0eJTCP3naUTGwGUHbzyRb3yOVQcqHorKX-EDZ3qcAI_7RPNs553pMSNk4n9qCkQDGpg-pRObjtfkqrrzwaMfInHtnGV9UntRQxPdB3Qn89X22mzFhiKkfh4sR5i78S1f/"+sizeAvatar+"/anonymous-Icon.jpg";
var urlAnoAvatar = 'http://www.gravatar.com/avatar/00000000000000000000000000000000?d=mm&s=' + sizeAvatar;
var txtMore = '';
var txtWrote = 'commented:';
var txtAnonymous = '';
var maxResultsComments = "";
var numPerPost = 2;
var maxPostTitleChars = 40;
var getTitles = true;
var maxResultsPosts = "";
var txtTooltip = '[user] on &quot;[title]&quot; - [date MM-dd-yyyy hh:mm]';
var urlToTitle = {};
function replaceVars(text, user, title, date) {
text = text.replace('[user]', user);
text = text.replace('[date]', date.toLocaleDateString());
text = text.replace('[datetime]', date.toLocaleString());
text = text.replace('[time]', date.toLocaleTimeString());
text = text.replace('[title]', title.replace(/\"/g,'&quot;'));
var i = text.indexOf("[date ");
if(i > -1) {
var format = /\[date\s+(.+?)\]/.exec(text)[1];
if(format != '') {
var txtDate = format.replace(/yyyy/i, date.getFullYear());
txtDate = txtDate.replace(/yy/i, date.getFullYear().toString().slice(-2));
txtDate = txtDate.replace("MM", String("0"+(date.getMonth()+1)).slice(-2));
txtDate = txtDate.replace("mm", String("0"+date.getMinutes()).slice(-2));
txtDate = txtDate.replace("ss", String("0"+date.getSeconds()).slice(-2));
txtDate = txtDate.replace("dd", String("0"+date.getDate()).slice(-2));
//or: txtDate = txtDate.replace("dd", date.getDate());
txtDate = txtDate.replace("hh", String("0"+date.getHours()).slice(-2));
//or: txtDate = txtDate.replace("hh", date.getHours());
text = text.replace(/\[date\s+(.+?)\]/, txtDate)
}
}
return text;
}
if(urlMyProfile == "") {
var elements = document.getElementsByTagName("*");
var expr = /(^| )profile-link( |$)/;
for(var i=0 ; i<elements.length ; i++)
if(expr.test(elements[i].className)) {
urlMyProfile = elements[i].href;
break;
}
}
function getPostUrlsForComments(json) {
for(var i = 0 ; i < json.feed.entry.length ; i++ ) {
var entry = json.feed.entry[i];
for (var k = 0; k < entry.link.length; k++ ) {
if (entry.link[k].rel == 'alternate') {
href = entry.link[k].href;
break;
}
}
urlToTitle[href] = entry.title.$t;
}
}
function showRecentComments(json) {
var postHandled = {};
var j = 0;
if(numPerPost) {
while(numPerPost < numRecentComments) {
for(var i = 0 ; i < json.feed.entry.length ; i++ ) {
var entry = json.feed.entry[i]; if(entry.author[0].name.$t=="Blogger User") continue;
if(entry["thr$in-reply-to"]) {
if(!postHandled[entry["thr$in-reply-to"].href])
postHandled[entry["thr$in-reply-to"].href] = 1;
else
postHandled[entry["thr$in-reply-to"].href]++;
if(postHandled[entry["thr$in-reply-to"].href] <= numPerPost)
j++;
}
}
if(j >= numRecentComments)
break;
numPerPost++;
j = 0;
postHandled = {};
}
if(numRecentComments == numPerPost)
numPerPost = 0;
}
postHandled = {};
j = 0;
for(var i = 0 ; j < numRecentComments && i < json.feed.entry.length ; i++ ) {
var entry = json.feed.entry[i]; if(entry.author[0].name.$t=="Blogger User") continue;
if(numPerPost && postHandled[entry["thr$in-reply-to"].href] && postHandled[entry["thr$in-reply-to"].href] >= numPerPost)
continue;
if(entry["thr$in-reply-to"]) {
if(!postHandled[entry["thr$in-reply-to"].href])
postHandled[entry["thr$in-reply-to"].href] = 1;
else
postHandled[entry["thr$in-reply-to"].href]++;
j++;
var href='';
for (var k = 0; k < entry.link.length; k++ ) {
if (entry.link[k].rel == 'alternate') {
href = entry.link[k].href;
break;
}
}
if(href=='') {j--; continue; }
var hrefPost = href.split("?")[0];
var comment = "";
if("content" in entry) comment = entry.content.$t;
else comment = entry.summary.$t;
comment = comment.replace(/<br[^>]*>/ig, " ");
comment = comment.replace(/<\S[^>]*>/g, "");
var postTitle="-";
if(urlToTitle[hrefPost]) postTitle=urlToTitle[hrefPost];
else {
if(hrefPost.match(/\/([^/]*)\.html/)) postTitle = hrefPost.match(/\/([^/]*)\.html/)[1].replace(/_\d{2}$/, "");
postTitle = postTitle.replace(/-/g," ");
postTitle = postTitle[0].toUpperCase() + postTitle.slice(1);
}
if(maxPostTitleChars && postTitle.length > maxPostTitleChars) {
postTitle = postTitle.substring(0, maxPostTitleChars);
var indexBreak = postTitle.lastIndexOf(" ");
postTitle = postTitle.substring(0, indexBreak) + "...";
}
var authorName = entry.author[0].name.$t;
var authorUri = "";
if(entry.author[0].uri && entry.author[0].uri.$t != "")
authorUri = entry.author[0].uri.$t;
var avaimg = urlAnoAvatar;
var bloggerprofile = "http://www.blogger.com/profile/";
if(trueAvatars && entry.author[0].gd$image && entry.author[0].gd$image.src && authorUri.substr(0,bloggerprofile.length) == bloggerprofile)
avaimg = entry.author[0].gd$image.src;
else {
var parseurl = document.createElement('a');
if(authorUri != "") {
parseurl.href = authorUri;
avaimg = 'http://www.google.com/s2/favicons?domain=' + parseurl.hostname;
}
}
if(urlMyProfile != "" && authorUri == urlMyProfile && urlMyAvatar != "")
avaimg = urlMyAvatar;
if(avaimg == "http://img2.blogblog.com/img/b16-rounded.gif" && urlNoAvatar != "")
avaimg = urlNoAvatar;
var newsize="s"+sizeAvatar;
avaimg = avaimg.replace(/\/s\d\d+-c\//, "/"+newsize+"-c/");
if(cropAvatar) newsize+="-c";
avaimg = avaimg.replace(/\/s\d\d+(-c){0,1}\//, "/"+newsize+"/");
if(authorName == 'Anonymous' && txtAnonymous != '' && avaimg == urlAnoAvatar)
authorName = txtAnonymous;
var imgcode = '<img height="'+sizeAvatar+'" width="'+sizeAvatar+'" title="'+authorName+'" src="'+avaimg+'" />';
if (authorUri!="") imgcode = '<a href="'+authorUri+'">'+imgcode+'</a>';
var clsAdmin = "";
if(urlMyProfile != "" && authorUri == urlMyProfile)
clsAdmin = " rc-admin";
var datePart = entry.published.$t.match(/\d+/g); // assume ISO 8601
var cmtDate = new Date(datePart[0],datePart[1]-1,datePart[2],datePart[3],datePart[4],datePart[5]);
var txtHeader = txtWrote;
if(txtWrote.indexOf('[')==-1)
txtHeader = authorName + ' ' + txtWrote;
else
txtHeader = replaceVars(txtHeader, authorName, postTitle, cmtDate);
var tooltip = replaceVars(txtTooltip, authorName, postTitle, cmtDate);
if(!/#/.test(href)) href += "#comments";
document.write('<div title="'+tooltip+'" class="rc'+clsAdmin+'">');
document.write('<div title="'+tooltip+'" class="rc-header'+clsAdmin+'"><div title="'+tooltip+'" class="rc-ico'+clsAdmin+'">'+imgcode+'</div><a title="'+tooltip+'" href="' + href + '">' + txtHeader + ' </a></div>');
if(comment.length < maxCommentChars)
document.write('<div title="'+tooltip+'" class="rc-body'+clsAdmin+'">' + comment + '</div>');
else {
comment = comment.substring(0, maxCommentChars);
var indexBreak = comment.lastIndexOf(" ");
comment = comment.substring(0, indexBreak);
document.write('<div title="'+tooltip+'" class="rc-body'+clsAdmin+'">' + comment + '...</div>');
if(txtMore != "") {
var moretext = replaceVars(txtMore, authorName, postTitle, cmtDate);
document.write('<div title="'+tooltip+'" class="rc-footer'+clsAdmin+'"><a title="'+tooltip+'" href="' + href + '">' + moretext + '</a></div>');
}
}
document.write('<div style="clear:both;"></div></div>');
}
}
}
if(getTitles)
document.write('<script type="text/javascript" src="http://'+window.location.hostname+'/feeds/posts/summary?redirect=false'+maxResultsPosts+'&alt=json-in-script&callback=getPostUrlsForComments"></'+'script>');
document.write('<script type="text/javascript" src="http://'+window.location.hostname+'/feeds/comments/default?redirect=false'+maxResultsComments+'&alt=json-in-script&callback=showRecentComments"></'+'script>');
</script></div>

Step 4:- Now lets customize it.

- Change 5 from var numRecentComments = 5; in above code that you want to show number of comments on your blog.

Step 5:- Now save the Gadget and enjoy !


Read More »

Thursday, December 25, 2014

Check out Google’s Most Popular Searches Of 2014

As for the top person searched worldwide in 2014, Jennifer Lawrence edged out Kim Kardashian. If that’s because of the photo hack in August, then maybe the internet is broken after all.


Walmart was the most-searched location, followed by Starbucks. The top athlete searches were for Ray Rice followed by Adrian Peterson. The overall top U.S. searches provide a very accurate snapshot of the news and culture over the past 12 months:

10. Ukraine
9. “Frozen”
8. Ferguson
7. ISIS
6. ALS Ice Bucket Challenge
5. Flappy Bird
4. Malaysia Airlines (there were also over 200 million searches for “mh370″)
3. Ebola
2. World Cup
1. Robin Williams
Read More »

Simple Recent Post Widget for Blogger without Thumbnail and Post Title only

Simple Recent Post Widget for Blogger without Thumbnail and Post Title only

Blogger blogging Platform actually does have a built-in Feature to show recent posts But lets do with manually adding HTML/JAVAScript Recent post widget to your blogger blog, but how?

Here is the Solution:
Recent Post Widget

Step 1:- Login to you Blogger Dashboard
Step 2:- Go to Layout and Add Gadget link anywhere you want to show recent post.
Step 3:- Now new pop up window will appear and scroll down then copy and paste below code.

 <div id="hlrpsb">
<script style="text/javascript" src="http://helplogger.googlecode.com/svn/trunk/recent-posts-with-titles-only.js"></script>
<script style="text/javascript">var numposts = 10;var showpostdate = false;var showpostsummary = false;var numchars = 100;var standardstyling = true;</script>
<script src="http://blog-address.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=showrecentposts"></script></div><a style="font-size: 9px; color: #CECECE; float: right; margin: 5px;" href="http://startingphaseofc.blogspot.com/2014/12/simple-recent-post-widget-for-blogger.html" rel="nofollow" >Recent Posts Widget</a>
<noscript>Oops! Make sure JavaScript is enabled in your browser.</noscript>
<style type=text/css>
#hlrpsb a {color: #0B3861; font-size: 13px;}
#rpdr, #rpdr a {color:#808080;}
.bbrecpost2 {
padding-top:6px;
padding-bottom:6px;
border-bottom: 1px #cccccc dotted; }
</style>

 Step 4:- Customize the script.

- Change http://blog-address.com with you blog address.
- Change 10 to desired number of posts you want to display.

Step 5:- Now Save the Widget and Enjoy !

Read More »

What to do Before Applying for Google Adsense ?

Nowadays, There are loads of people blogging and it seems that, everyone wants to make money from blogging and starts to search Advertiser for their blogs or websites and founds that Google adsense is one of the most essential platform for avertising advertisement by the publisher so we want to join or apply for the adsense, some people may get accepted and some may get rejected.

Google adsense does not accepts every blogs or websites for publishing their ads, first we have to prepair fully before applying into adsense. here are the some tips to get not rejected by the google adsense.


how to get approved adsense acccount ?

Have a good content:- If your blogs or websites do not have a enough or sufficient content, google adsense will not accept, So write sufficient contents that will be enough to review by them. Writting must be neat, professionally and grammatically correct otherwise it will give them the excuse to toss out your application

Read Google Policies:- You must have to read Google Policies before applying this whether your blogs or websites follows their rules or not.

You Detail Information:- Post about your minimum information so that they can easily finds you and your information by Creating About Us Page, Contact Us Page, Privacy Policy Page etc.

Good Traffic:- Your blogs or websites must have a good traffics from the search engines like, Google, Yahoo, Bing and etc, otherwise your application may get rejected.

Enough Posts:- Your blogs or websites must have a minimum of 40 posts and you need to post regularly.

Use Clean Theme or Template:- Clean Themes or Templates make easy to review your website by them which may increase the chance to accept the adsense account.

You must keep above all thins on your mind then apply for the adsense, Have a good time..
Read More »

Saturday, November 15, 2014

How to Add a Stylish Download Button Link on Blogger and Website ?

As we all know that, Blogger is the well known and mostly used blogging platform among all the Blogging platform. Nowadays We can see the all popular Blogger blog is customized with responsively, so that visitors can be easily attracted to the sites.
Stylish Button Link also is the most important to make blog responsive.
Here I am providing most attractive CSS button links for your website or a blogger blog. If you provide free stuff to download, you can use these button links in your blogger blog or website.

How to add Stylish Download Button Links

1. Login to your Blogger Dashboard
2. Go to Template Section
3. Click on Backup/Restore (Always backup your template before making any changes)
4. Now Edit Html and click anywhere at HTML section and press Ctrl+f to find,

]]></b:skin>
5. Now just before or above the ]]></b:skin> Paste the Below code.

/***FIRST STYLE THE BUTTON***/
input#bigbutton {
width:500px;
background: #3e9cbf; /*the colour of the button*/
padding: 8px 14px 10px; /*apply some padding inside the button*/
border:1px solid #3e9cbf; /*required or the default border for the browser will appear*/
cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
/*style the text*/
font-size:1.5em;
font-family:Oswald, sans-serif; /*Oswald is available from http://www.google.com/webfonts/specimen/Oswald*/
letter-spacing:.1em;
text-shadow: 0 -1px 0px rgba(0, 0, 0, 0.3); /*give the text a shadow - doesn't appear in Opera 12.02 or earlier*/
color: #fff;
/*use box-shadow to give the button some depth - see cssdemos.tupence.co.uk/box-shadow.htm#demo7 for more info on this technique*/
-webkit-box-shadow: inset 0px 1px 0px #3e9cbf, 0px 5px 0px 0px #205c73, 0px 10px 5px #999;
-moz-box-shadow: inset 0px 1px 0px #3e9cbf, 0px 5px 0px 0px #205c73, 0px 10px 5px #999;
box-shadow: inset 0px 1px 0px #3e9cbf, 0px 5px 0px 0px #205c73, 0px 10px 5px #999;
/*give the corners a small curve*/
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}

6. Save the template.
7. Now Copy this code everytime where you want to put Stylish Button Link on your post and save or publish the post and check the post.
<a href="donwload-link" target="_blank"><input id="gobutton" type="submit" value="Download" /></a>


Now you are done.

Note:-

  • Change download-link with your original download link.
Read More »

Saturday, November 8, 2014

Android 5.0 Lollipop Everything you should Know about it!


The Android 5.0 which is famously know as Android Lollipop is the latest update of Android. The Android is world’s famous Operating system of mobile devices, which is owned by Google. Since, there are many updates which Google has released for Android, and each update got some exciting changes. Additionally, the same exciting changes have been linked with Android 5.0 Lollipop too.

Android 5.0 lollipop, Reviews, AndroidTherefore, today we are going to write a detail review on Android 5.0 Lollipop which is going to make you acquaint with each and every feature with it. We are going to describe each and every important feature of this version of Android. It is equipped with some awesome tools and applications which are ensuring best user interface.

We are sure that after going through it’s detailed specs, you are going to love this update of Android. Since, it is a complete pack for you guys. Therefore, without wasting much of your time, you are requested to go through the below features, specs and supported device section, to learn and explore more about Android 5.0 Lollipop.

Android 5.0 Lollipop Supported Devices
Whenever, we talk about any latest update then there comes some restrictions too. Since, the Android 5.0 Lollipop is the latest update and equipped one too, so it can be handled by some devices not all. Since, it is kind of unbridled horse, which can be handled by some latest gadgets. So, we have listed the all devices which support Android 5.0 lollipop and Android lollipop runs awesome on them.

Moto X 1 Generation and Moto X 2nd Generation
Moto G 1 Generation, Moto G 2nd Generation and Moto G with 4G LTE
Droid Ultra
Droid Maxx
Droid Mini
Moto E
Sony Xperia Z
Sony Xperia Z Ultra
Sony Xperia ZL
Sony Xperia Tablet Z
Sony Xperia Z1
Sony Xperia Z1S
Sony Xperia Z2
Sony Xperia Z2 Tablet
Sony Xperia Z3
Sony Xperia Z3v
Sony Xperia Z3 Compact and Z3 Tablet Compact
Nexus 4
Nexus 5
Nexus 7 1st Generation and 2nd Generation
Nexus 10
HTC One M7, M8, Mini, Mini 2

This is the list which we have officially got till now. Ones, the list is updated we’ll share the updated supported device as well.

Android 5.0 Lollipop-Features
So, here comes the features part which will make you amaze and you will love to have this update on your devices for sure. We have mentioned each and every feature of it in a brief and a straight way.

Android 5.0 lollipop, reviews

The Android 5.0 Lollipop can be installed not only on your Smartphones, but also on your Tablets and wearable Gadgets like; Android Wearable watches
It gives you continuity options which means you can resume your left task easily
It is equipped and integrated with fluid purposeful motion which means your touch respond to you in easy way. The touching experience is more advanced, soft and comfortable in Android 5.0 Lollipop
It shows your inbox along with the message you open, which is creating more ease for you to read out the important messages from the same screen without going back to the inbox
You can set certain notification to important one then you will receive them right on your lock screen and you don’t need to go into the Control Panel of your device to check out the notifications
The Battery Saver feature of it is simply awesome, since, it extends your battery life up to 90 minutes. Additionally, it charges your cell phone much faster than ever before
The Android 5.0 Lollipop is more secure and protected. The SELinux is enforcing for all applications to make them protected from Vulnerabilities and malwares
It includes some awesome UI interface, colorful designs and it has got some awesome eye catching shadows and effects

The Lollipop is equipped with more advanced sharing feature which enables you to share devices. It also includes the guest user feature, which will allow any other to use your phone but not your stuffs which makes you more secure and protected
The power efficient scanning is enabled for Bluetooth Low Energy (BLE) and new BLE peripheral mode

It supports 64 Bit SoCs using ARM, x86 and MIPS-based cores.
It gives you awesome realtime experience that was never possible with Android, it gives you best audio results and also supports the USB microphones and speakers
The photography option is really incredible with Android 5.0 Lollipop which allows you to capture full resolution frames around 30 FPS, it supports raw formats and it also captures metadata
The Android TV is also enabled with this update which supports your living area devices
There are more than 68 Languages which are supported with it
Additionally, there are many more awesome and incredible feature which compels you to have this update on your device for sure.

Conclusion
This was all about Android 5.0 Lollipop which you are supposed to know about. I am sure that most of the blurred things related to Android have been cleared now. If you want to share your experience related to Android 5.0 then do share it, we will welcome your thoughts and experience.

However, if you have found this article helpful and clean. Then do not forget to share this article with your friends and circle. As your share may help any of your friend who is confused about Android 5.0 Lollipop and your share may eliminate his/her confusion.

Read More »

Friday, October 24, 2014

How to Embed Dailymotion Private Videos?

Dailymotion is one of the most popular video database website just like Youtube.

Dailymotion Users can upload on its server's database as well as can download the videos from the server.

Dailymotion has also same features just like youtube such that videos can be uploaded privately as well as publicly. But there is different between uploading videos privately and publicly.

Videos uploaded publicly can be easily embedded through its watch page, but there will no option to embed, if a videos are private.

So, here i am for sharing this tips to embed dailymotion private videos.

Step 1:- First go to the private video link (eg. http://www.dailymotion.com/video/k1OrUPl69PnL9p99696 )

Step 2:- Now copy the same text as colored in red from your private videos link.

Step 3:- here is the embedded source

<iframe frameborder="0" width="630" height="420" src="http://www.dailymotion.com/embed/video/here-is-your video?syndication=111525?logo=0&autoPlay=1&quality=720"></iframe>

Step 4:- Now replace here-is-your video with your copied text in above step 1.


Now you are done... 

You can also embed the all Dailymotion videos with above steps.
Read More »

Friday, October 3, 2014

How to stop Blogger Blog from redirecting to country-specific URLs

Blogger and Country-Specific Domains

My traffic logs suggest that country-specific redirection in Blogger is now live in at least 15 countries. Here’s a complete list:

India [blogspot.in], Australia [blogspot.com.au], UK [blogspot.co.uk], Japan [blogspot.jp], New Zealand [blogspot.co.nz], Canada [blogspot.ca], Germany [blogspot.de], Italy [blogspot.it], France [blogspot.fr], Sweden [blogspot.se], Spain [blogspot.com.es], Portugal [blogspot.pt], Brazil [blogspot.com.br], Argentina [blogspot.com.ar], Mexico [blogspot.mx]

This country-specific URLs make a negative impression to the site linking and Ranking of a site.

How to Stop Blogger from Redirecting to Country-Specific Domains ?

1. First Go to Blogger Dashboard >> Template  >> Edit HTML

2. Now Search for the <head> tag using Ctrl+f.

3. Now copy the below code just after <head> tag.

<script type="text/javascript">
var blog = document.location.hostname.split(".");
if (blog[blog.length - 1] != "com") {
var ncr = "http://" + blog[0] + ".blogspot.com/ncr";
window.location.replace(ncr + document.location.pathname);
}
</script>


4. Now save the template and you are done.

Read More »

Thursday, October 2, 2014

Download and install microsoft windows 10 technical preview


Microsoft has developed the Windows 10 just after windows 8.1, skipping windows 9.

Windows 10 Technical Preview in now available for Download from microsoft official website, It is a technical preview thus keep in mind that it is not a stable version of operating system.

Download and install windows 10 technical Preview.

1. Download either 64 bit or 32 bit version of windows 10 technical preview.

 64 bit version of windows 10 technical preview
32 bit version of windows 10 technical preview

If you still confused about 32 bit or 64 bit, download from an alternative link

Product Key for Windows 10 technical Preview: NKJFK-GPHP7-G8C3J-P6JXR-HQRJR

The files you will be downloaded in an ISO format, so burn that ISO image to DVD drive or Pen Drive from Power ISO.

If you feel any dificulties, just comment us below.

Read More »

Wednesday, October 1, 2014

How to redirect Blogger 404 Error Page (Page Not Found) to Homepage

Most of the Bloggers starts their blog from Blogger Platform and starts posting number of articles.

Sometime, you may have changed the URL, then indexed URL on search engines forward visitors to the old URL, this automatically redirects to the 404 page.

Sometime, it may also happen when the visitors misspelled the URL.

When you have a popular blog this make negative impression to the blogs because of not clicking back and homepage button and leaves the site forever. Now we have to redirect 404 Error page to Homepage and this will make the good impression and greatest potential  users of our blog.


How to redirect 404 Error page to Homepage?

Step 1:- First Go to Blogger Dashboard >> Setting >> Search Preference >> Custom Page Not Found.



















Step 2:- Now copy the below code to the Empty Box.

Sorry, the page you're looking for in this blog does not exist.
You will be redirected to homepage shortly.
<script type = "text/javascript">
BSPNF_redirect = setTimeout(function() {
location.pathname= "/"
}, 7000);
</script>
now click on save changes.

Note:-

In my case, I have used 7000, which means you will be redirected to Homepage in 7 seconds.

Read More »

Tuesday, September 30, 2014

Microsoft announced windows 10 Skips windows 9

Update:- September 30, 2014


Microsoft has just announced its next version of Windows, It is Windows 10 on San Francisco.

Microsoft Windows 10 will be run on different devices from smartphones and tablets to PCs and Xbox games consoles, with applications sold from a single store.


Features:-
  • Resizable tiles.
  • Much more User's Favorite applications.
  • Quick view of notification from weather, facebook, email, etc.

The company said the facility was intended to make the software seem familiar to both users of Windows 8 and Windows 7.


Read More »

How to automatically Redirect Blogger Blog(blogspot) to another blog or Domain


We may have created lots of blog and some of them are now popular with good traffics, Now we want to merge both blogspot sites to get double traffics from both blogs, at that time we have to take a 302 Redirection.

When this to use:-


  • This will be useful when you have added the custom domain with new platform like Wordpress.

  • This will be very useful when you have the broken links and 404 pages.

  • This will be useful when you have many popular blogs with good traffics, now you want to migrate all of those blog.
There are 2 kinds of 302 Redirection,  Redirection of Specific Pages, Redirection of Whole Blog, and Redirection in a specific time.

How to redirect automatically blog or blog's pages to another blog or domain?

Go to Blogger Dashboard >> Template >> Edit HTML.
Now search ( Ctrl+f) for </head> tag.

If you want to redirect whole blog copy the below code just above the </head> tag.


1
<script type='text/javascript'>
2
  var d='<data:blog.url/>';

3
  d=d.replace(/.*\/\/[^\/]*/, '');
4
  location.href = 'http://startingphaseofc.blogspot.com';

5
</script>

change http://startingphaseofc.blogspot.com  with your own URL, Then save the template and you are done.

If you want to redirect Specific Page copy the below code just above </head> tag.

1
<script>

2
if(window.location.href == 'http://yourblog.blogspot.com/pages')

3
{

4
window.location="http://startingphaseofc.blogspot.com";

5
}

6
</script>

Remember, Change http://yourblog.blogspot.com/pages with your source URL and http://startingphaseofc.blogspot.com with your Destination URL. then save the template and you are done.

If you want to redirect your blog to another blog or domain in specific time, copy the below code just above the </head> tag.

1
<meta content='5;url=http://startingphaseofc.blogspot.com' http-equiv='refresh'/>

Now remember  http://startingphaseofc.blogspot.com with your Destination URL then save the tempalte and you are done.

If you find this article helpful, Please Response............

Read More »

Sunday, August 24, 2014

How to share internet connection from windows 7, 8 through command line (or prompt)

Nowadays Internet has become the most important and entertained part of our life, Everybody uses internet not only in home but also in outside of the home like Bus station, College, School, Office and many more.... with the help of wifi (wireless fidelity). But what happens if there is no such a devices like wifi router to share an internet connection. As we all know Computer has a fast internet connection rather than mobile phones. But today we are on the topic about to make your computer as a wifi hotspot or sharing fast internet connection from your computer to another wifi supportable devices like smart phones, tab, etc. This can easily solved with concept of Wireless Hosted Network was introduced in windows 7 from Microsoft windows. Now we are on the steps to make your computer as a wifi hotspot through command line with simple steps.



STEPS:-

  • First Run Command Prompt with administrative privilege.


  • Now Type netsh wlan show drivers, You will see pic like this and check whether your computer supports hosted network or not, If yes, it supports else it doesn't.




  • Now Type this command netsh wlan set hostednetwork mode=allow ssid=hotspotname key=password (You can change hostpotname and password with your own).




  • Now at last, Type this command netsh wlan start hostednetwork then you will see pic like this.




  • Now your computer is made as a wifi hotspot, but we still need to do simple and quick work for internet connection.
  • Now go to control panel >> Network and sharing center. And click on the Active internet connection and go to properties and sharing tab and  check the box "Allow other network users to connect through this computer's internet connection"and select the network connection name that is used by your hotspot. 


  • Now you are done....
  • You can stop it by command line. Go to command line and type this command netsh wlan stop hostednetwork.

Enjoy..........

Still having problems ?

Read More »

Flat Mag Responsive Blogger Template


LIVE DEMO           DOWNLOAD

Flat Mag Responsive Blogger Template is a multi-purpose straight Blogger template precisely designed for multimedia, news bulletin, Entertainment and Technology blogs. With elegant green color scheme, Fla tMag gives you visitors the experience of their life as they go though the responsive and flexible design. It has a lot of useful and key widgets, which come which are ready-to-use from the time this template is installed on your blog. Following are the few key features we have incorporated in this responsive blogger theme.



  • Responsive Design:It has responsive design which automatically fits different resolutions i.e. iPad, iPod, Android and etc. (Try resizing the page of your browser and see the magic). This theme is coded so perfectly that it is highly responsive in even Internet Explorer.
  • Breadcrumbs: The most amazing widget we have in this template is Breadcrumbs for humans. It has nothing to do with SEO. The breadcrumbs would only display parent categories of the article so users can easily search your site in depth.
  • Sticky Header with Drop down Menu: In this theme, we have used “Sticky” drop down menu, but a lot of users demanded for a Multi Drop Down menu which could work on three different sub levels. Keeping that in mind, we have added a “Sticky”, Multi-level Drop down menu in this theme. On the top of that the header of this theme is also sticky.
  • Author Bio Widget: The next new thing, which we have added in the template, is the “Author Bio” widget that appears in each and every post. Anyone can customize it, according to their needs. Keep in mind it is not for multiple authors.
  • Featured Label Posts: Just like our previous themes, we have also added a featured post display in this theme, which gives a user the flexibility to easily display posts through a certain Label on home and archive pages. To learn how to install this feature, kindly check the guidance below.
  • More Features: Back to Top button, 4 columns Footer, 3 columns Template, Threaded commenting system, related posts, Ads ready, SEO Friendly and much more.



  • Read More »

    Saturday, August 23, 2014

    Spike Responsive Blogger template


                                    LIVE DEMO                                                           DOWNLOAD


     Template Features:
    Blogger, Email Subscription Widget Ready, Unique, Seo Ready, Black, 4 Columns Footer, Responsive, Magazine, Page Navigation Menu, Gray, Clean, Simple, White, Ads Ready, Post Thumbnails, Drop down Menu, 1 Right Sidebar, 2 Columns, 1 Sidebar, Right Sidebar.
    Read More »

    Friday, August 22, 2014

    Rocket blogger template

    Rocket Template

    • Template Name :- Rocket Blogger Template.
    • Author :- Sorat Templates.
    • Designer :-Kopasoft.
    • Release Date :- April 2013.
    • Features :- 3 Columns, Magazine, Featured Content Slider, Fixed Width, Dropdown Menu, Social Widget, Gray Background, Page Navigation Widget.
    It is little bit of modified version of Rocket Blogger template with sticky navbar.


    Configure Dropdown menu:-

    • Go to Blogger dashboard >> Template >> Edit HTML. Now scroll down following code and replace it with your links.

    <nav class='main-nav'>
     <span class='menu-icon'>Menu</span>
     <ul id='main-menu'>
       <li class='current-menu-item'><a href='/'>    Home</a></li>
     <li><a href='/search/label/Tricks'>Tricks</a>
     <ul>
     <li><a href='/search/label/Android'>Android</a></li>
     <li><a href='/search/label/Internet'>Internet</a></li>
     <li><a href='/search/label/Computer'>Windows</a></li>
     <li><a href='#'>Element page</a></li>
     <li><a href='#'>Typography page</a></li>
     <li><a href='#'>404 page</a></li>
     <li><a href='#'>Contact page</a></li>
     </ul>
     </li>
     <li><a href=''>Programming</a>
     <ul>
     <li><a href='/search/label/C'>C Coding</a></li>
     <li><a href='/search/label/C%20Plus%20Plus'>C++ Coding</a></li>
     <li><a href='#'>Visual Basic</a></li>
     <li><a href='#'>Element page</a></li>
     <li><a href='#'>Typography page</a></li>
     <li><a href='#'>404 page</a></li>
     <li><a href='#'>Contact page</a></li>
     </ul>
     </li>
     <li><a href='/search/label/blogging%20tips'>Blogging Tips</a></li>
     <li><a href='/search/label/NepaliBand'>Nepali Music</a></li>
     <li><a href='/search/label/Earn%20money'>Earning Tips</a></li>
     <li><a href='#'>Blogger Template</a></li>
       <li><a href='/p/about-me.html'>About</a></li>
     <li><a href='/p/contact-form-contact-us-to-contact-us.html'>Contact</a></li>
       <li><a href='/p/forum.html'>Discuss</a></li>
     </ul>
     <div class='divider-menu'><span/></div>
    </nav>
    <div class='clear'/>
    </div>
    </div>


    Read More »

    Sunday, June 1, 2014

    What did the world Search for in 2013 in Google

    Read More »

    Saturday, May 31, 2014

    Use Twitter for free on Ncell


    Ncell is the Top GSM Operator in Nepal and providing great services and offers, Now Ncell is offering Free Twitter Service just like the Free Wikipedia, But This is (Free Twitter) is a limited offer, it will be validated till August 26, 2014 or unless you terminated this service manually before 26th of August.

    How to Use Free Twitter without any cost?
    Ncell is providing free twitter service which means you can use twitter for free using an official Twitter apps or via mobile.twitter.com totally without any charge and you don't even required to do activation for this service.

    What can I do in Twitter?
    Twitter is one of the top social networking sites, you can tweet your thoughts, read your friends’ tweets in the timeline, send direct message, follow or unfollow someone and do many more things.

    Can I use this offer using operamini?
    No, you can not use this service via operamini, Blackberry phone and any other proxy services just like in Free Wikipedia service.

    Note: Clicking or visiting external links from Twiiter will charge the costs according to the data plan.
    Read More »

    Wednesday, May 28, 2014

    Google Changed Its Logo This Weekend and You Didn't Even Notice



    If you are browsing (or surfing) the internet at all this pass weekend, I think you didn't have noticed  that Google Logo is changed,  there's a good chance you came across Google's ubiquitous logo at some point during your travels. What you didn't notice, however, is the fact that Google adjusted the letters in its logo ever so slightly—and it actually makes a pretty huge difference.  

    Great to see people notice and appreciate even single-pixel changes — we tweaked the logo a little while ago to make sure it looks its sharpest regardless of your screen resolution.

    Read More »

    Tuesday, May 27, 2014

    Top 5 Higher Grosser Movies of alltime world wide

    1. Avatar  (2009)

    Gross Collection Worldwide: $2,782,275,172

    Director: James Cameron
    Produced by:
    James Cameron
    Jon Landau
    Writer: James Cameron
    Starring:
    Sam Worthington
    Zoe Saldana
    Stephen Lang
    Michelle Rodriguez
    Sigourney Weaver


    2. Titanic (1997) 

    Gross Collection Worldwide: $2,186,772,302

    Director: James Cameron
    Produced by
    James Cameron
    Jon Landau
    Writer: James Cameron
    Starring
    Leonardo DiCaprio, Kate Winslet, Billy Zane, Kathy Bates, Frances Fisher, Bernard Hill, Jonathan Hyde, Danny Nucci, David Warner, Bill Paxton



    3. The Avengers (2012)

    Gross Collection Worldwide: $1,518,594,910

    Director: Joss Whedon
    Producer: Kevin Feige
    Story by
    Zak Penn
    Joss Whedon
    Starring
    Robert Downey, Jr., Chris Evans, Mark Ruffalo, Chris Hemsworth, Scarlett Johansson, Jeremy Renner, Tom Hiddleston, Clark Gregg, Cobie Smulders, Stellan Skarsgård, Samuel L. Jackson




    4. Harry Potter and the Deathly Hallows: Part 2 (2011)

    Gross Collection Worldwide: $1,341,511,219

    Director: David Yates
    Produced by
    David Heyman
    David Barron
    J. K. Rowling
    Screenplay: Steve Kloves
    Starring
    Daniel Radcliffe, Rupert Grint, Emma Watson



    5. Iron Man Three (2013)

    Gross Collection Worldwide: $1,215,439,994

    Director: Shane Black
    Producer: Kevin Feige
    Screenplay by
    Drew Pearce
    Shane Black
    Starring
    Robert Downey, Jr., Gwyneth Paltrow, Don Cheadle, Guy Pearce, Rebecca Hall, Stephanie Szostak, James Badge Dale, Jon Favreau, Ben Kingsley
    Read More »