Remember how I ranted about how Fickr changed the language to German for my account, and I could not find how to change it back to English...
Oh this is sooo embarrassing.... really... but I have to admit this...
Anyone ever take a look at the bottom most bar in flickr?
Yeah... that one.
Turns out, that when you click on English, it changes the language to English.
Another example, if you click on Deutsch, it changes the language to German/Deutsch.
Funny stuff, really.
Tuesday, March 09, 2010
Monday, March 08, 2010
Flickr language
And why exactly is it, that Flickr fall of a sudden talks German to me?
I did not change any preferences, still have en_xx way before de_xx in my browser language settings, ...
But starting last weekend, Flickr is German.
And no option[1] to turn it off.
What the f%&/( ??
--
[1] none that I could find, anyway.
I did not change any preferences, still have en_xx way before de_xx in my browser language settings, ...
But starting last weekend, Flickr is German.
And no option[1] to turn it off.
What the f%&/( ??
--
[1] none that I could find, anyway.
Friday, March 05, 2010
April 3rd - I'd rather stay offline
So, the iPad will hit the stores on April 3rd this year...I think I'll stay offline that day, because all the blogs, twitter, facebook and whatnot will be full with love and hate messages, and Why the iPad is the best device ever, and Why it is total crap...
The usual fight between Apple fan boys and the Apple haters, as well as those who expected a thinner/smaller MacBook with a full OS and those who love the idea of a larger iPhone...
I'll just stay offline ....
Labels:
apple,
ipad,
iphone,
ipod touch,
rant
Monday, March 01, 2010
Google Acquires Online Image-Editing Tool Picnik

Odd .... Google Acquires Online Image-Editing Tool Picnik (see also here)
I know Picnik mainly from / for Flickr, which now is a Yahoo company...
So, did Google just grab Picnik before Yahoo had chance?
Then again, it was also available for Picasa et al... still surprised me.
Skype on Nokia E71 - update
So, I've been using (native) Skype on the E71 for a couple of days now, and it really works quite well.Faster then the Java version (and that's me saying this). And more complete.
It does, however, not honor the settings for
- Default access point
It currently ignores both.
I changed them to their other respective values, restarted Skype, changed them back, still no change.
Saturday, February 27, 2010
Skype on Nokia E71
When I read that Skype was dropping support for the Java Mobile version of Skype (light), which I use on my E71, I just thought "What the f*"... [1]
Then I continued to read to find out, that there actually is a native Symbian version of Skype, that I totally missed during the last 1.5 years...
So, lets install it... just point your phone browser to skype.com/m.
Check back here to find out what my experience with it is.
Looks promising at first sight.
--
[1] yes, I literally thought "f asterisk"... :-)
Then I continued to read to find out, that there actually is a native Symbian version of Skype, that I totally missed during the last 1.5 years...
So, lets install it... just point your phone browser to skype.com/m.
Check back here to find out what my experience with it is.
Looks promising at first sight.
--
[1] yes, I literally thought "f asterisk"... :-)
Wednesday, February 17, 2010
Friday, February 12, 2010
OpenOffice.org 3.2 available - a highly recommended update
via Malte Timmermann's Blog
This update is highly recommended, not only because of the many security fixes and security feature improvements, but also because of some noticeable performance improvements.
As always, make sure to only download from trusted sources, like http://OpenOffice.org. The reason is explained here.
Labels:
openoffice
Sunday, February 07, 2010
Perfect Intro to Cluetrain and Web 2.0
Look at this excellent TED presentation by Alexis Ohanian of Reddit to understand how the Cluetrain Manifesto maps to Web 2.0...
And what it is, that corporations and organizations simply have to get.
And what it is, that corporations and organizations simply have to get.
Labels:
social networks,
ted,
web2.0
Saturday, February 06, 2010
Sunday, January 31, 2010
Facebook: Half-hearted email replies
For a couple of weeks now, Facebook allows you to reply to a notification (e.g. when someone comments on your status) via email.
A really nice feature, since most of the time I read the comment first via email, not on Facebook itself - no matter if mobile, iPod or Web. So being able to reply right from my mail-client is really convenient.
However, the one notification one cannot reply to via email, is a notification from a facebook message itself. If someone sends you a message on facebook, you have to log on to facebook and reply their.
Odd.
Half-hearted.
Please...
Xxx Xxxxxx commented on your status:So just hit reply on this e-mail and type away your response.
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras neque diam, tincidunt sit amet faucibus quis, tincidunt eu mauris. Nulla vitae est ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. "
New Feature: Reply to this email to comment on this status.
To see the comment thread, follow the link below:
http://www.facebook.com/xxxxxxxxxxxxxxx
Thanks,
The Facebook Team
A really nice feature, since most of the time I read the comment first via email, not on Facebook itself - no matter if mobile, iPod or Web. So being able to reply right from my mail-client is really convenient.
However, the one notification one cannot reply to via email, is a notification from a facebook message itself. If someone sends you a message on facebook, you have to log on to facebook and reply their.
Odd.
Half-hearted.
Please...
Thursday, January 28, 2010
Urgent feature request for Google Reader
If some Google engineer reads this...(yeah, very likely):
Could you please do a quick hack in Google Reader that would allow me to "mark all items about iPad as read and boring".
That'd be helpful right now.
Could you please do a quick hack in Google Reader that would allow me to "mark all items about iPad as read and boring".
That'd be helpful right now.
Wednesday, January 27, 2010
Cowardly admin
How nice... I got this error message on a webserver just now:
Internal Server ErrorThe server administrator /dev/null... didn't know that admins are that self-conscious nowadays.
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, /dev/null and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Monday, January 25, 2010
Regex Pitfall
I guess this was the first time ever that I had to search/match/replace with regular expressions across line boundaries.
Not the usual multi-line ("/m") operation; quite the contrary, I wanted the source string to be treated as one single line regardless of newline-characters in it.
In other words: the dot (".") should also match a newline.
Not that easy, it turns out.
Quoting from the Regex Tutorial:
Since I needed it within JavaScript (XUL/Thunderbird) I had to revert to a [\s\S] instead of the .
But it works.
Not the usual multi-line ("/m") operation; quite the contrary, I wanted the source string to be treated as one single line regardless of newline-characters in it.
In other words: the dot (".") should also match a newline.
Not that easy, it turns out.
Quoting from the Regex Tutorial:
The dot matches a single character, without caring what that character is. The only exception are newline characters. In all regex flavors discussed in this tutorial, the dot will not match a newline character by default. So by default, the dot is short for the negated character class [^\n] (UNIX regex flavors) or [^\r\n] (Windows regex flavors).Changing this behavior is actually language dependent.
Since I needed it within JavaScript (XUL/Thunderbird) I had to revert to a [\s\S] instead of the .
JavaScript [does] not have an option to make the dot match line break characters. InWeird. Unreadable. Requires a comment.
those languages, you can use a character
class such as [\s\S] to match any character.
This character matches a character that is either a whitespace
character (including line break characters), or a character that is not a
whitespace character. Since all characters are either whitespace or
non-whitespace, this character class matches any character.
But it works.
Labels:
javascript,
mozilla,
programming,
thunderbird,
xul
Saturday, January 23, 2010
Who is Facebook afraid of?
These days Facebook is really pushy and aggressive to get the data of your contacts who are not yet on Facebook.
Exhibit A: Facebook FriendFinder
Facebook seems to shove the FriendFinder into your face these days, no matter when or where on Facebook you are at the time.
For a time there even were almost full-size banners on top of the main Facebook page (stream) for it.
Exhibit B: The new iPhone app

