How To Add Snow Effect On The Blogger Mouse Cursor Area

Saturday, September 28, 2013

Adding snow effect when you move the mouse cursor will change the look of your blog. here is the effect of fresh snow in your area simple mouse blog. This will make your blog more cold than snow falling from the mouse cursor. Effect is very simple gadget to use. So this is very fast. I tested this effect in Internet Explorer, Mozilla Firefox and many other web browsers. This simple and not flash based image works great! I hope you enjoy using this very cool snow effect gadget. So, let's see how to Add Snow Effect On The Mouse Cursor On The Blog..

 Snow Effect

<script type="text/javascript" src="http://dl.dropboxusercontent.com/s/nrr77jrknp9n11r/01_black_000000_24work.blogspot.com.js"></script><a href="http://24work.blogspot.com/" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" ></a>

Step 1. Login to Your Blogger Account.Go to your Blogger Dashboard. Click on Layout tab from left pane and click on Add a Gadget link. 

Step 2. After click on Add a Gadget link A pop-up box will open now
with many gadget list, Choose HTML/JavaScript from the gadget options by clicking the blue plus sign for that gadget.
 
pop-up window, choose the HTMLJavaScript widget

Step 3. Select 'HTML/Javascript' and add the one of code given below.

Step 4. Now Click On Save 'JavaScript' You are done.



LG Nexus 5 launching with Android 4.4 KitKat

Thursday, September 19, 2013

LG Nexus 5 launching with Android 4.4 KitKat on 14 October?




According to Ausdroid and several other publications around the net, LG and Google will officially be taking the wraps off the LG Nexus 5 and Android 4.4 KitKat on 14 October. The timing makes sense given past Nexus events held by Google in October, but nothing has actually been confirmed by the company.

Past FCC filings noted the Nexus 5 features Qi wireless charging capabilities inside of the back cover, which will allow customers to place their device on a charging stone and forget cords. You'll find LTE bands (unlike the Nexus 4), NFC, Bluetooth 4.0, and of course, CDMA / EVDO rev A, pentaband DC-HSPA+ and quadband GSM / EDGE.

The FCC documents further revealed a 4.96-inch diagonal for display, hence the Nexus 5 name, with a length and width of 131.9 mm x 68.2 mm. A Snapdragon 800 SoC was also mentioned.

With the LG Nexus 5 allegedly getting Android 4.4 KitKat in mid-October, this means other Nexus handsets will follow in subsequent days. Ausdroid says to expect updates in the fragmentation/screen resizing area, Miracast updates, new Gallery Visualisation, new APIs regarding animations, and new notification widgets. Perhaps most notably, the blue default colour scheme found in past versions of Android will be changed to other preset palette colours. 

Of course as we do with all rumours, we suggest you take this one with a healthy grain of salt. At any rate, an October release is sounding more than likely. 

Source: Ausdroid

HOW TO ADD RELATED POSTS WIDGET TO BLOGGER WITH SUMMARY

Wednesday, September 18, 2013

I wrote a previous blog post about How To Add Related Posts Widget To Blogger With Thumbnails.We already know the importance of the widget, but in this tutorial I'll show you the best related posts widget to your blog , If you want to add this widget to your blog please follow me:


1. Go to Blogger Dashboard  --> Template
2. Please! download  a copy of your template
3. Now click on Edit HTML
4. Use Ctrl+F to find </head>
5. Then copy and paste the below code just above/before it ( </head> ):
<script type='text/javascript'>
//<![CDATA[
var relatedTitles = new Array();
var relatedUrls = new Array();
var relatedpSummary = new Array();
var relatedThumb = new Array();
var relatedTitlesNum = 0;

var relatedPostsNum = 4; // number of entries to be shown
var relatedmaxnum = 75; // the number of characters of summary
var relatednoimage = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhME9WIA9ivRWJxo_PluNEri6xSzmY8mKF_9wM0kMII3B_ThqQQq5gZVec5gYqFXUHuBO4m1CQKHRCxxbOetX8sXhvSdGxH828xcAARsqX6x9toVsngf4opXfLqi9JTrSV_I8_h2e-gMH9X/s1600/no_image.jpg"; // default picture for entries with no image

