August 2010
4 posts
1 tag
Improved SWT Text Widget
SWT is a great gui toolkit for the java platform which is easy to use, easy to change and what’s more important: it’s fast and native. I use the “Text” input widget a lot because it’s common in all kinds of applications and whenever you see one of them there is probably a “label”, too…a label that describes what to enter in the input field. ...
OMG, ich hab mir meine eigene epost ID geklaut
Hi,
Ihr habt leider einen dicken Fehler in der Webapplikation, mit der man sich seinen Account und somit seine epost Adresse sichern kann…dieser Bug sorgt dafuer, dass ich und jeder andere auch alle moeglichen Adressen sperren kann, so dass sie niemand mehr benutzen kann.
Wenn man das Formular ausfuellt, dann wird einem ja die Adresse vorname.nachname@epost.de angeboten…wenn man in...
MySQL5 foreign keys only with INNODB
If you work with Postgresql or even Oracle something like foreign keys are used on a daily basis…such constraints are very welcome and used all over the world except in mysql with myisam. You have to turn on innodb for that.
create table car (
id integer primary key not null auto_increment,
name varchar not null
) ENGINE=INNODB;
create table car_owner (
id integer primary key not...