The new Version 3.1 of the FaceBook app for the iPhone allows you to sync your iPhone Contacts with Facebook. Now as nice and handy this may be for syncing the Facebook contact information (picture, phone number, address, birthday, ...) down to your iPhone I'd never let all my phone contacts by synced up to Facebook.
Well, I don't have an iPhone (yet), but a - in this regard - functionally equivalent iPod Touch, which obviously does not contain as much contact information as my phone. And the E71 app for the iPhone is way to broken to ever get such a sync feature.
So this is not a problem for me, but I'd not even sync my handful of iPod contacts to Facebook. Even if I could.
They are really kind of desperate to get all your contacts data, i.e. your whole social graph.
Exhibit A: Facebook FriendFinder
Facebook seems to shove the FriendFinder into your face these days, no matter when or where on Facebook you are at the time.For a time there even were almost full-size banners on top of the main Facebook page (stream) for it.
Exhibit B: The new iPhone app
The new Version 3.1 of the FaceBook app for the iPhone allows you to sync your iPhone Contacts with Facebook. Now as nice and handy this may be for syncing the Facebook contact information (picture, phone number, address, birthday, ...) down to your iPhone I'd never let all my phone contacts by synced up to Facebook.
Well, I don't have an iPhone (yet), but a - in this regard - functionally equivalent iPod Touch, which obviously does not contain as much contact information as my phone. And the E71 app for the iPhone is way to broken to ever get such a sync feature.
So this is not a problem for me, but I'd not even sync my handful of iPod contacts to Facebook. Even if I could.
They are really kind of desperate to get all your contacts data, i.e. your whole social graph.
Labels:
e71,
facebook,
iphone,
ipod touch,
social networks
Monday, January 18, 2010
New Austrian ecard still not a Citizen Card
So during my previous attempt to activate my national health card ("ecard") as a citizen card ("Bürgerkarte") I was told that this very most recent version of the ecard was not yet supported and I should check back in January.
Guess what I did today...
Well to cut a long story short, it still does not work.
Why did I even bother to try...
I've been working in the IT industry for the last 20 years now [1], always on - sort of - the production side: vendor, developer, ... never really on the consumer side...
So I should know what a vendor or developer means by saying "in January". It's rather like February 12th or so... and not January 18th... duuuh... should've known... been there...
So, if anyone cares to try this "in January", i.e. before 18-Feb-2010, just be so kind and post a comment with your results here.
--
[1] OMG...that long?
Guess what I did today...
Well to cut a long story short, it still does not work.
Why did I even bother to try...
I've been working in the IT industry for the last 20 years now [1], always on - sort of - the production side: vendor, developer, ... never really on the consumer side...
So I should know what a vendor or developer means by saying "in January". It's rather like February 12th or so... and not January 18th... duuuh... should've known... been there...
So, if anyone cares to try this "in January", i.e. before 18-Feb-2010, just be so kind and post a comment with your results here.
--
[1] OMG...that long?
Labels:
ecard,
egovernment
Sunday, January 10, 2010
Show sender's picture in Thunderbird 3
With Thunderbird 3 you now can store a photo to each contact.
Nice feature, but totally pointless without an option to actually display this photo next to the emails.
Now for the good part: there is an add-on to do exactly this...
Contact Photos :: Add-ons for Thunderbird
It looks if it can find the sender of the email in any of your address books, and there is a picture stored with this record. If so, it will be displayed in the message header. If not, a dummy picture is displayed.
You can control the behavior a bit...

