This blog will contain non-technical, fun and personal posts. All my technical posts will be posted on SMD's blog, http://www.smd.com.my. Looking forward to see you there! :-)

Running Eclipse With More Memory

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.

MySQL Case Sensitive On Linux

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