Contact Grabber
If you are a social media website developer , sometimes you might search for grabbing contacts from a particular email account if the password is given. I also did the same. In most of the cases it did not work properly. But recently i got a contact grabber from phpclasses.org which works perfectly on Gmail, [...]
Pagination in Ruby on Rails
Old rails has a buitl in pagination option. For example is you have to paginate @user, which is a model object for the table user
def user_list
@user_pages,@users=paginate(:users,:order=>’name’)
end
But in new version of rails, they removed the pagination option. So you need to install a plugin , which name is will_paginate
You can install this plugin using gem
gem install [...]
Intelligent Watermark (php + gd)
This entry is part 5 of 5 in the series Online PhotoshopOnline Photoshop in PHP Part (5) >>
(image after watermarked with gmail logo)
Those who haven’t seen the online photoshop tool created by me, just click here: http://www.sajithmr.com/photoshop
Today we will implement the watermarking on images using php gd library. Intelligent watermarking means, apply a logo [...]




