Archive for the ‘business’ Category

Tips from a Top Sports Team Coach

Thursday, August 21st, 2008

Wow! Great Great article: Tips from a Top Sports Team Coach

Urs Peter attended a coaching seminar where Marc Lammers, the (very successful) coach of the Dutch women’s national field hockey team, gave the keynote speech.

Urs Peter took some great quotes from Mr. Marc Lammers and translated them in his one way what it could mean in the world of Software development.

For me a must-read!

[via InfoQ]

Order 3 “iX” issues for free

Monday, March 10th, 2008

For German readers only!

iXGermany’s best “enterprise computing magazine” iX offers 3 issues for free.

The order ends automatically after you have received the 3rd issue. 

Order it here!

(via webthreads.de)

Track your money with BUXFER

Friday, January 25th, 2008

visit_buxfer.gif

I started tracking my money with buxfer.

I love this service! I can insert all transaction types I can imagine and buxfer handles the information in a quite intelligent way. Grouping tags in a tree-style is a killer, too! It’s great to know in which category one have spent more/less money than the month before.

Other competitors seem to be quite U.S. centric. buxfer is not! I can easily track my euros with buxfer.

Security Issues:
buxfer is all https and does not know more about you than your email. That is ok for me. Aditionally it uses GoogleGears to allow you to store confidental data only on your computer.

I hope I will continue add all my transactions, won’t loose continuity. But the obtained information is a good motivation.

And by the way: The buxfer SMS interface allows me to account every beer I just paid using my mobile directly at the bar.

Additionally, since my financical institution is not handled by automtic import I have written a small Ruby script that changes the data format to the format known by buxfer. For shure you have to rewrite it, but take it as hint:

require ‘csv’

outfile = File.open(’out.csv’, ‘wb’)
out = CSV::Writer.generate(outfile,’,')

#02-Oct-2007, Paycheck, 400.00, salary

tag_uplook = {
“POL” => “insurance”,
“LINZ AG” => “electricity”,
“Falkner” => “rent”,
“HOFER” => “food”,
“Interspar” => “food”,
“Merkur” => “food”,
“Leasing” => “carleasing”,
“proberaum” => “delilah”,
“BEZUEGE” => “salary”,
“Liwest” => “internet”,
“T-MOBILE” => “phone”
}

CSV.open(’in.csv’, ‘r’,';’) do |row|
p row
date = row[0]
description = row[1]
amount = row[3].to_f
tag = “”

tag_uplook.each do |pattern, t|
if description.match(pattern)
tag = t
break
end
end

out << [ date, description, amount, tag]
end

out.close

Wow! Sun will acquire Mysql

Wednesday, January 16th, 2008

 Here is the announcement!

Perhaps someone can listen to the audiocast to get some more information:

The management teams of both companies will host a media and analyst conference call today at 10:00 am EST, 7:00 am PST. The call can be accessed at http://www.sun.com/investors. For those unable to listen to the live conference call, a telephone replay will be available for one week following the call by dialing (888) 566-0103 or outside of the U.S. by dialing (402) 998-0958. No passcode is required to access the replay.