понеделник, 29 ноември 2010 г.

На море през зимата

Бяхме на море през зимата, за да гледаме мача Нефтохимик - Ботев. Снимки от Бургас, Несебър и преди това


вторник, 23 ноември 2010 г.

Paparazzi Sheet Music, The Fame Monster, Heartbeats

Uber quick post! :) to say, I've finally finished a basic score for the acoustic version of Lady GaGa’s “Paparazzi”, you can catch it here : CLICK and here’s a video of me playing it!

Hope you like it (:

Also! The Fame MONSTER is out like like a month, and i am DYING waiting for it, loads of new music!
Heartbeats, cannot wait for these headphones either, Dr.Dre’s website still only says coming October 2009 but I'm looking forward to them so bad!

Last but not least, I'm HEARTBROKEN because this damn UK postal strike means i still don't have my copy of Hana Pestles album. AGH.

събота, 13 ноември 2010 г.

DEAR WHORES
of the internet.
This shit is not attractive! Actually it makes you look stupid and retarded. Please stop doing it.
SIGNED: MEN EVERYWHERE

понеделник, 8 ноември 2010 г.

Управление на променливи в php

Днес бях до библиотеката и си взех "PHP5: Професионално програмиране" с идеята да се образовам малко. Не е нищо сложно, но това е първата "програмка", която написах

$first_name = Teodor;
if (isset($first_name)) {
print 'variable is set
and it is '.$first_name .'
';
}

unset($first_name);

if (empty($first_name)) {
print '
variable is not set
'.'and you are looking for $first_name';
}


Резултатът е:
variable is set
and it is Teodor

variable is not set
and you are looking for $first_name