Categories
- Administration (8)
- Asterisk PBX (2)
- Debian GNU/Linux (2)
- Development (29)
- Doctrine ORM (3)
- jQuery (2)
- Zend Framework (7)
- How To's (6)
- Ideas (5)
- Networking (3)
- Software (7)
- Joomla! (1)
- Mozilla Firefox (2)
- osCommerce (3)
- WeeChat (1)
- Uncategorized (1)
- Administration (8)
Archives
- September 2010 (1)
- August 2010 (1)
- July 2010 (3)
- June 2010 (8)
- May 2010 (1)
- March 2010 (3)
- February 2010 (2)
- January 2010 (2)
- December 2009 (4)
- November 2009 (3)
- October 2009 (7)
- September 2009 (4)
- August 2009 (2)
Tags
acl add-on authentication bootstrap chroot cli cre loaded css date picker filter fix freedom gnu/gpl go google javascript log4net logging model mutator mysql notification odbc oop orm patch php plug-in python resource ruby server socket status stylish tip tools tracing tray view x server zend_auth zend_controller zend_date zend_formBlogroll
See Also
Category Archives: Development
Translating variable strings with gettext or “How to translate Doctrine’s enums”
Translating of something with gettext is well-discussed problem, so there’s no need to discuss it again. Everything works like a charm, when you dealing with string constants. But what to do if you need to translate a string retrieved from some variable, … Continue reading
qTip v.1.0.0-rc3 for jQuery v.1.4.2
If you are using qTip plug-in for jQuery and have updated your jQuery to version 1.4.2, you might notice that qTip become broken. That’s because of jQuery’s change in logic of jQuery.data(el, key, data) function. Before version v.1.4.2 it returned … Continue reading
Fast debug someone else’s PHP application
Sometimes you need to make a small fix to someone’s code (e.g. you are hacking existing application). And unfortunately 85% times you’ll meet strange bugs. Most of such bugs are because of unexpected “input”, e.g. you expect that variable should be … Continue reading
Beware of PHP’s list() function
If you are using list() function with variable, like this: $arr = array(‘green’, ‘apple’); list($color, $fruit) = $arr; You should pay attention to the order of variables you assign if one of them has same name as initial array. Else you’ll … Continue reading
Joomla! files and directories to ignore on versioning
After I was hired for another project of Joomla! based website, I realized that I need a list of files and directories to ignore with the stupid content tracker. I love to keep all changes I made tracked by git. So today, I’m going to list … Continue reading