function readpostlabels(json) {
  var entry, postimg, postcontent, cat;
  for (var i = 0; i < json.feed.entry.length; i++) {
    entry = json.feed.entry[i];
    if (i==json.feed.entry.length) { break; }
    relatedTitles[relatedTitlesNum] = entry.title.$t;
    postcontent = "";
    if ("content" in entry) {
      postcontent = entry.content.$t;
    } else if ("summary" in entry) {
      postcontent = entry.summary.$t;
    }
    relatedpSummary[relatedTitlesNum] = removetags(postcontent,relatedmaxnum);
    if ("media$thumbnail" in entry) {
      postimg = entry.media$thumbnail.url;
    } else {
      postimg = relatednoimage;
    }
    relatedThumb[relatedTitlesNum] = postimg;
    for (var k = 0; k < entry.link.length; k++) {
      if (entry.link[k].rel == 'alternate') {
        relatedUrls[relatedTitlesNum] = entry.link[k].href;
        break;
      }
    }
    relatedTitlesNum++;
  }
}
function showrelated() {
  var tmp = new Array(0);
  var tmp2 = new Array(0);
  var tmp3 = new Array(0);
  var tmp4 = new Array(0);
  for(var i = 0; i < relatedUrls.length; i++) {
    if(!contains(tmp, relatedUrls[i])) {
      tmp.length += 1; tmp[tmp.length - 1] = relatedUrls[i];
      tmp2.length += 1; tmp2[tmp2.length - 1] = relatedTitles[i];
      tmp3.length += 1; tmp3[tmp3.length - 1] = relatedpSummary[i];
      tmp4.length += 1; tmp4[tmp4.length - 1] = relatedThumb[i];
    }
  }
  relatedTitles = tmp2; relatedUrls = tmp; relatedpSummary = tmp3; relatedThumb = tmp4;
  for(var i = 0; i < relatedTitles.length; i++){
    var index = Math.floor((relatedTitles.length - 1) * Math.random());
    var tempTitle = relatedTitles[i]; var tempUrls = relatedUrls[i];
    var tempResum = relatedpSummary[i]; var tempImage = relatedThumb[i];
    relatedTitles[i] = relatedTitles[index]; relatedUrls[i] = relatedUrls[index];
    relatedpSummary[i] = relatedpSummary[index]; relatedThumb[i] = relatedThumb[index];
    relatedTitles[index] = tempTitle; relatedUrls[index] = tempUrls;
    relatedpSummary[index] = tempResum; relatedThumb[index] = tempImage;
  }
  var somePosts = 0;
  var r = Math.floor((relatedTitles.length - 1) * Math.random());
  var relsump = r; 
  var output;
  var dirURL = document.URL;

  while (somePosts < relatedPostsNum) {
    if (relatedUrls[r] != dirURL) {

      output = "<div class='relatedsumposts'>";
      output += "<a href='" + relatedUrls[r] + "' rel='nofollow'  target='_self' title='" + relatedTitles[r] + "'><img src='" + relatedThumb[r] + "' /></a>";
      output += "<h6><a href='" + relatedUrls[r] + "' target='_self'>" + relatedTitles[r] + "</a></h6>";
      output += "<p>" + relatedpSummary[r] + " ... </p>";
      output += "</div>";
      document.write(output);
      
      somePosts++;
      if (somePosts == relatedPostsNum) { break; }
    }
    if (r < relatedTitles.length - 1) {

      r++;
    } else {
      
      r = 0;
    }

    if(r==relsump) { break; }
  }
}
function removetags(text,length){
  var pSummary = text.split("<");
  for(var i=0;i<pSummary.length;i++){
    if(pSummary[i].indexOf(">")!=-1){
      pSummary[i] = pSummary[i].substring(pSummary[i].indexOf(">")+1,pSummary[i].length);
    }
  }
  pSummary = pSummary.join("");
  pSummary = pSummary.substring(0,length-1);
  return pSummary;
function contains(a, e) {
  for(var j = 0; j < a.length; j++) if (a[j]==e) return true;
  return false;
}
//]]>
</script>

Note:
- To change the default picture, replace the URL in pink with your own
- For displaying more than 4 posts or less, replace , modify the value in red (4)
To change the number of characters to be shown in posts summary, modify the value in blue (75)
5. Now Search the following code:
<a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if>
6. Just after it, copy and paste the below code:
<b:if cond='data:blog.pageType == &quot;item&quot;'>
    <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=readpostlabels&amp;max-results=50&quot;' type='text/javascript'/>
  </b:if>
7. Now find the following code:
</b:includable>          
                <b:includable id='postQuickEdit' var='post'>
8. Then copy and paste the below code just above/before it
<b:if cond='data:blog.pageType == &quot;item&quot;'>
  <div class='post-footer-line post-footer-line-4'>
    <div id='relatedpostssum'><div style='text-align: left; font-size: 15px; margin-bottom: 10px; font-weight: bold;'>RELATED POSTS</div>
      <script type='text/javascript'>showrelated();</script>
    </div>
    <div style='clear:both;'/>
  </div>
</b:if>
9.  Finally search for this tag:  ]]></b:skin>
10. Add below CSS code just above it,
<relatedsumposts {
  float: left;
  margin: 0px 5px;
  overflow: hidden;
  text-align: center;
  /* width and height of the related posts area */
  width: 120px;
  height: 210px;
}

