-
Archives
- March 2019
- March 2018
- June 2017
- May 2017
- November 2016
- September 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- April 2015
- December 2014
- October 2014
- September 2014
- May 2014
- April 2014
- March 2014
- January 2014
- November 2013
- October 2013
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
-
Meta
Author Archives: ronaldpringadi
Introduction to Logging and Tracing in PHP
If you still tracing variable in php using print_r() or var_dump() then you’ll see them directly in the screen or the web page that you’re working on. This is easy to see, but also prone to problems: What if visitors … Continue reading
Posted in php, Web Development
Leave a comment
How Big is The Big Apple?
Do you know how much bigger is Apple compared to the other big companies in the US? http://www.greenandredmarket.com/menu/biggestcompanies.htm And scroll to the lower part of the page. I’m not an apple fan boy but I can see that our society … Continue reading
Posted in Investment, Stock Market
Leave a comment
Internet Explorer (IE) friendly table DOM manipulation
Occasionaly we can manipulate HTML DOM easily by accessing the innerHTML of an element. In IE however, the following elements’ innerHTML are read only: COL, COLGROUP, FRAMESET, HEAD, HTML, STYLE, TABLE, TBODY, TFOOT, THEAD, TITLE, TR. This code will fail … Continue reading
Posted in javascript, Web Development
Leave a comment
Extjs – Ext.apply
1234567891011121314151617181920console.clear(); var a = { abc : 1, def : 2 }; var b = { abc : 1.1, def : 2.2 }; var c = Ext.apply( a , b ); //Ext.apply … Continue reading
Posted in Ext Js, javascript, Web Development
Leave a comment
MySQL Backup and Restore – Using Command Line
Here is how you backup database using command line. The first line is to backup and the second line is to restore. These commands work on both Windows and Linux. In Windows you might want to setup mysql bin directory … Continue reading
Posted in Database, Linux, MySQL
Leave a comment