Egypt, the “mother of the world”, starts to eat its children!
post can be found @ http://mahmood.tv/?p=2465
Worth reading , geeks .!
50 BD for shit , shame on you Batelco !
50 BD , which is arround 132 USD $ , A 71 British Pound for a Stupid Crap 512 DSL connection from Batelco , and Give me a Break ... I cant Play my Favorite Games online , voip Appz barely usable , Progressive Vidz show [if voice fails at some points , u can imagine video lol ! its crazy ] ...
i got this email from some mates arround Bahrain as in related to this article...
http://www.batelco.com/preview.asp?articleid=776
Quote
So to all Bahraini people, what do you think about these offer??? mostly are Limited and high price. Bahraini people think oh it's good because most of them don't know about the prices outside Bahrain and the Speed, but sorry it is really cheap outside with really high connection, and yeah NO PROBLEMS WITH THE INTERNET.
The mobile bill cost is high and the house line is high but outside Bahrain people get paid high while they have free house line cost and cheap mobile bills. So it's all up to you people what to choose.
All we are asking is cheaper phone calls, great offers and high connection. Treat us like other countries and even better. We all know it's monopoly in this feild and we have to accept the offers you give us, but you shouldn't take advantage in this situation and make people pay alot while they don't have alot of money to spend. Batelco are not forcing us, but we have the right to get good things here in Bahrain, it's a great country.
So please treat us right and make Bahraini people happy about what they have.
Thank you .
Ask Batelco if they care ... Rofl !!
Live Drive !! Its War champs .
Microsoft is developing an online storage service, codenamed Live Drive, that could compete with Google's Gdrive project.
Continue reading ...
Many Thanks to mickeyjohnnyboy from the DesignersBlock Community for the News .
Other Flash tween Classes and protos .
If you are familiar with actionScript 2.0 , then you must've heared about the builtin tween classes ...
But u r still limited to what you can do with it , so there are many other tween classes that u can use .
you can see Bahrain is listed under supporters at the end of the mosessupposes Page , Tnx to me ;)
You should also have a look at the BadassXML and other classes @ Mossessupose .
- http://www.mosessupposes.com/Fuse/index.html
- LmcTween
- http://flog.fluid.com/2005/12/15/tween-playground-rereleased/
Ever heared of timeTween ? you should visit the last link its really amazing what u can do with the fluid classes .
catch http://www.fluid.com/experiments/tweenplayground/
Talking about patches !
A remote code execution vulnerability exists in Windows Explorer because of the way that it handles COM objects. An attacker would need to convince a user to visit a Web site that could force a connection to a remote file server. This remote file server could then cause Windows Explorer to fail in a way that could allow code execution. An attacker who successfully exploited this vulnerability could take complete control of an affected system.
Continue reading...
IE 7 Close to be finialized & released !
Microsoft has moved a step closer to finishing a new version of its popular Internet Explorer browser.
The software giant has released a revised test version of Internet Explorer 7 (IE 7).
It is offering free telephone support to consumers in the US, Germany and Japan who decide to try it out.
Microsoft is facing growing competition from browsers such as Firefox which already offer advanced functions such as tabbed browsing.
The final version of IE 7 is expected to be released in the second half of this year.
Link by nige .
m0o
isset() VS empty()
It might be confusing as far as i red on many forums that fails to explain the diffrence between isset() and empty().
So let me put it this way :
Isset() checks if a variable has a value including ( Flase , 0 , or Empty string) , But not NULL.
Returns TRUE if var exists; FALSE otherwise.
On the other hand the empty() function checks if the variable has an empty value empty string , 0, NULL ,or False. Returns FALSE if var has a non-empty and non-zero value.
Comparison example on both isset() and empty()
<?php
$var = 0;
// Evaluates to true because $var is empty
if (empty($var)) {
echo '$var is either 0, empty, or not set at all';
}
// Evaluates as true because $var is set
if (isset($var)) {
echo '$var is set even though it is empty';
}
?>
For more information and examples visit the following links.
m0o