Sun Java is promoting the JAVA STORE, somewhat like an istore for javap apps and java fx apps.
From the sun java website: The Java Store is a JavaFX-powered storefront that provides an easy and secure means of discovering and acquiring compelling Java and JavaFX applications. Social networking, games, productivity tools and business applications are examples of what you can download from the Java Store. This easy-to-use storefront is free, and is available for U.S. residents
There will be games and apps, a good way for more people to know and experience java apps in their homes
When dealing in PHP with imported data from excel spreadsheets , you might encounter that excel dates looks very different.
Excel time looks like this 40179
You cannot compare or compute dates in PHP if it looks like that, it should be on unixtime
which looks like this 1104537600
Here is a quick function to convert excel date to unixtime date
<?
$DayDifference = 25569; //Day difference between 1 January 1900 to 1 January 1970
$Day2Seconds = 86400;// no. of seconds in a day
$ExcelTime = 30128;//integer value stored in the Excel column
$ExcelTime = substr($ExcelTime,0,5);//trim excel time get only whole 5 digit
$UnixTime = ($ExcelTime - $DayDifference)*$Day2Seconds;
echo $UnixTime;
?>
Error:
PHP ERROR Allowed memory size of 8388608 bytes exhausted
In php it means your memory use has exceeded the memory limit set by to execute a function.
Solution:
Type this above the function you are trying to excute ini_set(â€memory_limitâ€,â€16Mâ€);
or any desired memory size you wish
So Easy to use on your web apps
You can customize the css,colors
Lightsize,clean code
Compatible with ie6,ie7,ie8,firefox, safari and chrome
Web 2.0 style buttons http://www.p51labs.com/simply-buttons-v2/
A very promising java web development framework
build your java web apss fast using the play framework
nice templating style, easy integration of java libraries and many more