06 April 2009

Kode Smiley Untuk Facbook Chat | Smiley Code for Facebook message


Frequently message with a friend on facebook? certainly feel that there is less than when we use yahoo messenger message that have a lot of smileys (emoticons). In fact also have a facebook smiley enough that just a lot of facebook users who do not know the code to display the smiley is. How fun to chat with a friend on facebook please add the code-facebook smiley code below:






example of screenshoot




READ MORE - Kode Smiley Untuk Facbook Chat | Smiley Code for Facebook message

Membuat Label Dengan Scroll | Label Technique Using Scroll

Before the tutorial, the friend must have been close to first know more about the label to make it easy friend, in trying this tutorial. After labeling technique with cloud let go with the technique scroll.

How do I create one?

First you read this, if not yet know how to install the label.

* Click Menu Layout / Layout.

* Click Edit Menu HTML

* Click Edit HTML -> Previous backup first friend first template by clicking the Download Full Template. So that when the error occurred can be started again..


* Click Expand Widget Templates

* People looking for the following code:


<b:widget id='Label1' locked='false' title='KATEGORI ARTIKEL' type='Label'>



* Or, search the title, namely: ARTICLE CATEGORY

* The information here:


<b:widget id='Label1' locked='false' title='KATEGORI ARTIKEL' type='Label'>
<b:includable id='main'>
<b:if cond='data:title'>
<h2> <data:title/> </ H2>
</ b: if>
<div class='widget-content'>
<div style='overflow:auto; width:ancho; height:100px;'>
<ul>
<b:loop values='data:labels' var='label'>
<li>
<b:if cond='data:blog.url == data:label.url'>
<data:label.name/>
<b:else/>
<a expr:href='data:label.url'> <data:label.name/> </ a>
</ b: if>
(<data:label.count/>)
</ li>
</ b: loop>
</ ul>
</ div>
<b:include name='quickedit'/>
</ div>
</ b: includable>
</ b: widget>


* The red is the code that must be added in the script.

* Replace paper 'ARTICLE CATEGORY' title with a label that you apply

* People can change the height: 100px with the desired level.

* The result here:


A little tutorial from me, hopefully useful



READ MORE - Membuat Label Dengan Scroll | Label Technique Using Scroll

The Growth Phenomenon Bands in Indonesia

It's exuberant indonesia's music industry at this time, not necessarily separated from the people we love in music from original songs of own performers. Radio and TV stations as the media is a barometer of the music itself, at this time is dominated by songs local singer/band of indonesia. some even there the radio station that 100% that only plays indonesian songs.

This moment would like to take advantage of the by the musicians who have used/old exist in the music of indonesia to continue to create works that more progress for quality indonesia's music in general. and of newcomers, both as a soloist, duo, group/band, such as race want to be able to penetrate music competition in indonesia.

One thing that the ordinary happens, in a competition that is sure to win and lose. who have survived (exist) and have a sink. all that does not mean the band stand is it have a good skill and quality, and the less the band is drowned ago it is bad or standard. but many factors determine a band/singer that can survive and or exist in the music industry.

Promotion, is the most important journey in a band/singer to popular and success. the more often we witness a band/singer on TV, hear music in many radio stations, see the banner, etc, that is almost always present in every event of music, internet, and all forms of media that can be used as means of promotion, then indirectly a band/singer image will be entered into our brain memory. and we will be automatically created for the curious to know their music in the future. and finally, just a taste of music each of us will like the band or not it is. and at least we get, the band that it is present.

For the band/performers who want to establish a new all of that, not only enough willpower and seriousness only. many things that need to be cooked and the concept of capital is relatively bolster. can not be denied, the funds necessary to cut through bureaucracy that is complex things in indonesia. alternative steps as may be, we can move in the path of Indie Music. more container for the works of bands newcomers who move in the path of Indie. a kind of festival events, audition for compilation album, demo track, and of course in the internet.

Hopefully, The growth so many new bands in indonesia this phenomenon is not just right. but this revolution is the triumph of music to the indonesia's music in the future.
READ MORE - The Growth Phenomenon Bands in Indonesia

05 April 2009

Related Post Cantik Menaikan Pageview | Related Post Beautiful to Increase Pageviews

Related articles related to post or alias posting on the same category and a link is a list of other related articles which are linked because in the category or the same label. Almost all bloggers have been installed, but it has to optimize your installation associated with the function that also considers the beauty of factors that increase page view?





Related to the post you can ease on your blog readers find articles of a kind of interest. To have gained increasing function related post have the attributes below:


1. No Mess, Because healthy people will surely like the cleanliness and tidiness
2. Appearance to attract attention, give you a light color also attract attention, but has integrates with the overall color blog?
3. There is a certain effect when the mouse is highlighted, this is also associated with the two-point "recruit" alias search attention.
4. Placement in the right, because I never tried to put the first related post in the sidebar and this turns out to be less effective because of less note. Or placement that is too down also less effective, because it is too far from the article.

