BuzzBadge: Google
Showing posts with label Google. Show all posts
Showing posts with label Google. Show all posts

Tuesday, January 09, 2007

Buzzing Legendary Google Phone!

Finally, Google Phone is here!

Google is partnering with Samsung to release "Google Phone". In fact, it is a Samsung phone packed with Google's applications:

Beginning in early 2007, selected Samsung phones will be provided with a range of GoogleTM products and services aimed to create a more dynamic user experience, including:

  • GoogleTM search: Samsung handsets will include a GoogleTM icon in the application menu, providing users with one-click access to GoogleTM search
  • Google MapsTM for mobile: Also featured on Samsung handsets will be Google MapsTM for mobile, an application that enables users to view maps and satellite imagery, find local businesses, and get driving directions when they're on the go
  • GmailTM: GmailTM for mobile devices, a new application that brings more speed, convenience, and functionality to the mobile GmailTM experience, will also be available on Samsung handsets
Found via: Google's Press and Digg

I am thinking Google is not only a search engine marketing company. It is doing a lot of other ventures including conquering the stars!

Monday, January 08, 2007

BuzzBadge To Textalyser

Search Engine Optimization With Textalyser



Textalyser is a text analyzer tool that can help you improve the keyword density of your blog post for the purpose of search engine optimization.

We know how important it is to apply Search Engine Optimization each of the blog post. The normal Search Engine Optimization guideline is to have one main keyword and many related keywords in a blog post. In addition to that, we have to include the main keyword into the title of the blog post, as well as stating the main keyword as least once in the opening paragraph and closing paragraph. To further enhance the effect and help Google to understand what we are trying to talk about, we should repeat the main keyword a few times within the body of the blog post, as well as using related keywords often enough.

Alright! I will copy and paste the above paragraph into Textalyser and let's see how Textalyser analyzes the above paragraph:

The analysis is long, but this interests me:

2 word phrases frequency :

ExpressionExpression count FrequencyProminence
main keyword43.6%50
blog post43.6%54.5
the main32.7%42
the blog32.7%50.5
of the32.7%51.4
well as21.8%27.9
as well21.8%28.8
post as21.8%29.7
related keywords21.8%37.8
engine optimization21.8%87.4
is to21.8%87.8
search engine21.8%88.3

3 word phrases frequency :

ExpressionExpression count FrequencyProminence
the main keyword32.7%41.5
the blog post32.7%50
of the blog32.7%50.9
as well as21.8%28.2
post as well21.8%29.1
blog post as21.8%30
search engine optimization21.8%88.2

Looking at the table above alone gives us a hint on what the topic is talking about. It has good density of "search engine", "engine optimization", "search engine optimization", "main keyword", "related keyword"...

When Google's spider comes across this paragraph, it will know that I am talking about search engine optimization for blog. See how easy it is to search engine optimize your own blog post? It gets easier when you can see through the eyes of the spiders!

BuzzBadge goes to Textalyser!

Tuesday, October 17, 2006

How to: Add Google Video Bar to Blogger Beta



Following the promise on a BuzzBadge given to Google Video Bar, Here is the full guide on how to insert a Google Video Bar into your Blogger Beta blog (thanks to GSVideoBar Solution). First of all, I must declare that I am not a programmer nor a coder. I am just an average blogger who knows a bit of code here and there. So, I am not going to explain in detail how each element or piece of code work (I don't understand them) and I assume that you know a little bit of HTML and CSS.

Before I start, here are the references that might help you clear some doubts. I managed to insert the Google Video Bar into this blog by putting their codes together:

  1. Google Video Bar Sample
  2. Google Video Search Solution
  3. Google Ajax Search API
  4. Video Bar on Google API Blog
Seriously, if you are a coder, you don't need this newbie guide (and please don't laugh at my code-ignorance). If you are NOT a coder, do not read the references above yet, you will get scared (what happened to me).

Add Google Video Bar to Blogger Beta


Step 1: Get your API key ready
API is not scary. You don't need to understand what's an API key to make this work. I don't. But you need to have your very own API key. Ok, the Video Bar will fetch videos to your blog and display them as a list of thumbnails. In order for it to search and fetch the videos, you have to give it a key to enter the database (am I right?). Go here to signup for your API key. It is easy.

Step 2: Create a Widget to hold Javascript
This is easy too. Go to Template >> Edit HTML, scroll down to almost the end, find
<div id='header-wrapper'>
<b:section class='header' id='header' maxwidgets='1'>


Change maxwidgets='1' to maxwidgets='2'.

