>> GreenByte.info By Nick Tong (quiksilv) | Supported by: TalkWebSolutions.co.uk

Search the rainbow with Google

Google have just released a great new feature to their image search, you can now search via a color tone and image type! Find out more here:

[More]


Block sublinks in google search results

If you are lucky enough to have a site with lots of traffic you may well have noticed that when you search for your site in Google you have sublinks appear showing your most popular site content.

This is all well and good but sometimes the sublinks just don't quite fit. Well to solve this you can use Google webmaster tools to fix is:

To block a sitelink, first ensure that you have verified ownership of the site. Then:

1. On the Webmaster Tools Dashboard, click the site you want. 2. Under Links, click Sitelinks. If we have sitelinks information for your site, we'll display a list of sitelinks. 3. Click Block next to the sitelink you want to remove. Please let us know why you want to block the sitelink - it will help us improve the way we generate and display sitelinks.

ref: http://www.google.com/support/webmasters/bin/answer.py?answer=47334&topic=8523

Note: Once you've blocked or unblocked a sitelink, it can take some time for your changes to be visible.


Google and outlook calendars

I got told by a colleague the other day that they received an email from Google reminding them of a meeting we had. Not knowing how this happened I looked into it. It appears that because my email is hosted with Google apps, that any events that I send out form outlook are automatically added to my Google Calendar, this then emails them with reminders.

I actually thought this was rather cool.

REF: https://www.google.com/a/


Ask Gmail: "What emails have I had today?"

I have several filters in my Gmail account, which helps me control my email lists etc. The problem though is sometimes it can take a while to click on my filter folders (labels) to check my mail. Sometimes I just want to say, 'Show me mail I've got today'

Well it's as simple as this:

[More]

Google data center search tool

Have you ever had a problem where a client can't see any changes to there placement in Googles ranking. Apart from clients possibly being logged into there personalised Google search account, the most likely cause is because Google have yet to push out to the latest index to the data centre your clients searching against (Google have lots of different data centers and indexes). To help you see any difference you can use this website http://www.mcdar.net/dance/index.php which will allow you to check all of the data centers for comparison.

Thanks to Mark NG for pointing this out.

Google tabs up

No Google hasn't started smoking (a tab is slang for a cigarette here in the UK) but they have put tabs on the personalised homepage.

What this enables you to do is organize you home content more effectively.

You can add up to six tabs, drag and drop modules to and form them and edit their names. Each tab has a different color but as yet your can't change that.

I think this is a smart move by Google; what are peoples thoughts?

Using Google Reader and RSS.cfc to aggregate feeds

I'm not sure how others aggregate blog/news feeds etc but I've found an easy (and somewhat simple) way to aggregate feeds using Google reader and Ray Camdens rss.cfc.

All you do is create an account with Google reader and then start adding the feeds you want to aggregate. Add your tags to the feeds i.e. cfEclipse, FuseBox etc and make your feed public. The public feed that you create here will be what we need to grab the data in Ray rss.cfc.

Once you're happy with all your feeds in Google create a page called feeds.cfm - make sure that rss.cfc is in the same folder as this page [or invoke the cfc some other way (recommended)].

Then use this code in feeds.cfm

<cfset myRssFeed = "YourGoogleFeedURL" />
<cfhttp method="get" url="#myRssFeed#" />
<cfset rssObj = createObject("component", "rss");
<cfset request.feed = rssObj.getEntries(cfhttp.FileContent) />

<h1>My Feed</h1>
<cfoutput query="request.feed">
   <h2><a href="#request.feed.link#" title="#request.feed.title#">#request.feed.title#</a></h2>
   <cfif len(request.feed.description)>
      <p>#request.feed.description#</p>
   <cfelse>
      <p>No description available</p>
   </cfif>
</cfoutput>

One thing you will have to do is update line 537 in rss.cfc to this:

<cfif structKeyExists(arguments.xmlData.feed.xmlAttributes,"version")>
         <cfset result.type = "Atom">
         <cfset result.version = arguments.xmlData.feed.xmlAttributes.version>
      <cfelseif structKeyExists(arguments.xmlData.feed.xmlAttributes,"xmlns:gr")>
         <cfset result.type = "Atom">
         <cfset result.version = 2.0>
      </cfif>
This is a bit of a hack but the Google feeds don't have a version number in the returned XML.

Cool huh?

Check out the feed page on cfFrameworks.com to see it in action.

Google Groups has been pimped - beta

If you take a look at groups.google.com you'll see the same old website - it's not your rich google experance you get with Google reader, Gmail etc. Well it looks like changes are ahead.

[More]

Google reader gets a face lift

Google reader is great - i use it on a lot of my sites to aggregate feeds - as you can see from the feeds page on this site. That aside the new interface that google has come up with has:

* Expanded view and list view

* Simplified sharing functionality

* Improved read-state management

* Infinite scrolling

* Unread counts

* Mark all as read

* and a bunch more...

Check it out at http://google.com/reader/

The new interface takes a little while to get used around but once you do (30 seconds later) it's nice.

A quick tutorial:

Google move into the music arena

Google have had out for a little while now a music trends website which is part of their trends web presence. I think it's a smart move by Google, not that they need more currency but its an industry well doused in cash.

They collect the data from their talk app. When you opt-in to Music Trends from Google Talk's Settings you pass Google your track information. Anytime you share your music status using iTunes ® , Winamp, Windows Media ® Player, or Yahoo Music Engine ™ , you'll be voting on Google Music Trends.

What's nice about the site is that you can search for the lyrics from the song details area as well as purchase from iTunes, Napster and AOL (using google music search).

You can narrow your search by genre and country; although the trends are currently only working in a few counties.

More Entries

BlogCFC was created by Raymond Camden. This blog is running version 5.5.1.