If not meet the above criteria, means not exploit the maximum optimization in the high page views.

Related posts that I mean like the picture below:





Please try to have under the original, try shot your mouse on the area related post, what you see?, And many related articles if it is not will lengthwise down as the train. But will appear on the right scroll box.

How do I install? Follow the following explanation:

If you have not installed the previous related post:
Find the code below on your template, remember the previous checkbox "Expand Widget Templates". <p> <data:post.body/> </ p> that already met please copy the following code and paste the code line.


<b:if cond='data:blog.pageType == "item"'>
<H2> Related Articles: </ H2>
<div Class='rbbox'>
<div Style='margin:0; padding:10px;height:200px;overflow:auto;border:1px solid #ccc;'>
<div Id='albri'/>
<script Type='text/javascript'>
homeUrl3 var = "<data:blog.homepageUrl/>";
maxNumberOfPostsPerLabel var = 4;
maxNumberOfLabels var = 10;
maxNumberOfPostsPerLabel = 100;
maxNumberOfLabels = 3;
listEntries10 function (json) (
var ul = document.createElement ( 'ul');
var maxPosts = (json.feed.entry.length <= maxNumberOfPostsPerLabel)?
json.feed.entry.length: maxNumberOfPostsPerLabel;
for (var i = 0; i <maxPosts; i + +) (
var entry = json.feed.entry [i];
var alturl;
for (var k = 0; k <entry.link.length; k + +) (
if (entry.link [k]. rel == 'alternate') (
alturl = entry.link [k]. href;
break;
)
)
var li = document.createElement ( 'li');
var a = document.createElement ( 'a');
a.href = alturl;
if (a.href! = location.href) (
var txt = document.createTextNode (entry.title. $ t);
a.appendChild (txt);
li.appendChild (a);
ul.appendChild (li);
)
)
for (var l = 0; l <json.feed.link.length; l + +) (
if (json.feed.link [l]. rel == 'alternate') (
var raw = json.feed.link [l]. href;
var label = raw.substr (homeUrl3.length +13);
var k;
for (k = 0; k <20; k + +) label = label.replace ( "% 20", "");
var txt = document.createTextNode (label);
var h = document.createElement ( 'b');
h.appendChild (txt);
var div1 = document.createElement ( 'div');
div1.appendChild (h);
div1.appendChild (ul);
document.getElementById ( 'albri'). appendChild (div1);
)
)
)
search10 function (query, label) (
var script = document.createElement ( 'script');
script.setAttribute ( 'src', query + 'feeds/posts/default/- /'
+ + Label
'? alt = json-in-script & callback = listEntries10');
script.setAttribute ( 'type', 'text / javascript');
document.documentElement.firstChild.appendChild (script);
)
var labelArray = new Array ();
numLabel var = 0;
<b:loop values='data:posts' var='post'>
<b:loop values='data:post.labels' var='label'>
textLabel = "<data:label.name/>";
var test = 0;
for (var i = 0; i <labelArray.length; i + +)
if (labelArray [i] == textLabel) test = 1;
if (test == 0) (
labelArray.push (textLabel);
var maxLabels = (labelArray.length <= maxNumberOfLabels)?
labelArray.length: maxNumberOfLabels;
if (numLabel <maxLabels) (
search10 (homeUrl3, textLabel);
numLabel + +;
)
)
</ b: loop>
</ b: loop>
</ SCRIPT>
</ Div>
<script type="text/javascript"> RelPost ();</ script>
</ Div>
</ b: if>


If you are searching for more, please code below:


]]></ b: skin>


If you already meet the copy code below and paste "over" code ]]></ b: skin> earlier.


/*-----------------------------
post code related optimal
visit http://www.trik-tipsblog.blogspot.com
------------------------------*/
. rbbox (border: 1px solid rgb (192, 192, 192); padding: 5px;
background-color: # f0f0f0;-moz-border-radius: 5px; margin: 5px;)
. rbbox: hover (background-color: rgb (255, 255, 255);)


Then copy the code below and paste "under the" code ]]></ b: skin> earlier:


<script Src='http://triktipsblog.fileave.com/kodescript.js' type='text/javascript'/>


If it is stored please template. See the results by opening the one you article.

Source : atheonsoft
READ MORE - Related Post Cantik Menaikan Pageview | Related Post Beautiful to Increase Pageviews

04 April 2009

Tool to Increase traffic blog 100% free

I walk and find about how to increase web Traffic. Try to come to all or TrafficG Click here for short. The tool is useful for anyone who has a blog / web and want to Blog Traffic (Traffic blog / web) increased.

Try it out and the list, you may blog traffic can be high and increase the benefits you blog. Click Here for a list TrafficG 100% Register free or you can click on the banner in this below:




or fill the registration form directly from this blog:










































TrafficG -- Free WebSite
Promotion!
 

Firstname :


Lastname :


Email :


Username :


Password :


 



Visit
TrafficG Now



how are you all interested in the list are immediately!
READ MORE - Tool to Increase traffic blog 100% free