http://www.pixlr.com/editor/
Not bad but cannot access to keys to do copying or paste despite shortcuts stated in the toolbar
Archive for February, 2009
Free Online Image Editor – pixlr
Posted in design, tagged free design editor on February 20, 2009 | 2 Comments »
Funny Words Speaking from Hearing Impaired
Posted in hearing impaired, tagged joke, speaking on February 19, 2009 | Leave a Comment »
I am not 100% proficient in lip-reading and speaking. Being hearing impaired but can fairly speak and hear quite well, I had free speech training during primary,secondary and polytechnic school days. My speech vocabulary keeps rising up when I enter working world 8 years back. I learn alot of pronouncation from my previous and current colleagues.
The [...]
Howo to Stop Sending Email with Huge Files
Posted in email, tagged delete, email on February 11, 2009 | Leave a Comment »
Url: http://ask-leo.com/how_can_i_stop_a_message_in_my_outlook_outbox_that_wont_send.html
I disable the internet connection and close the outlook. Then opened the outlook and deleted the email in the outbox!!! It works!
Javascript : Add Days to Date Object
Posted in javascript, tagged add date on February 10, 2009 | Leave a Comment »
// get fields
var startDate = eval(‘formObj.StartDate’ + rowId);
var totalInterval = eval(‘formObj.totalInterval’ + rowId);
var endDate = eval(‘formObj.EndDate’ + rowId);
// get start date object
var startDateArray = startDate.value.split(‘/’);
var dateObj = new Date(startDateArray[2], startDateArray[1], startDateArray[0]);
// get interval
var interval = parseInt(totalInterval.value);
// set start date object
dateObj.setDate(dateObj.getDate() + interval);
// format end date display
var d = dateObj.getDate();
var m = dateObj.getMonth();
var y = dateObj.getFullYear();
endDate.value = [...]
PlayGroup Research
Posted in toddler, tagged playgroup on February 5, 2009 | 2 Comments »
http://www.mumcentre.com/index.php?option=com_classifieds&act=providers&task=details&cid=2102
http://www.kiasuparents.com/kiasu/enrichment/ntuc-childcare-co-operative-ltd
http://www.hua.com.sg/courses/local/1512.htm
Still debugging trigger deadlock
Posted in sql, tagged deadlock, trigger on February 4, 2009 | Leave a Comment »
Since earlier post, the deadlocks still occur… Now trying to resolve it step by step…
1. Opened my trigger script and see… It has for insert,update,delete and invoke stored procedure.
2. Trying to get all the triggers to compare.. I know I should not do this way but just checking
http://bytes.com/groups/ms-sql/609420-how-view-all-triggers
3. Tried running the connectionA and connectionB script [...]