.relatedsumposts:hover { 
background-color: #F3F3F3; -webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}

.relatedsumposts img:hover {
-khtml-opacity:0.4;
-moz-opacity:0.4;
opacity:0.4;
}

.relatedsumposts a {
  /* link properties */
color: #linkcolor;
  display: inline;
  font-size: 10px;
  line-height: 1;
}
.relatedsumposts img {
  /* thumbnail properties */
margin-top: 2px;
  height: 82px;
  padding: 5px;
  width: 82px;
border: 1px 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);
}
.relatedsumposts h6 {
  /* title properties */
  display: table-cell;
  height: 5em;
  margin: 5px 0 0;
  overflow: hidden;
  padding-bottom: 2px;
  vertical-align: middle;
  width: 130px;
}

.relatedsumposts p {
  /* summary properties */
border-top: 1px dotted #777777;
border-bottom: 1px dotted #777777;
color: #summarycolor;
  font-size: 10px;
  height: 4em;
  line-height: 1;
  margin: 5px 0 0;
  overflow: hidden;
  padding: 5px 0 15px 0;
  text-align: left;
}
Note:
-Modify the values in red to adjust the width (120) and height (210) of the widget area
-Replace #linkcolor with the hex value of your color to change the color of post titles
-To change the size of thumbnails, modify the values marked in pink (82)
-To determine the border roundness, modify the values in green (100)
-To change the color of the post snippet, change #summarycolor with color hex value
11. Now take a preview and save your template.

HOW TO MAKE YOUR BLOG MORE PROFITABLE BY SPEED BLOGGING?

 It is important to consider whether you are blogging productively or non-productively.

HOW TO MAKE YOUR BLOG MORE PROFITABLE BY SPEED BLOGGING?

It is very common for bloggers that sometimes we would just spend a few hours to write a blog post. The longest time I had spent on writing a post was 5 hours. I understand that we wanted to write a post as informative as possible, structured the most beautiful story and tried to use the most appropriate words to explain what we want to say. But frankly, as a blogger, or even a professional blogger it could be a kind of non-productively work.

How to determine whether it is productive?
If you are a professional blogger and you generate income by getting people to your blog and read your stuff, then you must understand that your time is precious. In my own business, there are two things I have learned which is very important if you are trying to make money by blogging. They are…

Blog Daily. Tell others.
It is very easy to understand that we want to create some valuable content to attract more people to read our blog. It doesn’t mean that we should create as much informative content as we can, then more and more people will get in. It doesn’t work like this. Actually, the more work we should do and more time to spend is on Tell others

Of course today we are not going to discuss how to syndicate your blog or building backlinks. I want to talk about how you can shorten the time of writing by using Speed Blogging but at the same time you can still attract people or even more people than writing a post that is full of information.

