Why I love Django 1.2.3, colors at console
Magento – Discount Coupon in quick checkout review step
For Magento 1.4.1 ———– If you configure onepage checkout in Magento store, buyers will have no chance to use discount coupon. However, there’s way to do so with little customization. I have implemented coupon in review step of onepage checkout. 1. Override Onepage checkout model – core/Mage/Checkout/controllers/OnepageController.php. Here mainly you have to override _getReviewHTML() function [...]
Nepal Unites – Social Enterprise?
Among those slogans of New Nepal and Nepal Divides, there’s social forum which talk about Nepal Unites. The group is non-other than Nepal Unites. If you have facebook account, you might already have know it. They are pretty pioneer to run facebook campaign. Campaign like Die Nepal Bandha Die, No to Bandha – Yes to [...]
NetBeans 7.0 and Python plugin
Currently there is no official release of the python plugin for NetBeans 7 but support can be enabled by adding the Developer Plugin listings to your NetBeans 7 install. To do this: Start NetBeans 7 Click on Tools > Plugins When the Plugins window opens click the Settings Tab In the Settings tab click the [...]
TCPDF – HTML to PDF conversion, encoding problem for extended chars
TCPDF is a-little-great HTML to PDF conversion PHP library. One of main problem, I (and lot others) had encountered displaying extended characters (like European). To resolve this, you need set $unicode parameter false and pass $encoding parameter other character set. Most of given example comes with, $unicode=true and $encoding=’UTF-8′. Below different examples: Default for UTF-8 [...]