How the new feature in Orkut (My Events) ruined an event

Posted by Sajith M.R in general on 02. Dec, 2008 | 7 Comments

Recently we decided to organize the 3rd barcamp of kerala on 7th December 2008. The cheif organanizers Kenney Jacob and Anand Subramanian started promotions and publicity for the event. They stated mailing, sending sms and further online promotions. Our greate, romantic, family , friends Orkut Community introduced a new feature called  My Events, in which [...]

Contact Grabber

Contact Grabber

Posted by Sajith M.R in Downloads, php, php source code on 06. Nov, 2008 | 38 Comments

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, [...]

Crop Image Like Orkut

Crop Image Like Orkut

Posted by Sajith M.R in Downloads, php, php source code on 05. Jun, 2008 | 15 Comments

Online Photoshop in PHP (Series Part 4) >>

Today we will discuss about cropping of images using php and gd library.
Look at the simple example here:
http://www.sajithmr.com/photoshop-tuts/crop/simplecrop.php

$x1 = $_GET['x1'];
$y1 = $_GET['y1'];

$x2 = $_GET['x2'];
$y2 = $_GET['y2'];

$image_object = imagecreatefromjpeg(’hari.jpg’);
$image_cropped = Crop($image_object,$x1, $y1, $x2,$y2);
$temp_path = rand(1,99999).”hari.jpg”;
imagejpeg( $image_cropped,$temp_path);

header(’Location: simplecrop.php?img=’.$temp_path );

?>
Here the Crop function is doing [...]

Orkut/Facebook/Flickr/Hi5 is banned in my Office :( Need a Solution ? Yes Answer is Here !!!

Posted by Sajith M.R in html, webworld on 11. Dec, 2007 | 3 Comments

If your organization / office blocked your favorite website, dont worry, we have a solution.
If you have your own website / server and ssh access to it, you can browse any website through that. All what you need is putty.exe (in windows).
See below the steps for that:
You need putty for this purpose. [...]