WordPress :: How to get rid of curly quotes

Sep 25

If you are wordpress blogger who shares piece of code with readers, and if quotes gets converted in curly quotes by wordpress then it makes tough job for your readers to use that code. WordPress also has way to avoid this. You have to put following line in your functions.php file and your problem is solved. <?php remove_filter('the_content',...

Read More

RestKit:: Easier RESTful Web Services For iOS Apps

Sep 19

RestKit is an Objective-C framework for iOS that aims to make interacting with RESTful web services simple, fast and fun. It combines a clean, simple HTTP request/response API with a powerful object mapping system that reduces the amount of code you need to write to get stuff done. The framework provides integration with Apple’s Core Data frameworkwhich allows it...

Read More

301 Redirect non WWW. URLs to WWW. Urls

Aug 11

First of all why you should have consistent www or non www URL. Keep your address unique and don’t loose any traffic. It’s SEO best practice to prevent canonicalization problems. Search engines will consider www and non www address as two different sub domains and as content will be found same on both of them so they will penalize the website for duplicate...

Read More

glDatePicker ::A Lightweight Date Picker Calendar for jQuery

Aug 11

glDatePicker is a simple, customizable, lightweight date picker calendar plugin for jQuery weighing in 4KB compressed (11KB uncompressed). It includes the following features: forward and backward navigation current date highlight restricting selection of dates outside of a range restricting selection of dates beyond N-days from start date restricting forward /...

Read More

Text selection color change in Firefox and Chrome

Aug 03

Many time it happens when you try to select some text in browser the selected text is shown with blue color background.If for for fun you want to change its color then you can use following css3 property. ::-moz-selection{background:#ff5e99;color:#fff;text-shadow:none}::selection{background:#ff5e99;color:#fff;text-shadow:none}   ...

Read More
Page 1 of 3712345102030...Last »