Archive for April, 2006

MySQL – Monitor – Tuning

Thursday, April 27th, 2006

Hab in letzter Zeit einiges darüber gelesen, doch viel weiter bin ich nicht gekommen. Doch mit dem “wenig” läuft die MySQL schon um einiges runder.

1. Ein Artikel von MySQL

http://dev.mysql.com/doc/refman/4.1/en/s…html?ff=nopfpls

2. Und ein wenig nachschauen mit MyTop (ähnlich wie “top” aber halt für MySQL)

http://jeremy.zawodny.com/mysql/mytop/

… oder für die, die php5 auf dem Server laufen haben gibt es noch was feineres …

http://sourceforge.net/projects/ajaxmytop/

———————————————

Falls jemand noch was hat, bin immer für gute Tips zu haben.

Older IE standalone versions

Wednesday, April 19th, 2006

While testing website code I often get to the point of using multiple computers and multiple systems and multiple VM Wares.

I have some old CD-Roms with old browsers, but let’s get real, I don’t carry them around with me all the time, so I was out searching for some older IE versions and stumble across this collection of IE 5.5 standalone and older versions.

http://browsers.evolt.org/?ie/32bit/standalone

Quick Javascript Check for IE

Wednesday, April 12th, 2006

Actually this wouldn’t be a big thing or anything, but there is one little thing that one needs to be aware of – OPERA! Opera can disguise itself as IE and that way pending on the user it can easily happen that in browserchecks the user get’s sent the wrong way.

As mentioned above, this is quick an dirty, for real detection the script nees to be far longer and quite frankly one should only resort to a browser check if one can absolutely NOT solve the problem another way, as there is always a chance that a browser or specific browser version get’s sent the wrong way or not sent anywhere at all.

So here is the code:

document.write("User Agent Name:
");

if (navigator.userAgent.indexOf('Opera') != -1) {
document.write("Opera");
}
else {
document.write(navigator.appName);
}

document.write("

Reiner IE Check:
");
if ((document.all) && (navigator.userAgent.indexOf('Opera')== -1))
{
document.write("IE");
} else {
document.write("not IE");
}

You can now modify it to your needs to switch whatever you need to.

The sun is comming out sooner or later

Monday, April 10th, 2006

Well, here in Germany we might still wait a little bit untill the sun shows up again, but if you are lucky then you are already running yround in your shorts.

So, how is your computer doing? A bit slower than usual? Got a Pentium4 and it might just be overheating without you noticing? Got a few harddisks which don’t like the heat either? You’re running on an AMD in an office with AC but the fan noise is killing you.

Well, look at what I found. It may not solve all your prolbems but it at least might give you some more information about how your computer is feeling today.

Speedfan … it doesn’t just monitor your cpu, but does your fan and harddisk (pending on make and modell).

Yes, it is free of course.

Marketing Biathlon

Thursday, April 6th, 2006

dilbert

VHCS v3

Tuesday, April 4th, 2006

Na wie es aussieht geht es bei VHCS doch endlich weiter. Im Forum wurde schon der erste Screenshot von der v3 reingestellt. Bin ja mal wirklich gespannt.

Doch ich habe das schleichende Gefühl das der “upgrade” von v2 auf v3 kein upgrade sondern eine komplette Neuinstalltion wird.

Oh oh …

http://vhcs.net/new/modules/newbb/viewtopic.php?topic_id=5287&forum=6

Na ja, egal wie es ausgeht, wir wissen doch alle insgeheimt das sobald v3 draussenist wir uns alle drauf stürtzen werden.

WordPress Widget Plugin

Tuesday, April 4th, 2006

Jetzt bewegen wir uns doch mal in eine interessante Richtung. Der Widget Plugin ermöglich das gestallten der Sidebar für jeden WordPress Blog der eine Theme verwendet dir standard ist, oder sollte ich eher sagen, die von der default nicht zu sehr abweicht.

Aber auch wenn man eine Theme hat die abweicht, hey, einfach mal die Sidebar untersuchen und dort die Änderungen machen damit das standard Zeugs wieder drin steht, ist ja nicht soooooooooooo schwer.

Der Vorteil des Plugins liegt auf der Hand. Der Benutzer kann danch seine Sidebar anpassen wie er Lustig ist ohne eine einzige Zeile Code anzulangen.

Für die unter uns die sowieso den code hin und her schieben ist dies nichts Weltbewegendes, doch für die, die WordPress Weblogs hosten und für die, einem Freund gerade helfen das Teil ein zu richten, ist dieser Plugin von unschätzbarem Wert.

Aber mal ganz vom eigendlichen Plugin abgesehen … ich glaube wenn WordPress so weiter macht und mehr und mehr Dynamic reinbringt, werden Sie weiterhin an der Spitze der Blogsoftware mitspielen können.