Deny access to particular file or extension using .htaccess

While updating all of my artwork developed for clients to my server, I ended up uploading the .psd files as well. However, I wanted to deny access to the “.psd” sources and the royalty free artwork I had purchased and downloaded from graphic download sites. While googling a possible solution I ended up on this StackOverflow question How to deny access to a file in .htaccess.

Read more

Smooth Animations in Cordova Hybrid App

While working with Cordova Apps, found that the jQuery Animation effects were not smooth. While googling and searching for solution on StackOverflow I found many answers. But one answer on a Chrissilich’s website(link below) worked amazingly for me. So the solution was to add this particular CSS code to the element to be animated. -webkit-transform: translateZ(0);

Read more