Weather Widget for Website & Blog

Wednesday, June 16, 2010
Having the latest weather updates on your blog keep your site alive and fresh for your visitors. The easiest way to show off your local weather forecast on your website is with weather widgets, which can easily be implemented in your blog. Each weather widget displays the temperature, wind details, and much more.

Ibegin Weather Widget
Just enter your City, Zip Code, or State to show your local weather forecast. This weather widget will show the current weather and weather forecast with small icons.

 
WeatherBugWidget
This WeatherBug widget comes in multiple sizes which display your local weather forecast.
50x250, 180x150, 160x600, 300x250 , 125x125 and 728x90.
 

Weather.com Live Weather Widget
Another nice weather widget  by Weather.com, which can easily be implemented in the sidebar of your blog!
 
WidgetBox Weather Widgets
Choose from a large selection of widgets to show of your local weather.
 
WeatherReports Widget
Lets you choose the theme of your weather widget.

How to Add these Widgets to your Blog?
Please take note that all of the widgets above can easily be implemented into your blog. These weather widgets are for Blogger, WordPress, Typepad, and all the other blogging platforms. Go to the website and customize the widget, then copy and paste the HTML code into your blog. Then you're done! If you have any questions, please feel free to leave a comment below.
READ MORE - Weather Widget for Website & Blog

Spinning Cloud Tag Label

Friday, October 23, 2009
"Blogumus" is an Flash based tag cloud widget which uses scripts converted from Roy Tanck's WP Cumulus plugin for Wordpress. I fell in love with Roy's original Cumulus plugin when I saw it, and simply had to learn how to convert this for use in Blogger powered blogs. The result is the widget you can see in action at the top of this post. Hover your mouse over the Flash object to see the animation begin.

In this post, I'll explain how you can add Blogumus to your own Blogger layout with ease!

Update: Improved Widget Code
I have updated the code required to run this widget to activate links in the tag cloud Flash movie. If you have already installed Blogumus, please replace your widget code with the new updated code, or reference the additional lines to modify your existing installation.

How it works
This widget uses a combination of JavaScript and Flash animation to parse and display your blog labels. Once installed in your template, it should work "out of the box" without any additional tweaking required, though of course you may prefer to change the variables for color, background and size if appropriate :)

You should also be able to move the Label Cloud widget through the Page Elements page of your dashboard if you prefer display in a different layout location.

To see Blogumus in action, both Flash and Javascript must be installed and enabled for your internet browser. However, it does degrade relatively gracefully, and label links will still be clickable (though not animated) for those who do not use JavaScript of Flash (including search engine spiders).

How to install Blogumus in your Blogger layout
Installing Blogumus in your Blogger layout is surprisingly simple! You should only need to copy and paste a section of code to your Blogger template, though any tweaks for the style of display will require some manual editing.

Here are the steps required to install Blogumus in your Blogger layout:

Go to Layout>Edit HTML in your Blogger dashboard, and search for the following line (or similar):

    <b:section class='sidebar' id='sidebar' preferred='yes'>

