Archive
Having a cup of coffee
I’m having a coffee with some friends and feeling great. When back I have a couple of bugs to fix and finish one project.
VIVACOM Net Biz 12 mbit – Епизод 2
След миналия ми пост как безуспешно се борих с ВИВАКОМ, за да ми пуснат една от всички нови услуги, които по принцип би трябвало да работят след като съм на бизнес абонамент, ето къде се намирам в момента:
- Reverse DNS – Въпреки че го имаше в интерфейса, операторката ми каза че не предлагали такава услуга, обадих се пак и попаднах на друг оператор, който оправи нещата.
- 5 Static IP адреса – След около 120 минути и един кашон с обаждания и това вече работи, проблема пак беше с панела просто не излизаха проклетите адреси.
- Upload 2 mbit – НЯМА! Няколко пъти се обаждам вече, казаха че ще ми пратят техници или ще го оправят от там, е нищо не направиха.
В интерес на истината, международната връзка е толкова калпава през повечето време, че дори не става за гледане на клипове в YouTube!
На всички ужилени с новоподписани договори честито!
ВИВАКОМ и техния Vivacom Net Biz абонамент (12 мбит) – Горчив опит…
Ден първи:
След като минах на новия абонамент. Интернета е малко по-стреснат, но скоростта на ъплоуда естествено е 1 мбит а не обещаните два. При сваляне скороста си е наистина – 12 мбита. Опитвам се да си заявя IP адреси от техния сайт my.contact.bg и ефекта е кръгла нула, не ми излизат IP-та и се обадих в центъра за поддръжка, казаха да си ресетна модема и да пробвам “утре след обед”. Щели да пуснат заявка (или нещо от сорта).
Ден втори (утрето след обед):
Ресетвам си модема, опитвам да заявя адреси, пак същия проблем. Обаждам се на центъра за поддръжка, казват ми да опитам след 2 часа, ресетвам и заявявам IP адреси, ефект никакъв.
Ден трети:
Ресетнах си модема, не мога да го активирам вече няколко пъти… Обадих се чаках 20 минути да ми вдигнат, в този момент модема пак опитваше да се активира и казаха да съм звъннел след като приключи, заговорих ги само и само да ме изчакат 1 минута да видя дали ще тръгне интернета. ТРЪГНА! Помолих ги да изчакат да си заявя адресите наново, отново нищо не стана, казаха ми пак че ще пуснат ticket-а нагоре и да пробвам утре след обед.
Страхотна работа вършат, от 3 дни съм абонат на новата им услуга и съм супер разочарован, а подписах договор за две години. Май ще се обърна към адвокат…
Какъв е Вашия опит?
И сега специално за всички техни клиенти, които са пред нервна криза нека изгледаме тяхната реклама с успокояващата музичка, да отпуснем нервите.
НОВО ДВАЙС’
Ето автоматичния отговор след като им пратих оплакване през онлайн формата:
Здравейте г-н Деян Мотов,
Благодарим Ви, че се свързахте с нас. Вашият сигнал беше получен успешно.
Искаме да Ви уверим, че в момента се работи по него и ние ще се свържем с Вас в срок до 20 работни дни.
Този имейл е автоматичен. Моля, не отговаряйте на него. Ако имате допълнителни въпроси, моля, попълнете контактната форма тук.
С Уважение,
Отдел Обслужване на клиенти
БТК АД
Web site: www.vivacom.bg
WTF?!? 20 работни дни? Вие ненормални ли сте?
Mozy.com – The unrealiable backup service
I am trying to restore a backup for the last few hours. Mozy client is hanging and doing nothing, can’t restore any of my files. The web restore isn’t helping too. I have these files on another drive, and i’m totally not happy with the service. I do not recommend anyone this service. Sorry guys. They also have a section in their blog scary faces, where they mock up people who lost their files, well that’s what happens if you wait for mozy to restore the files, it doesn’t do it. I liked the whole idea of the service and was an enthusiast about it but now i’m totally the opposite.
Update 10 minutes later
Just received an email that my web backup is ready, and now it’s downloading with a full speed. This is good. Their client though $ucks, because it hangs all the time on my brand new windows 7.
Update 1 hour later
After i downloaded the backup from the web, i have extracted the mozy archive .exe file and then realized i need to decrypt the files too, in the end it turned out about 10% of my files were corrupted no matter that i supplied a correct decryption key. This is ridiculous. I would never use this service again!
Ugly Adobe Flash Player bug with FLV videos
Today, Flash Player decided to stop loading videos from any video sharing website correctly. To view a video i must wait until it’s completely loaded and then may be it will run (seems like the longer videos are not working). This bug can’t be fixed even if you uninstall flash player and install it again from adobe’s website. At the end, there’s no fix yet, but i’ll try to find one and share it with you.
Thanks.
P.S. It got fixed by itselft, may be after the reboot, very weird.
PHP Array To XML Class – Multidimensional PHP to XML Tutorial
Here is a great class i found on the internet for making XML from PHP multi dimensional arrays, it is tested and works like a charm on my server with PHP5. I do not remember the site i found it on.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | class ArrayToXML
{
/**
* The main function for converting to an XML document.
* Pass in a multi dimensional array and this recrusively loops through and builds up an XML document.
*
* @param array $data
* @param string $rootNodeName - what you want the root node to be - defaultsto data.
* @param SimpleXMLElement $xml - should only be used recursively
* @return string XML
*/
public static function toXml($data, $rootNodeName = 'data', $xml=null)
{
// turn off compatibility mode as simple xml throws a wobbly if you don't.
if (ini_get('zend.ze1_compatibility_mode') == 1)
{
ini_set ('zend.ze1_compatibility_mode', 0);
}
if ($xml == null)
{
$xml = simplexml_load_string("<?xml version='1.0' encoding='utf-8'?><$rootNodeName />");
}
// loop through the data passed in.
foreach($data as $key => $value)
{
// no numeric keys in our xml please!
if (is_numeric($key))
{
// make string key...
$key = "unknownNode_". (string) $key;
}
// replace anything not alpha numeric
$key = preg_replace('/[^a-z]/i', '', $key);
// if there is another array found recrusively call this function
if (is_array($value))
{
$node = $xml->addChild($key);
// recrusive call.
ArrayToXML::toXml($value, $rootNodeName, $node);
}
else
{
// add single node.
$value = htmlentities($value);
$xml->addChild($key,$value);
}
}
// pass back as string. or simple xml object if you want!
return $xml->asXML();
}
} |
jQuery UI and how to show a DIV with Blind effect onClick
This is an example function, how to show a div using the blind effect with jQuery UI. Read more…
Katy Perry is actually HOT!
So, last days headlines were all about Kanye West, Taylor Swift and Lady Gaga. Here’s one real winner from the VMA’s. This is Katy Perry and sheeeeeee’s a hottie. I think there’s big improvement since last year on the YouTube Live! where she did not looked that good. Well done Katy! What’s up with the new songs? Read more…

