Archive for the ‘Google’ Category

Five+ years of Gmail

Tuesday, January 19th, 2010

Today while unsubscribing from NZ mailing lists and deleting old cruff, I went and found my oldest sent Gmail message, sent 26 August 2004, so I’ve been a very happy Gmail user all that time, and it’s better than I originally told my wife:

It’s easy to check from home and work, and I never have to delete any
email because I can store 1gig’s worth of stuff.

I current have 440MB of 7414MB, so all this time I’ve never had more that 5% usage.

Yes Google know lots about me, but it’s been useful. We have changed ISP three times in that period, and I’ve had three different work places, but one email the whole time.

Cheers Google.

Odd Advertising

Tuesday, December 1st, 2009

The company across the road from where I work, keep having their adds pop-up on my blog.

Telogis AdSense

I’m very puzzled what AdSense words I’ve mentioned to trigger it….

Gmail UI updated: I HATE IT!

Thursday, February 28th, 2008

Gmail have updated the UI, and quite frankly I hate it!

It feels cluttered with the silly boxes in the Labels section
Gmails new UI - Cluttered
But the icing on the cake is the in your face push for chat.  When reading mailing lists, the UI was the good thing about Gmail,  you could click on each item and read things in a nice orderly fashion.  But the new UI now pops up a Chat window on each person. So now you can’t read the first line of the email.
Gmail new UI - Most evil feature

It’s so crap I turned on the keyboard shortcut so I would trigger the UI crap-ness, but that’s got it’s own crap-ness because it jumps around, and it’s disconcerting. I like my scroll wheel.  I like collapsing read emails. I don’t like pop-up UI.

Likely there is an option to revert to the old UI,
Gmail new UI - saving grace

Ahh, the feeling of calmness is returning. If Google switches to the new UI permanently, I’m going to have to leave them, and that’s annoying… because they were good.

Why the big push for chatting via the browser? Where is the setting “I use gtalk, so just piss off with breaking the email application trying to do poor chat” tick box?

Google Analytics – Updated

Friday, December 14th, 2007

Google has updated Analytics, and the feature that made this most obvious was the date range picker.  Before you even open it you can see a new Comparing to: Site ? text.
Analytics date picker change 1
On opening the data picker, they now let you choose today in New Zealand time.

Analytics date picker change 2
No more editing the URL to see what is happening now! This is quite useful when I get comments to see how people found my site etc.

I will have to explore to see if I find more features, but for now, my #1 missing feature has been solved.

WordPress URL rewriting

Monday, November 26th, 2007

When reviewing Google Analytics this morning I noticed a 404 page view for: http://simeonpilgrim.com/404/blog/2007/07/17/curse-of-the-azure-bonds/

with the refer on the end of the URL, going to the referring web site their is a link to this none existing page but the content was for this page: http://simeonpilgrim.com/blog/2005/08/04/curse-of-the-azure-bonds/

After a bit of reading I found mod_rewrite (Linux hosting) was the tool to fix the problem.

I downloaded the /blog/.htaccess file and used the above mentioned manual to decode the meaning and start hacking me a new file.

Much wasted time latter, I worked out that WordPad was messing with the Unix new-line markers, and changing to Visual Studio was met with success (or lack of server failure).

So what I needed to add was the following line to my Wordpress default .htaccess

RewriteRule ^2007/07/17/curse-of-the-azure-bonds/$ 2005/08/04/curse-of-the-azure-bonds/ [R=permanent,L]

giving me this file

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^2007/07/17/curse-of-the-azure-bonds/$ 2005/08/04/curse-of-the-azure-bonds/ [R=permanent,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule> # END WordPress

And magically the link now redirects to the correct page.

You can find these pages in Google Analytics by:

  • selecting Content
  • selecting Top Content or Content by Title
    URL rewriting: Steps 1- 2
  • entering /404/ in the Find URL search box
    URL rewriting: Step 3

Happy Fixing…