New theme is a go
Well, it has been a while since I posted something meaty, I’ve been kinda doing a lot of micro-blogging and tinkering with other things like my Privacy Check for Facebook, so haven’t really had time to sit down and write a decent post.
Of course as soon as I did sit down to write something, I got hideously distracted with the idea of creating a new theme for my blog…
Luckily due to some very handy tools, it did not take nearly as long to finish off my new theme as it could have.
First up Blueprint CSS, this is a fantastic CSS framework. I used it for contactprotocol.org and for my Privacy Check for Facebook app so it was a no brainer to use for the theme. If you are not a hard-core webcoder then this is the easiest way to put together a good looking website that just works.
Next up: jQuery, which, is a fantastic Javascript framework. I’m really getting to grips with it and there is no way I would ever build another site without using a Javascript framework of some kind.
For instance I have a lot of code examples on the blog. These I format into <pre> blocks so that they are easier to read. Problem is that they are often very wide and would get cut off with this new theme. A bit of digging around on the web and little bit of Javascript and we have the following; a code block that expands when you hover the mouse over the it. Here is an example (and the actually code):
//this code finds all pre tags and makes them expand on hover
//code has been formatted to be extra wide to demonstrate the effect
$('div.entry').find('pre').wrapInner('').hover(function()
{
var contentwidth = $(this).contents().width();
var blockwidth = $(this).width();
if(contentwidth > blockwidth)
{
$(this).animate({ width: '950px'}, 250);
}
}, function()
{
$(this).animate({ width: '640px' }, 250);
});
I also used Fancybox to create a lightbox effect for images and image galleries. For example try clicking on one of the images below:
Lastly I used the new Google Font API (that was released this week) to embed the cool font I used for the blog & post titles in a cross browser compatible way. The font is Reenie Beanie by James Grieshaber.
So what do you think? Leave a comment :)
Google’s timetable for dropping IE6
I received the following email from Google yesterday. It details their timetable for dropping IE6 support:
Dear Google Apps admin,
In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology. This includes faster JavaScript processing and new standards like HTML5. As a result, over the course of 2010, we will be phasing out support for Microsoft Internet Explorer 6.0 as well as other older browsers that are not supported by their own manufacturers.
We plan to begin phasing out support of these older browsers on the Google Docs suite and the Google Sites editor on March 1, 2010. After that point, certain functionality within these applications may have higher latency and may not work correctly in these older browsers. Later in 2010, we will start to phase out support for these browsers for Google Mail and Google Calendar.
Google Apps will continue to support Internet Explorer 7.0 and above, Firefox 3.0 and above, Google Chrome 4.0 and above, and Safari 3.0 and above.
Starting this week, users on these older browsers will see a message in Google Docs and the Google Sites editor explaining this change and asking them to upgrade their browser. We will also alert you again closer to March 1 to remind you of this change.
In 2009, the Google Apps team delivered more than 100 improvements to enhance your product experience. We are aiming to beat that in 2010 and continue to deliver the best and most innovative collaboration products for businesses.
Thank you for your continued support!
Sincerely,
The Google Apps team
Inside Google Wave
ClearPoint held one of its regular tech-drop get-togethers last night covering Google Wave.
The Cloudbreak team gave a good walk-through of the product and I gave a quick overview of some of the technology inside Google Wave and it’s APIs.
Here is my slide deck:
Click to see next slide
The PDF (with notes) can be downloaded here.
For those of you who know nothing about the wave, here is short intro video:
Hiding from Google Ads
Google has just updated its advertising system to do “behavioral targeting”, in essence they track you as you move around the web and display ads that are targeted towards you based on what the perceive are your interests.
For instance if you visit a bunch of sports related sites then Google will determine that you are into sports and serve up sports related ads to you.
This is all done using tracking cookies and is built around the Doubleclick tracking infrastructure.
Google have also asked anyone who displays Google ads on their to update their privacy policy information. Since I display Google ads on this blog (and make 0 dollars to be honest, why don’t you click on some of the ads?) here is my updated privacy policy:
We use third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you.
You are warned :)
More importantly what if you don’t want to be tracked ?
Well Google has two pages for you. The first lets you opt-out of the tracking system and the second lets you adjust your Google Ads preferences.
The preferences page is a particularly interesting, in that it shows you the “interest” areas that Google has derived based on your surfing habits. You can also manually add interest areas if you want!
My advice however is to just use a browser add-on such as Adblock Plus for Firefox and you will never have to worry about seeing those ads ever again (you will however disable the blocker for rabidgremlin.com, won’t you? )


