Bayern Munich Hymn
Posted by klevisi - 23/04/10 at 07:04:30 amWilly Astor “Stern des Suedens”
Welche Münchner Fußballmannschaft kennt man auf der ganzen Welt?
Wie heißt dieser Klub, der hierzulande die Rekorde hählt?
Wer hat schon gewonnen, was es jemals zu gewinnen gab?
Wer bringt seit Jahrzenten unsre Bundesliga voll auf Trap?
Refrain: FC Bayern, Stern des Südens, du wirst niemals untergehn, weil wir in guten wie in schlechten Zeiten zu einander stehen.
FC Bayern, Deutscher Meister, ja so heißt er, mein Verein,ja so war es und so ist es und so wird es immer sein
Wo wird klar schon angegriffen, wo wird täglich spioniert?
Wo ist die Presse, wo ist Rummel, wo wird immer diskutiert?
Wer spiel in jedem Stadion vor ausverkauftem Haus?
Wer hält den Druck der Gegner aus?
Refrain
Ob Bundesliga im Pokal oder Champions League
ja gibt es denn was Schöneres als einen Bayern Sieg?
Hier ist Leben, hier ist Liebe, hier ist Feuer und drum bleibt München Deutschlands bester bis in alle Ewigkeit!
Refrain
DOCTYPE!’s
Posted by klevisi - 18/04/10 at 08:04:51 amHTML 4.01 Strict, Transitional, Frameset
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
XHTML 1.0 Strict, Transitional, Frameset
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
XHTML 1.1 DTD
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
getElementsByClassName function
Posted by klevisi - 18/04/10 at 08:04:51 amSince there doesn’t exist something like a getElementByClassName function, I just tried the js prototype library which has a getElementsByClassName function. You can download it here.
Include it in the head like this:
<head> <script type="text/javascript" src="prototype.js"></script> </head>
Then use it like this:
var test = document.getElementsByClassName("test");
the variable test will be an array.
Make a linkable div
Posted by klevisi - 15/04/10 at 12:04:49 pmA div can be made into a link very simple using javascript using this code:
<div onclick="location.href='http://www.domain.com';" style="cursor:pointer;">CLICK ME</div>
Here everything that is inside this div will be clickable and will poing to http://www.domain.com.
Using cursor: pointer dhe mause will change when it is over the div, just like in a real link.
Phpfreechat Albanian language
Posted by klevisi - 13/04/10 at 07:04:26 pmI just translated phpfreechat version 1.2 into the albanian language.
Feel free to download and use.
Installation:
1. DOWNLOAD the language file.
2. extract it into /i18n/ folder
3. in your chat file (suppose it is chat.php) add the following code in the beginning:
$params['language'] = ‘sq_AL’;
Enjoy!
What are Design Patterns?
Posted by klevisi - 04/04/10 at 05:04:38 pm
“Each pattern describes a problem which occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice” by Christopher Alexander, architect (the guy in the picture).
This is true in object oriented design patterns, even if he was talking about patterns in building design.
A pattern is made of four essential elements:
1. The pattern name
2. The Problem
3. The Solution
4. The Consequences
Klevis Miho Copyright © 2010