Me n My Programming

If Only I Have TIme

Oracle Limit Clause

This is an example that could help you in creating a pagination in Oracle DB: SELECT col1, col2 FROM ( SELECT a.*, rownum rnum FROM ( SELECT col1, col2 FROM … Continue reading

October 13, 2015 · Leave a comment

Sublime Text with SFTP

http://wbond.net/sublime_packages/sftp/installation

April 13, 2015 · Leave a comment

OSX ~ View Hidden File

I’m learning .htaccess and found out that it was automatically hidden by osx by default. Quick search brought me to this site that tell you to use terminal to show … Continue reading

August 16, 2014 · Leave a comment

Eclipse – Open URL from View

I found this link that explain how to make a link that open the default browser. Previously I was trying to user hyperlink and openBrowser listener to open it but … Continue reading

May 23, 2014 · Leave a comment

Bootstrap Icon

This is for those who is searching the icon name supplied by default by Bootsrap. http://getbootstrap.com/2.3.2/base-css.html#icons    

April 16, 2014 · Leave a comment

Eclipse ISharedImages

Eclipse has provided some images (icons) that could be used directly. This website provide the list of images that could be used.

March 27, 2014 · Leave a comment

Adding JDBC library as Eclipse PDT dependency

I was developing an Eclipse plug-in that pull data from MySQL database when I encounter a problem with the database connection when trying to test the plug-in using the Debug … Continue reading

March 25, 2014 · 1 Comment

Set Default Time Zone

It is a good practice that before we get the date and time using Php, we need to set the default time zone. This is the code to set the … Continue reading

February 10, 2014 · 3 Comments

ITSB Spring 105 – The Importance of @Autowired in code

When you’re using Spring MVC, there are certain keyword that you must have and should not forget when you’re coding. For instance, the @Autowired keyword. This will link your code … Continue reading

September 30, 2013 · Leave a comment

ITSB Spring 104 – Javascript Input Validation

Sometimes, we need to check the input before they were store. This is the example on how it can be used: function validateForm() { var x=document.forms[“myForm”][“fname”].value; if (x==null || x==””) … Continue reading

September 17, 2013 · Leave a comment