Die drei Etappen im Erwachsenwerden eines Mannes sind:
1. Er glaubt an den Weihnachtsmann.
2. Er glaubt nicht mehr an den Weihnachtsmann.
3. Er ist der Weihnachtsmann.
Welcome to my world
Die drei Etappen im Erwachsenwerden eines Mannes sind:
1. Er glaubt an den Weihnachtsmann.
2. Er glaubt nicht mehr an den Weihnachtsmann.
3. Er ist der Weihnachtsmann.
Au einem chat von mir:
ich: Argh! ich muss für jemanden ein vernünftiges Julklapp Geschenk im Wert von 5 Euro finden. Für einen Mann mitte 40. Hast Du ne Idee?
de: was dekroatives
de: eine Zigarre
ich: der ist Astmatiker
de: einen luftbefeuchter
de: einen gestricken Inhalator-Überzug
Dann hat er nicht verstanden, warum ich laut lachen mußte :D
Das habe ich bisher auch noch nicht gesehen
http://bugs.php.net/bug.php?id=50287
Voll der Bug oder?
xD mein Chef ist so eine Hohlbratze:
ich: die Software ist fertig
chef: Hast Du die auch getestet?
ich: ja auf XP, Vista und Windows 2000
chef: läuft die auf auf ‘nem Laptop?
1) She can fix your computer and make a website for your new startup.
2) She has friends who can fix your computer and design a database for you.
3) She can program your mother’s VCR and Tivo your favorite shows.
4) Her friends can program your mother’s VCR and Tivo your favorite shows
5) She can fix your friends’ computers.
6) She’ll make you shine wherever you go — how many of your friends are smart enough to date such a smart and useful woman?
7) She can pick out a the right cell phone/mp3 player/digital camera for you. Even better she can afford to buy it for you.
8) She’ll be so happy that someone appreciates her for her real talents, that she’ll adore you.
9) She won’t cheat either. Given a choice between George Clooney and the newest tech toy, she’ll take the toy.
10) Did I mention that she can fix your computer, make a website, design a database, install your cable modem and WiFi router, setup you iTunes for automatic download of your favorite artists, download your Outlook contacts onto the new cellphone/mp3 player/digital camera that she bought you?
11) And, she can cook dinner while doing all of the above.
< ?php $fa = new FeierAbend; $fa->arbeit_abschliessen(); $fa->daten_speichern(); $fa->pc_herunternfahren(); $fa->hole_fahrstuhl('mario'); $fa->wegfahren(); $fa->vollgas(); $fa->feierabend_bier(); ?>
User kommt zum Admin….
user: ich kann mit meinem MAC nicht mehr auf den server zufgreifen. Gestern vor dem Herunterfahren ging es noch….!
Admin: Ok, ich gucke alle Rechte von Dir an…
Admin: Das ist ein MAC Problem! Du hast alle Rechte wie die anderen und die 4 anderen MAC user können auch auf den server Zugriff nehmen.
User holt Chef dazu
Chef: Das muss laufen! Löscht den Account und legt den noch mal an!
Admin:…
crypt
#!/usr/bin/php < ?php require "crypt.php"; $type = $argv['1']; $string = $argv['2']; $key = $argv['3']; if($type !='' && $string != '' && $key != ''){ if($type=="e"){ echo encrypt($string,$key); echo "\n"; } elseif($type=="d") { echo decrypt($string,$key); echo "\n"; } else { die('WRONG TYPE'); } } else { echo 'crypt TYPE STRING KEY'; echo "\n\n"; echo "TYPE:\n"; echo "e encrypt\n"; echo "d decrypt\n"; echo "\n\n"; echo "STRING Your string\n"; echo "KEY Crypt key\n\n"; } ?>
crypt.php
< ?php /** * encrypt() * * @param mixed $string * @param mixed $key * @return mixed $retrun */ function encrypt($string, $key){ $result = ''; $lentgh = strlen($string); for($i = 0; $i < $lentgh; $i++) { $char = substr($string, $i, 1); $keychar = substr($key, ($i % strlen($key))-1, 1); $char = chr(ord($char) + ord($keychar)); $result .= $char; } return base64_encode($result); } /** * decrypt() * * @param mixed $string * @param mixed $key * @return mixed $return */ function decrypt($string, $key){ $result = ''; $string = base64_decode($string); $lentgh = strlen($string); for($i = 0; $i < $lentgh; $i++) { $char = substr($string, $i, 1); $keychar = substr($key, ($i % strlen($key))-1, 1); $char = chr(ord($char) - ord($keychar)); $result .= $char; } return $result; } ?>