I know the Mac folks will now brag that their Apple Mail software could do this for years... And you are right... It was overdue.
Now all we need is a way to easily collect those photos (with gravatars not being that popular). Since the address book in Thunderbird still lacks usability, there is of course no way to simple drag and drop images into the address book... Maybe I'll hack this...
Nice feature, but totally pointless without an option to actually display this photo next to the emails.
Now for the good part: there is an add-on to do exactly this...
Contact Photos :: Add-ons for Thunderbird
It looks if it can find the sender of the email in any of your address books, and there is a picture stored with this record. If so, it will be displayed in the message header. If not, a dummy picture is displayed.
You can control the behavior a bit...

I know the Mac folks will now brag that their Apple Mail software could do this for years... And you are right... It was overdue.
Now all we need is a way to easily collect those photos (with gravatars not being that popular). Since the address book in Thunderbird still lacks usability, there is of course no way to simple drag and drop images into the address book... Maybe I'll hack this...
Labels:
image,
mail,
thunderbird,
thunderbird3
Friday, January 08, 2010
Quiz: What Do Facebook Quizzes Know About You?
The American Civil Liberties Union (ACLU) wrote an published a Facebook app that reveals how much data a Facebook app can actually see from you and your friends.
Nice thing, is that they made it in the form of the quite popular quizzes.
Read the story here, or try it yourself (if you are on Facebook) ...
HINT: always choose the worst possible (from a privacy point of view) answer... that will help...
Turns out that an app can see almost everything, regardless of what you say in your privacy settings, and - more shockingly - it can see a lot about your friends as well... and they don't even know about it...
The ACLU quiz demonstrates this by actually showing you some of your friends data.
Go directly the quiz on Facebook.
Key take away:
So some of your profile data might even be read by an app that a friend is using... you don't even know it, much less authorized it.
So:
#1 Don't take those quizzes
#2 Accepting a friend request on Facebook just got one more thing to consider ('cause you don't know what apps they use)
Sees Scott McNealy was right: "There is no privacy - get over it" [1].
I still hate that attitude... but he seems to be more and more right...
--
[1] there are slight variations of this quote... but all to the same effect.
Nice thing, is that they made it in the form of the quite popular quizzes.
Read the story here, or try it yourself (if you are on Facebook) ...
HINT: always choose the worst possible (from a privacy point of view) answer... that will help...
Turns out that an app can see almost everything, regardless of what you say in your privacy settings, and - more shockingly - it can see a lot about your friends as well... and they don't even know about it...
The ACLU quiz demonstrates this by actually showing you some of your friends data.
Go directly the quiz on Facebook.
Key take away:
So some of your profile data might even be read by an app that a friend is using... you don't even know it, much less authorized it.
So:
#1 Don't take those quizzes
#2 Accepting a friend request on Facebook just got one more thing to consider ('cause you don't know what apps they use)
Sees Scott McNealy was right: "There is no privacy - get over it" [1].
I still hate that attitude... but he seems to be more and more right...
--
[1] there are slight variations of this quote... but all to the same effect.
Wednesday, January 06, 2010
Gartner acquires Burton Group
Oha, coming home from a 3 days vacation (not even that offline) I stumbled upon this
Burton Group Identity Blog: Gartner acquires Burton Group: "Gartner acquires Burton Group"
Burton Group Identity Blog: Gartner acquires Burton Group: "Gartner acquires Burton Group"
Labels:
analysts
Saturday, January 02, 2010
Scheduled Sync for the E71
The program is called SWIM and this is what it does:
Swim is a utility for automatic periodic synchronization of data with internet servers such as Google Calendar (through GooSync), Mobical, Zyb, ScheduleWorld, Ovi or any system running Funambol. It makes use of the existing SyncML support in the system, and adds timing capabilities, something both UIQ and S60 mysteriously lack! You can set it to sync your data every 15 minutes, every hour, every 4 hours, every 12 hours, daily, or weekly.
Swim uses the existing Synchronization functionality and profiles from the E71... which is cool, so there is no difference if you sync manually through the menu or run the synchronization scheduled.
The how-to section is quite ok... here are some tips and tricks from my installation, though:
- For my E71 I needed version 0.41 from the download section. The more recent v 0.50 did not do anything.
The tricky part is, getting the beast signed using the Symbian Open Signed Online tool.
This is also well explained in the How To Install section: just upload the unsigned .SIS file, download the signed .SIS file and install this to the phone. - However, I ran in to the problem that my phone said that the certificate of the signed .SIS file was “not yet” valid. A google search for that revealed that this is a common problem with - as it seems - the clock of the signing server and the phone being too far out of sync. The trick is, to put the phone 1 day ahead, install the software, and the put the phone back today.
Frankly, I don't really see why I should (self-)sign software at all, if the only way to install it, is with a kludge like that. - Anyway, after that it ran just fine, I put it to 30min synchronization interval for starts and thats what it did... After a day of observation (without any problem) I put it to 12hrs, which is sufficient to have my corporate (Sun) calender synched with my phone...
Subscribe to:
Posts (Atom)



