Sun’s ‘Light-weight UI Toolkit’ (LWUIT) has been made available for download under a version of the GPL2 open-source license, which will make it easier for developers to create applications for the Jave ME mobile/smart phone platform.
According to Sun’s Craig Gering: “We are enabling mobile developers to quickly and easily create rich, portable interfaces for their applications,” declared Craig Gering, Sun’s senior director of embedded Java software.
“This software will also help address the mobile industry’s fragmentation issue by enabling developers to create a single interface that will work anywhere Java is found.”
More information: http://lwuit.blogspot.com/
Quick post to tell you about a very useful site (recently ‘wiki-fied’ covering free software for business, development and home use. There seems to be a lot of useful stuff in there and it’s pretty active as well…well worth a look:
It can be found here – Gizmo’s Tech Support Site
Software developers are still writing applications for Windows XP, Windows 2003 and Linux in preference to Windows Vista more than 16 months after its worldwide release.
A survey by Evans Data questioned 380 US software developers and found that just eight percent are developing applications for Vista.
Almost half the respondents are focusing development efforts on Windows XP, while more than one in 10 are still writing applications for Windows 2003.
Linux was the preferred development platform for a further nine percent of those questioned.
Read more…
Sun Microsystems, Inc. today announced the pending general availability of MySQL 5.1, a new version of the world’s most popular open source database, designed to improve performance and simplify management of large database applications. A near-final release candidate of the GPL software is available for download now at http://dev.mysql.com/downloads/.
The announcement was made this morning at the sixth annual MySQL Conference and Expo . With nearly 2,000 attendees, it is the world’s largest community event for open source database developers, users, DBAs, vendors and corporate IT managers.
“If our users initially choose MySQL because of its low cost, they continue to use MySQL for its high performance, scalability and broad platform support,” said Marten Mickos, SVP, Database Group, Sun Microsystems. “MySQL 5.1 continues this tradition by performing up to 15 percent faster than previous versions in our own internal tests – making it a compelling solution for demanding Web-based enterprise applications.”
Read more…
The code below will display a hyperlinked list of all the files contained in a specified folder. This is a very simple way to have your own directory browser. Simply copy the code below into a new notepad document and save it as browser.php. Now upload the file to somewhere on your web server and browse to it. You should see an index of all files in the directory of your webserver.
<?php
$path = “/home/username/public_html/folder/”;
$dir_handle = @opendir($path) or die(“Unable to open $path”);
while ($file = readdir($dir_handle)) {
if($file == “.” || $file == “..” || $file == “index.php” )
continue;
echo “<a href=\”$file\”>$file</a><br />”;
}
closedir($dir_handle);
?>
And there you have it! A very simple way of creating a directory browser.