This will allow you to create a page element which you can then add a javascript element to hold the script.

Step 3: Load API key and Search Solution
This step is straight forward. Go to Template>> Page Elements, you will now see a new place to add page element, that's in your header. Click 'Add a Page Element', select 'HTML/JavaScript'. In the popup box, leave title to be blank, copy and paste this into the content:


<script src="http://www.google.com/uds/api?file=uds.js&v=1.0&key=YOUR-KEY" type="text/javascript"></script>
<link href="http://www.google.com/uds/css.gsearch.css.css" rel="stylesheet" type="text/css"/>
<script src="http://www.google.com/uds/solutions/videobar/gsvideobar.js" type="text/javascript"></script>
<link href="http://www.google.com/uds/solutions/videobar/gsvideobar.css" rel="stylesheet" type="text/css"/>

<script type="text/javascript">
function OnLoad() {
var vbr;
var options = {
largeResultSet : true
}
vbr = new GSvideoBar(
document.getElementById("videoBar"),
document.getElementById("videoPlayer"),
options
);
vbr.execute("VW GTI");
}
</script>


See that vbr.execute? Replace "VW GTI" with the tag of the videos you want.

Replace 'YOUR-KEY' in the codes above with the Google Search API you just signed up for. Save the Page Element.

Step 4: Insert the CSS
Insert this into your CSS section:

#videoBar {
width : 160px;
margin-right: 5px;
margin-left: 5px;
margin-top:100px;
padding-top : 4px;
padding-right : 4px;
padding-left : 4px;
padding-bottom : 0px;
float: left;
}

You may do some styling if you know CSS.

Step 5: Show me the Video!
Go to Template >> Edit HTML, change <body> to <body onload="OnLoad()">

Then, below the widget code you entered just now, insert these lines:


<div id="videoBar">Loading...</div>
<div id="videoPlayer">Loading...</div>


This will tell the video bar and video player to load. Don't worry about video bar's position, you can adjust it in the CSS you entered just now. However, you may want to change where the player will load. Move the div with videoPlayer id to any place in your template you want the player to show.

That's it! Hope it works for you!

technorati tags:
del.ico.us tags:
icerocket tags:

BuzzBadge to Google Video Bar



Google's Ajax Search API has enabled the flexibility of creating wonderful widgets and enhancements to a website. Specifically, today's BuzzBadge is given to Google Video Bar.

I just spent few hours learning how to get Google Video Bar to display on BuzzBadge. Look to your left, do you see a video bar containing Google Videos? That's it! Try click on a video, a player (Ajaxed) will appear on top of the main post section to play the selected video. You can pre-define the videos for the search API to fetch into the Video Bar by specifying the keyword. Of course, you can also make links (a javascript with your keyword in it) on your page that will ask the search API to fetch another sets of videos matching your keyword.

Sounds interesting? It is not hard at all to include some codes into your template that will do the trick. I will write an article on how to include Google Video Bar in Blogger Beta template in a while. Mean while, play with the Video Bar on your left. To hide the video player, click "i'm done watching". This is the beauty of Ajax: it does not need to refresh the page to process your request.

Update: Here's the guide on how to include Google Video Bar

technorati tags:
del.ico.us tags:
icerocket tags:

Friday, October 13, 2006

BuzzBadge to Google



Google does not need my BuzzBadge. I need Google's buzz. I am awarding BuzzBadge to Google because it has helped me a lot in my quest to find the gems in the sea of web pages. It is doing a marvelous job indeed.

Interestingly, if you do a search for "search engine" on Google, the first result turns out to be altavista.com. Now you know Google does not discriminate.

Google has become the most used search engine because of its ultra-sophisticated search algorithm that is able to rank pages so well. A little search on the algorithm tells me that Google does not reveal the algorithm. However, search engine optimizers agree that the algorithm can be grouped into two categories, namely, on-page factors and off-page factors.

On-page factors include meta keywords, description, title of the page, the URL, keyword density, related keywords (recent popular Latent Semantic Indexing).

Off-page factors? It has been rumored that Google tracks thousands of off-page factors, such as the time a visitor spend on a page, a random visitor's browsing behavior, the number of in-pointing links to a website, how often does a visitor return... these are just some of the guesses, Google does not reveal them.

Google's recent acquisition of YouTube proves its courage (copyright infringement is a big issue with YouTube). However, Google might have found a way to get away. The punishment on Napster does not happen to Kazaa.

Hats off to Google.

technorati tags:
del.ico.us tags:
icerocket tags: