Dojo 0.9 Beta has been released. In Dojo 0.9 dojo.debug() is no longer your friend. They have ported Firebug. dojo.firebug() is a port of Firebug Lite.
What this means is that if you are viewing your app on a browser without Firebug, not only will you not get runtime errors, but you’ll get a debugger… [...]
Posted on July 7th, 2007 by SMD
Filed under: Dojo | No Comments »
Alex has updated the why dojo article. It’s a great article to read for everyone wanting to know what it does and why and also how it compares to the other popular toolkits/ajax framework.
The why dojo article is here.
Posted on July 7th, 2007 by SMD
Filed under: Dojo | No Comments »
The -vmargs argument can be used to pass arguments about the virtual machine. This is an example :
eclipse -vmargs -Xmx256M
This command tells Eclipse to run with a maximum of 256 MB of RAM. RAM size depends on how much RAM you have.
Posted on July 5th, 2007 by SMD
Filed under: Open Source | No Comments »
A good rule to remember. MySQL are case sensitive only table and database identifiers and only on platforms with case-sensitive filenames (Linux/Unix). So, If you’re developing a system. Do remember. MySQL are case sensitive. An example:
Bad Practice:
select * from Project
Good Practice:
SELECT * FROM project
Ref: Identifier Case Sensitive
Posted on July 5th, 2007 by SMD
Filed under: PHP Programming | No Comments »