Google has released an input method editor (IME) for Japanese in a similar style as their Chinese IME. It can be found on their IME page. It looks to be available for Mac OS X, Windows XP SP2, Vista SP1, and Windows 7.
Tag Archives: google
Google Groups and Sender header
Since a few days Google Groups mailing lists stopped having a Sender header. Aside from being a violation of RFC 5322 in that this is a SHOULD requirement for mailing lists it also breaks labels in Google Mail as well as procmail filtering. Add to that that moderation messages have strange subjects all of a sudden and I wonder which idiot has been messing around with the mail backend at Google without considering the broader implications.
Lightning 0.8 released
For those of you using Thunderbird and want a calendaring option inside of Thunderbird to communicate properly with people using Outlook or Lotus Notes that send you invitations for meetings and the like: Mozilla’s Lightning is now at version 0.8. Lightning is an add-on for Thunderbird based on Sunbird.
If you then also use the Provider for Google Calendar you can synchronise your Google Calendar with your Lightning setup.
High play factor or how fast can you spin the globe?
I recently started to try out Google Earth and I have to say that it really is a load of fun. The urge to experiment and dig deeper and try more is readily apparent when you start using this application.
It’s on my list of things to explore much more in-depth (as well as Google Analytics).
urchinTracker() is not defined
I tried to use Google Analytics for the first time and encountered an error message I’ve seen before.
Firebug would report: urchinTracker() is not defined.
I just could not understand why I would get this error message.
Turns out to be simpler than I imagined.
- I was blocking urchin.js at googleanalytics.com using AdBlock (so for all of you people who blindly trust their results, they’re awfully skewed),
- the provided JavaScript from Google does not properly check if the urchinTracker() function is indeed defined prior to calling it. Suppose you have it blocked through AdBlock the urchin.js file won’t load, next you try to call the function, which isn’t declared in the namespace and thus triggers an error in the Firebug debugger.
One way around this was to use the code from http://www.buayacorp.com/archivos/google-analytics-urchintracker-is-not-defined/ and the problem should go away. It seems that the suggestion in this thread over at Google groups has already been incorporated with the current urchin.js file.