Immediatly after this line, paste the following section of code:
<b:widget id='Label99' locked='false' title='Labels' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2><data:title/></h2>
</b:if>
<div class='widget-content'>
<script src='http://www.geocities.com/ferdy_giel/Script/LabelCloud.js' type='text/javascript'/>
<div id='flashcontent'>Blogumulus by <a href='http://www.roytanck.com/'>Roy Tanck</a> and <a href='http://www.bloggerbuster.com'>Amanda Fazani</a></div>
<script type='text/javascript'>
var so = new SWFObject(&quot;http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf&quot;, &quot;tagcloud&quot;, &quot;240&quot;, &quot;300&quot;, &quot;7&quot;, &quot;#ffffff&quot;);
// uncomment next line to enable transparency
//so.addParam(&quot;wmode&quot;, &quot;transparent&quot;);
so.addVariable(&quot;tcolor&quot;, &quot;0x333333&quot;);
so.addVariable(&quot;mode&quot;, &quot;tags&quot;);
so.addVariable(&quot;distr&quot;, &quot;true&quot;);
so.addVariable(&quot;tspeed&quot;, &quot;100&quot;);
so.addVariable(&quot;tagcloud&quot;, &quot;<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>&quot;);
so.addParam(&quot;allowScriptAccess&quot;, &quot;always&quot;);
so.write(&quot;flashcontent&quot;);
</script>
<b:include name='quickedit'/>
</div>
</b:includable>
</b:widget>
Then preview your template. If installed correctly, you should see the tag cloud appear in your sidebar. Then you are free to save your template, edit the colors and dimensions as required, or move it to a different location.

That's all!

Customizing Blogumus
In this default installation, Blogumus includes the following preset variables:

    * Width is set to 240px
    * Height is set to 300px;
    * Background color is white
    * Test color is grey
    * Font size is "12"

If you would prefer to make your widget wider, shorter, change the color scheme, etc, you will need to do this by editing various parts of the code. I'll go through these options in the order they appear in the widget code. Editing width and height The variables for width and height are found in this line of the script:

    var so = new SWFObject("http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf", "tagcloud", "240", "300", "7", "#ffffff");

The width (currently 240) is highlighted in red, while the height (300px default) is highlighted in blue. These numerical values specify the width and height in pixels, so you can alter these of you prefer. Editing background color You can change the background color from white to any other color by altering the hex value in the same line:

    var so = new SWFObject("http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf", "tagcloud", "240", "300", "7", "#ffffff");

For example, if you prefer a bright red background, you may replace #ffffff with #ff0000. Take a look at this page for a list of commonly used hex color codes. Alter the color of text By default, the text is set to display as dark grey ( hex value #333333). You can alter this variable in the following line:

    so.addVariable("tcolor", "0x333333");

Be aware that "tcolor" is a Flash variable and doesn't include the usual hash symbol of hex color codes. Be sure to only replace the numbers!. Adjust the font size The maximum font size of tags is specified in this line:

    so.addVariable("tagcloud", "<tags><b:loop values='data:labels' var='label'><a expr:href='data:label.url' style='12'><data:label.name/></a></b:loop></tags>");

You can alter this to ensure tags are displayed in a bigger or smaller font if you prefer by changing "12" to a larger or smaller number. While making any of these changes, you should be able to preview your widget and be certain that your new choice of color, dimensions and background are suitable for your needs.

Credits, support and requirements
Blogumus is based on the original WP Cumulus plugin by Roy Tanck, and was converted for use with Blogger layouts. Please leave the credit links in the widget code intact. These will not be seen by the majority of your blog readers (as they will only display if JavaScript and Flash is not activated) but leaving these links intact is a great way of passing some link love on to Roy for all his hard work, and to inform other Blogger users that they can find the widget codes on this site.

Support/Issues
If you have any problems installing or using this widget, please leave your comments below or direct these to the Blogger Buster forums as Roy will be unable to provide support for installation in Blogger blogs!

Requirements
For Blogumus to display properly in your template, you will need to have Flash Player 7 or higher. You can download the latest Flash Player plugin for your browser from Adobe. I'm not sure that this installation will support special characters as tags (only Latin characters supported at present). If you do experiecce issues with labels displaying incorrectly, please let me know. I'll try to add more support, but have very little experience using Flash!

Your thoughts?
I hope that you enjoy using Blogumus in your own Blogger blogs! Please feel free to share or syndicate this page with your favorite bookmarking service if you think it is worth a mention, or subscribe to the newsfeed to learn of more great Blogger tutorials as they are posted.

READ MORE - Spinning Cloud Tag Label

Domain co.cc configuration

Thursday, October 22, 2009


As you already knew that co.cc is a top level domain which you can get for free. With co.cc, your not only get URLs Forwading but can control the DNS records and CNAME Records. Actually there is 3 functions in co.cc but we'll just discuss what we use it. Before we take this to the bottom you must have an account first in co.cc. After you registered, choose the tab for "Domain Settings". Then select the appropriate Zone Records which is suitable for blogger / blogspot. The trick is:

* In the Host field insert your domain name which is already registered, eg www.yourdomain.co.cc. Do not forget given www.

* For TTL option to let it go.

* On Type option choose CNAME.

* The last, on value column fill with ghs.google.com

The next step is to change your blog configuration.
  
    * Login to your blog then go to Setting-->Publishing.
    * Then choose Switch to Costum Domain.
    * After that click "Already Own Domain"? Switch to advanced setting.
    * And then fill your new domain name on Your Domain column.
    * Finish, Save your setting.

Your domain will active in a few hour until 2 days work. Have fun....
READ MORE - Domain co.cc configuration

YM Status List

Wednesday, October 21, 2009
Below are various ICON for the YM ID Status as Online.


READ MORE - YM Status List

Speed up 20% Your Internet Bandwidth

Monday, October 19, 2009


Do you know if the windows had been taking 20% of our internet bandwidth. Now it's time we take back our 20% bandwidth so we can increase the connection speed. Ok let's take some action ...

1. Open windows start menu then click run or use windows+r button then type “gpedit.msc” (without double quote).

2. On the computer configuration—>administrative template—>click network.

3. Click Qos packet scheduler—->Click 2x limit reservable bandwith—>there said not configured but the truth is: read below.

4. By default windows make our bandwith reserved 20 % for the connection  but we can overide by default configuration.

5. So the trick is to ENABLED reservable bandwith and change the configuration to zero (0) this will make our system speed up the connection by 20%.

6. Click OK then feel the magic.......

READ MORE - Speed up 20% Your Internet Bandwidth

How to put "Read More" on the blog

Thursday, October 15, 2009
Let's get started How to put "Read More" on the blog, yup just like an good old boysband name.... hahahaha...

First of all find EDIT HTML then find the code </head> and put the code below above "</head>" remember above "</head>".

<script type='text/javascript'>
var thumbnail_mode = "float" ;
summary_noimg = 250;
summary_img = 250;
img_thumb_height = 120;
img_thumb_width = 120;
</script>
<script type='text/javascript'>
//<![CDATA[
/******************************************
Auto-readmore link script, version 2.0 (for blogspot) (C)2008 by Anhvo visit http://en.vietwebguide.com to get more cool hacks ********************************************/
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>

When it over, remains on EDIT HTML pages and then give checklist on the Expand Widget Templates and search this code <data:post.body/>. Ctrl+F in Mozilla Firefox Browser to open the search box.



When its done change the code with this one....


<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>
<span class='rmlink' style='float:left'><a expr:href='data:post.url'>READ MORE - <data:post.title/></a></span> </b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'><data:post.body/>
</b:if>

Save and see the result....viola....
READ MORE - How to put "Read More" on the blog

How to Write HTML Code in your blog

It's all about blog, yup sometimes it's make dizzy how to post a good and strong articles. Is there another way to make this thing simple ??? May be there is a way. How about try something different to write a post...Try to write an article or a comment with HTML Style.
Ok then Here's the STEP:
Act 1
Open your browser then surf to http://centricle.com/tools/html-entities.

Act 2 
Put the code that you want to post into the box then press "ENCODE".

Act 3
Copy - Paste all the HTML Code then post it. Simple as it gets........

Whoa thats really awesome don't you think knaaahhhh.....Just trying to make everything simple.....
  
READ MORE - How to Write HTML Code in your blog