How to structure a post by speed blogging?
There is a few ways you can construct posts really fast and at the same time arouse noise. Well at least you are writing something that are most of the people talking about.

Alex.com – What’s Hot
“Alexa is perhaps best known for the Alexa Rank - our website ranking system which tracks over 30 million websites worldwide. The Alexa Rank and other metrics allow site owners to benchmark their sites and give consumers, marketers and advertisers metrics to evaluate websites for media buying, partnerships, and other business opportunities.

Alexa's traffic estimates are based on a diverse sample of millions of worldwide internet users using thousands of different types of toolbars and add-ons for Google Chrome, Firefox, and Internet Explorer.”

Need not to emphasize the authority of Alex.com here. But not many people know that actually they can find the hottest topic on internet by accessing the Alex.com – What’s Hot. What you need to do is to go to http://Alexa.com/whatshot/ to find out the most popular topic that are on the web right now.
You can just choose a topic that you are interested to write about. Describe what it is happening, talk about how you feel or your opinions. Relate to your product if it is possible. Then a post can be easily composed and attract the most people at the same time. Remember, even you are attracting people who may not be interested into your niche, but the more traffic you get the higher your blog can be ranked in Google search result. That’s mean it eventually helps you to attract more people and let more people to be able to search your blog!!

YouTube Charts
Again, YouTube Charts is another channel you can find the most popular videos that people are watching in the world. You can simply find some videos that are popular, related to your niche and sometimes entertaining to post on your blog. Talk about the video, give some comments on it and add some related keywords on the post. Then you can compose a hot, may be entertaining and attractive post really quick. You can go tohttp://www.YouTube.com/charts to find those videos.

Some may say “I don’t want my blog to be entertaining, I want to be a professional, informative, serious and boring blogger.” Well, it depends on whether you want more people to know your stuff or you just want to bury your blog and only you know it is valuable. 

Of course I am not telling you to write some non-sense articles only to attract traffic. Try to find some topic that you can tweak a little bit so that it could be related to your business or your niche. That will be making sense so much more!!

Quote from others
Another really simple method that I always use is to quote from others. Most of the time you don’t need to write all the things by your own hand. You can quote other people’s stuff to fill with content. Just like the paragraph I write about Alexa.com above, I just quote it from the main site of Alexa.com. It can save you much time!! Or sometimes if you could find some good article on web or on Facebook, you could just quote a few paragraphs that you think it is interest or related to your niche. Again, write about how you feel, tweak a little bit to relate to your business. Then you can create another Speed Blogging post really quick!

Limit yourself to finish a post within 30 mins.
In my perspective, the best practice of writing blog is to limit yourself to write each blog post within 30 mins, so that you can finish 2 posts within an hour. You could write one more entertaining and the other one more informative. Then you can spend the rest of your time to do social syndication.

Of course it doesn’t mean that you can’t write something you really love or passionate about with more time. But you gotta bear in mind that this is not productive and thus it would become less profitable in your day. Or you may merely do this in your spare time.


Thank you for stay with me and read till here. I hope this information could really help. Let me know how you think about this!! Leave comments here and share it if you think this is cool.

HOW DO YOU KNOW THE PRICE OF YOUR WEBSITE OR BLOG?

Did you search about the price of your website or blog?, If you do not ; today you will try that, domainvalue.congland.com offers you this service for free, And You can knowing the level of your site if you are thinking of selling in the future.

The Website:



To republish or change date of your old posts

Sunday, September 15, 2013

I'm writing this post after a long break and here its about 'How to republish your blog posts' or 'How to change the date of your already published blog posts'.

You may be a serious blogger writing about many things in your blog. After sometime all those posts will be added to archives and can be visited through searches only. By using this simple trick you can change the date of your old post and can get it on your home page.
To republish or change date of your old posts
  1. Go to Dashboard
  2. Edit Post / New Post
  3. Post Settings (Right side)
  4. Click on Schedule
  5. after change Click on "Done"

Now, change the date in the 'Set date and time' box to current date and click on publish post. Now this older post will be published as a new one on your blog home page.