|
|
||
Ludovic Champenois's BlogNovember 2007 ArchivesPHP SXDE jMakiPosted by ludo on November 04, 2007 at 09:51 AM | Permalink | Comments (0)Bonjour, comment 13949712720901ForOSX? Today, i would like to highlight some good progress on 2 projects I am involved in. The first one is about jMaki, with the announcement by Greg Murray of the jMaki Charting components. So simple to use - a given for jMaki components-, controllable via multiple server languages -Java/JSP, Phobos/JavaScript, Ruby/JRuby, and of course PHP, and toolable... Here is an sample of what you need to write in PHP <?php
$value = "{
xAxis : {
title : 'Months',
labels : ['January', 'February', 'March', 'April', 'May',
'June', 'July', 'August', 'September',
'October', 'November', 'December']
},
yAxis : {
title : 'Temperature',
tickCount : 3
},
data : [
{ color: 'red',
values : [10, 25, 25, 5, 35, 5, 15, 5, 10, 15, 25, 30] },
{ color: 'blue',
values : [15, 35, 15, 40, 40, 15, 20, 10, 15, 20, 30, 35 ] },
{ color: 'pink',
values : [20, 40, 30, 35, 45, 20, 25, 15, 20, 25, 30, 40] },
{ color: 'gray',
values : [25, 45, 25, 45, 50, 25, 35, 25, 25, 20, 35, 45] }
]
}";
addWidget( array(
"name" => "jmaki.charting.dojo.area",
"value"=>$value
) );
?>
to produce a chart looking like this: ![]() The second one is Solaris Express Developer Edition (SXDE), a free, quarterly release of Sun's next generation Solaris Operating System built from the source code repository at OpenSolaris.org. The release includes the latest tools, technologies, and platforms to create applications for the Solaris OS, Java Application Platforms, and Web 2.0. The current release of SXDE (09/07) shipped last month, and and I working on the one that will ship in 01/08, before morphing to Indiana. The 01/08 SXDE release will contain a brand new and optimized SAMP (Solaris, Apache 2.2.4, MySQL 5.0, PHP 5.2.4) stack, and NetBeans 6.0 with the early access plugins for PHP project support. SXDE PHP support will contain the xdebug PHP debugger and you'll even be able to set breakpoints in your PHP code with the NetBeans PHP debugger, as seen in this SXDE screenshot:
In short, with the new SXDE system, you'll get the leading edge version of Solaris, and Firefox, Thunderbird, StarOffice, Sun Studio, NetBeans 6.0, a complete SAMP stack and the tools to develop SAMP applications...in one single OS installation...Pretty nice. Next step for SXDE will to be produce the components that will be delivered in Indiana, an OpenSolaris distro , available in preview mode, as a live CD...Things are shaking up in the right direction for Solaris, and you -Mister Developer- should really have it on your radar... Ludo | ||
|
|