Monday, April 25, 2011

Projector phones

Microsoft launches Surface 2.0


At the Consumer Electronics Show Wednesday in Las Vegas, Microsoft CEO Steve Ballmer and VP Mike Anjiulo show off the company's new Surface 2.0 platform. The multitouch, tabletop will be available in late 2011 in 23 countries and will retail for $7,600.
http://www.smartplanet.com/technology/video/microsoft-launches-surface-20/495834/

Thursday, April 21, 2011

TeamLab :free open-source platform for business collaboration and project management

online url - http://www.teamlab.com/
Download url - http://sourceforge.net/projects/teamlab/


TeamLab is a web-based platform for business collaboration and project management. It has been developed by Ascensio System SIA, a fast-growing company that offers IT-solutions for personal and corporate use.

TeamLab was founded on the idea of making social networking and project management efficient. It combines a wide range of features that assist a company team to work as one organism at solving common tasks and achieving results.

Monday, April 18, 2011

PHP Functions with optional arguments - example

function foo($arg1 = '', $arg2 = '') {

echo "text1: $arg1\n";
echo "text2: $arg2\n";

}

foo('hello','world');
/* prints:
text1: hello
text2: world
*/

foo();
/* prints:
text1:
text2:
*/