Abschied
bizzare
books
career
computer
Creative
daily
games
gewinnspiele
holidays
humor
internet
money
Quiz
Urlaub
web
Profil
Abmelden
Weblog abonnieren
icon

resident of twoday.net
powered by Antville powered by Helma
AGBs xml version of this page

 
daily
Oder Executive Customer Support!
Was ist das?
Wenn der normale Support nicht klappt oder man ignoriert wird. Schaltet man den Turbo ein (d.h. den CEO)
Bei Consumerist hab ich diesen Beitrag gefunden:
http://consumerist.com/consumer/turboing/executive-customer-support-finding-the-number-189950.php

computer
You could use this keywords similar to the CVS keywords between Dollar-Signes: $Keyword$, but you have to tell SVN specifically to update the keywords in your files.
I actualy have not found a working way to automate the replacement on commit.

You could do it for all keywords (space separated) and file by file with the following line:

svn propset svn:keywords "Date Author" weather.txt

Date
This keyword describes the last time the file was known to have been changed in the repository, and looks something like $Date: 2002-07-22 21:42:37 -0700 (Mon, 22 Jul 2002) $. It may also be specified as LastChangedDate.

Revision
This keyword describes the last known revision in which this file changed in the repository, and looks something like $Revision: 144 $. It may also be specified as LastChangedRevision or Rev.

Author
This keyword describes the last known user to change this file in the repository, and looks something like $Author: harry $. It may also be specified as LastChangedBy.

HeadURL
This keyword describes the full URL to the latest version of the file in the repository, and looks something like $HeadURL:
http://svn.collab.net/repos/trunk/README $. It may be abbreviated as URL.

Id
This keyword is a compressed combination of the other keywords. Its substitution looks something like $Id: calc.c 148 2002-07-28 21:30:43Z sally $, and is interpreted to mean that the file calc.c was last changed in revision 148 on the evening of July 28, 2002 by the user sally.

daily
Heue in "Österreich" - Darüber Spricht Wien.
Herr Staub vom Cafe Sperl bezeichnet Nichtraucher als militante Minorität.
Ich bin Nichtraucher bin ich deshalb automatisch militant... eher nicht.
Allerdings lassen mich solche Aussagen dann schon langsam rabiat werden.

Seit wann ist es abnormal nicht zu rauchen?

Die anderen auch erwähnten Lokalbesitzer/betreiber, sehen das ähnlich. Nichtraucher werden ins Extrazimmer gesetzt .
Extrazimmer haben üblicherweise die Angewohnheit hinten zu sein (dort spielt man Stoss, weils illegal ist und im normalen Gastraum nicht geduldet wird).
Wenn ich in ein Kaffeehaus gehe möchte ich vielleicht aus dem Fenster schauen.
Ansonsten könnte ich mir gleich einen Kaffee von McD oder SB holen und ihn auf der Rolltreppe in die U-Bahn trinken.

Andere wiederum bieten Raucherplätze an. Ich stell mir das fast schon mit einem biblischen Bild vor. Wie Moses das rote Meer teilt kommt dann die Kellnerin (auch männliche inbegriffen) und teilt dann den Rauch der sich dann zu einer Mauer links und rechts von mir auftürmt.

Allen Carr der Rauchentwöhnungspapst ist nach 40 Jahren nichtrauchen doch noch an Lungenkrebs gestorben. Durch passiv rauchen.
Ich glaube es ist an der Zeit umzudenken, und RAUCHEN zum Abnormalen zu erklären.
Ich habe im Prinzip nichts gegen Raucher, ich habe einige im Frundeskreis und in der Familie, es ist ein geringer Anteil. Und sie haben Rücksicht zu nehmen. In Wohnungen wird nur auf dem Balkon oder auf der Straße geraucht, ich brauch nämlich keine Vorhänge die einen Gelbstich bekommen, oder Katzen und Polstermöbel die wie ein Aschenbecher riechen.

In Lokalen setzten wir uns auch mit den Kinder in die Raucherzone wenn auch nur ein Raucher dabei ist, ihm zu liebe. Das finde ich falsch. Ich werde in Zukunft mit meinen Kindern nicht mehr dort sitzen, und wenn die Freundschaft darunter leidet ist mir meine Gesundheit und die meiner Kinder wichtiger.

computer
Found on devx.com, allways worth a look.

Normally, you need a main method in a Java class if you want to run that class from the command line. However, there is a little trick that allows you to run one without a main method:


class NoMainMethod
{
static
{
System.out.println("Look ma! no main method");
System.exit(0);
}
}

The reason this works is that static initialization blocks get executed as soon as the class is loaded—even before the main method is called. As soon as the block exits, it will look for the main method. When it doesn't find it, it throws an exception—so the statement exits the program before the exception is thrown.

computer
As Joe Winchester has written in his article Java Desktop: The Usability Paradox i have seen such problems too and no rescue in sight. The main problem is, upfront there is a lot of commitment to a renovation or new implementation of a system, by the management. But very fast, and for a 5 man year project 2 month is very fast, they tend to say, why isn't that ready right now, we pushed up the date, and want to go online in about 6 month. And if you say, no way we are on the workload limit. They either say, need more staff (which takes time to introduce to the project, and delay even more) or cut down functionallity. And than we have The Usability Paradox.
If the project goes online with this functionality the usage statistics do not attune with the prediction and the project will either be cancled or it would be forgotten about it, the staff disposed, and another unusable project is creeping around.

7753