Archive

Archive for the ‘Economy’ Category

2014 – FIRST PLUGIN ” WP Property Sale/Rent “

January 4, 2014 3 comments

WP Property Sale/Rent for creating and managing real estate agents and people who are willing to list their property. https://selvabalaji.wordpress.com

Great options to list properties on your own WordPress website. WP Property Sale/Rent for creating and managing highly real estate agents and people who are willing to list their property listing on their own WordPress site.

http://wordpress.org/plugins/wp-sale-property/

WP Property Sale/Rent is the WordPress plugin for creating and managing highly customization real estate, property management, and completely custom listings showcase websites. Turn your WordPress powered site into a real estate site. Create listings, upload images, display a dynamic map, slideshow, agent information,Google Maps, Send A Inquiry to agents Directly, Image slide show, and much more.

As always, integration is seamless, the system is expandable and customization, functionality is rich, and we are here to support it.

Capture

If you are looking to build a site where you can list property for sale or rent, this is the plugin you need.

Features

  1. Add Property
  2. Add multiple property photos
  3. Advanced property search
  4. jQuery slider in property detailed view
  5. property options so you can add any type of property listing
  6. multiple categories
  7. Property search widget.
  8. Advanced search widget and custom page.
  9. Custom property listing page
  10. Custom manage-able property types
  11. Manage the number of property listing per page

Advanced property search page

  1. Create a normal page in your wordpress website
  2. Editor of the page, add this short code [PROPERTY_ADVANCED_SEARCH]

screenshot-8

screenshot-9

screenshot-10

screenshot-1

screenshot-2

screenshot-3

screenshot-4

screenshot-5

screenshot-6

screenshot-7

Jquery Timeago Implementation with PHP.

Nowadays timeago is the most important functionality in social networking sites, it helps to updating timestamps automatically. Recent days I received few requests from 9lessons readers that asked me how to implement timeago plugin with dynamic loading live data using PHP. In this post I am just presenting a simple tip to implement timeago in a better way.

Why Live Query
LiveQuery utilizes the power of jQuery selectors by binding events or firing callbacks for matched elements auto-magically, even after the page has been loaded and the DOM updated.

Code
Contains javascipt code. $(this).timeago()- here this element is refers to timeagoclass selector of the anchor tag.

 

// <![CDATA[
javascript” src=”js/jquery.min.js”>
// ]]>
// <![CDATA[
javascript” src=”js/jquery.livequery.js”>
// ]]>
// <![CDATA[
javascript” src=”js/jquery.timeago.js”>
// ]]>
<script type=”text/javascript”>
$(document).ready(function(){
$(“.timeago”).livequery(function() // LiveQuery
{
$(this).timeago(); // Calling Timeago Funtion
});
});
</script>

//HTML & PHP Code
<!–?php
$time=time(); // Current timestamp eg: 1371612613
$mtime=date(“c”, $time); // Converts to date formate 2013-06-19T03:30:13+00:00
?>

You opened this page <a href=’#’ class=’timeago’ title=”<!–?php echo$mtime; ?>“></a>

 

Facebook introduces video on Instagram

June 22, 2013 5 comments

BaltNEW YORK: Facebook is adding video to its popular photo-sharing app Instagram, following in the heels of Twitter’s growing video-sharing app, Vine.

Instagram co-founder Kevin Systrom said on Thursday that users will be able to record and share 15-second clips by tapping a video icon in the app. They can also apply filters to videos to add contrast, make them black and white or different hues.

“This is the same Instagram we all know and love but it moves,” he said at an event held at Facebook’s Menlo Park, California, headquarters.

Vine, which launched in January, has 13 million users and lets people create and share 6-second video clips. Instagram has 100 million users, up from 20 million when Facebook bought the company more than a year ago. If users like it, Facebook’s move could propel mobile video sharing into the mainstream.

To use the video feature, Instagram users can tap on the same camera icon they use to snap photos. A new video camera icon will appear on the right side. Tap it and a screen with a red video button will let you record clips of sunsets, kids running in parks or co-workers staring at their computer screens.

The app will record as long as your finger is on the red button or for 15 seconds, whichever comes first. Not unlike Vine, taking your finger off the button will stop the recording, allowing you to shoot the scene from a different angle or record something else altogether. Once you have 15 seconds of footage, you can play it from the beginning and post it on Instagram to share with others.

Given Vine’s popularity, “it is perhaps more surprising that Facebook has not introduced video for Instagram sooner. There is no doubt Twitter will move quickly to up the ante on Vine and this could undercut Facebook’s efforts with video on Instagram,” said Eden Zoller, principal consumer analyst at Ovum, a technology research firm.

Step-by-Step guide to Facebook Conversion Tracking

Step 1: Once you log in to your ‘Ads Manager’ tab, click on the Conversion Tracking button on the left side bar.

FB-1

Step 2: Then click on the ‘Create Conversion Pixel’ tab to begin the process.

FB-2

Step 3: You will be directed to this pop-up, which will ask you for a:

1. Name: An appropriate name will help you remember what you are tracking. (Example: Lead Generation – GATE Ad)

2. Category: This will help you decide the type of action that you want to track on your site. You can choose from the following:

1. Checkouts

2. Registrations

3. Leads

4. Key Page Views

5. Adds to Cart

6. Other Website Conversions

(For the purpose of this example, we have selected ‘Leads’).

FB-3

Step 4: You will be able to see a pop-up window with a JavaScript code. This is the code that you will have to add to the page where the conversion will happen. This will let you track the conversions back to ads which you are running on Facebook.

FB-4

The code should be placed on the page that a user will finally see when the transaction is complete.

Here is the tricky part. The code should not go on all pages. For that matter, it should not even go to the landing page of your product. The code should be placed on the page that a user will finally see when the transaction is complete.

For Example: If you want to track when students register for your GATE coaching, paste the code on the registration confirmation page/thank you page and not on the form that they need to submit.

How do you confirm that your conversion is working properly?

1. Check that the javascript snippet has been placed on the correct conversion page. Visit the page where the pixel has been embedded, right click and go to ‘View Page Source’ to find the pixel. The code should have the tag of the HTML. See image below.

FB-5

2. Check that Facebook is receiving the conversion events from your website. Go to the conversion tracking tab in your Ads Manager account. There you will see a list of the conversion tracking pixels that you have created. If the conversion tracking pixel has been successfully implemented and a conversion event has been recorded, it will be reflected in the Pixel Status column. If the status shows active, it means that the page which contains the pixel has been viewed by users. If it shows inactive, it means that over the last 24 hours, the page with the pixel has not been viewed.

FB-6

3.Later, when you  create your Facebook ad , you need to check the track conversions box under the campaign, pricing and schedule tab to enable tracking.

FB-7

Upload Cover Photo to Facebook via PHP

January 4, 2013 1 comment

Here is a tutorial to upload a Cover Photo on Facebook via PHP. We will need Facebook Application ID and Secret, and Facebook files from Github.com then upload to your web space only the src  folder. Now create a file called upload.php and upload it to your web space. Open upload.php with notepad and add this code:

<?php
 
ini_set('display_errors', 1);
 error_reporting(E_ALL);

 require 'src/facebook.php';

 $facebook = new Facebook(array(
 'appId' => "xxxxxxxxxxxxxxxxxxx", //Facebook App ID
 'secret' => "xxxxxxxxxxxxxxxxxxx", // Facebook App Secret
 "cookie" => true,
 'fileUpload' => true
 ));

 $user_id = $facebook->getUser();

 if($user_id == 0 || $user_id == "")
 {
 $login_url = $facebook->getLoginUrl(array(
 'redirect_uri' => 'https://selvabalaji.wordpress.com/upload.php?cover='.$_GET['cover'].'', // Replace with your site url
 'scope' => "publish_stream,user_photos"));

 echo "<script type='text/javascript'>top.location.href = '$login_url';</script>";
 exit();
 }

 //get user album
 $albums = $facebook->api("/me/albums");
 $album_id = ""; 
 foreach($albums["data"] as $item){
 if($item["type"] == "cover_photo"){
 $album_id = $item["id"];
 break;
 }
 }

 //set timeline cover atributes 
 $full_image_path = realpath($_GET['cover']);
 $args = array('message' => 'Uploaded from hhttps://selvabalaji.wordpress.com/');
 $args['image'] = '@' . $full_image_path;

 //upload cover photo to Facebook
 $data = $facebook->api("/me/photos", 'post', $args);
 $picture = $facebook->api('/'.$data['id']);

 $fb_image_link = 'http://www.facebook.com/profile.php?preview_cover='.$data['id'].''; //redirect to uploaded facebook cover and change it
 echo "<script type='text/javascript'>top.location.href = '$fb_image_link';</script>";
?>

Now that just type in the URL of your site followed by the name of the image file and you’re done!
Example : http://yoursitename.com/upload.php?cover=selvabalaji.gif

Today – WordPress New Version 3.5 Released

December 12, 2012 1 comment

On December 11, 2012, WordPress Version 3.5, named for jazz drummer Elvin Jones, was released to the public. For more information on this enhancement and bug-fix release, read the WordPress Blog, and see the Changelog for 3.5

 

Highlights

  • New Media Manager
    • Beautiful interface: A streamlined, all-new experience
    • Create galleries faster with drag-and-drop reordering, inline caption editing, and simplified controls
    • Insert multiple images at once with Shift/Ctrl+click
  • New Default Theme – Twenty Twelve
    • Simple, flexible, elegant
    • Mobile-first, responsive design
    • Gorgeous Open Sans typeface
    • Uses the latest Theme Features
  • Admin Enhancements
    • New Welcome Screen
    • Retina-Ready (HiDPI) Admin
    • Hide Link Manager for new installs
    • Better accessibility for screenreaders, touch devices, and keyboard users
    • More polish on admin screens, including a new color picker
  • For Developers
    • WP_Comment_Query and WP_User_Query accept now meta queries just like WP_Query
    • Meta queries now support querying for objects without a particular meta key
    • Post objects are now instances of a WP_Post class, which improves performance and caching
    • Multisite’s switch_to_blog() is now significantly faster and more reliable
    • WordPress has added the Underscore and Backbone JavaScript libraries
    • TinyMCE, jQuery, jQuery UI, and SimplePie have all been updated to the latest versions
    • Image Editing API for cropping, scaling, etc., that uses ImageMagick as well as GD
    • XML-RPC: Now always enabled and supports fetching users, managing post revisions, searching
    • New “show_admin_column” parameter for register_taxonomy() allows automatic creation of taxonomy columns on associated post-types.

What’s New

Dashboard

  • Switch to prompt text in QuickPress to accommodate longer translated input labels
  • Button styles updated throughout Dashboard to more modern, rectangular shape
  • Help Text improvements throughout

Posts

  • Rename the “HTML” editor tab to “Text”
  • Prevent child categories from being visually promoted to the top level after Quick Edit

Media

  • Add oEmbed suport for SoundCloud.com, SlideShare.net, and Instagram.com
  • New Media Manager: Insert multiple galleries per post and independently order images

Accessibility

  • Add visible focus within admin screens for better accessibility.
  • Add “Skip to content” link to all screens in the admin.
  • Add “Skip to toolbar” accessibility shortcut in the admin.
  • Add ability to log out of user account without mouse input.
  • Add “tab out” of the plugins and themes editors textareas.

Links

  • Link Manager is hidden for new installs and for any existing installs that have no links (all sites with existing links are left as is). This can be restored with Link Manager Plugin
  • Display links in widget if no link categories

Appearance

  • Widgets menu is hidden if your theme hasn’t defined any sidebars
  • Improve display of available custom headers with jQuery Masonry

Plugins

Users

  • Display name defaults to first name and last name for new users
  • Force the user to explicitly choose between content deletion and reassignment when deleting users

Settings

Multisite

  • Multisite installs now work with WordPress in a subdirectory
  • Turn off ms-files.php by default
  • File quotas disabled by default on new installs 

 

Today RAJINI’S BIRTHDAY 12-12-12

December 12, 2012 2 comments
English: Rajinikanth at the audio release of E...

English: Rajinikanth at the audio release of Enthiran (Photo credit: Wikipedia)

Superstar Rajinikanth celebrates his 60th birthday today and he will be spending the day with his family. Rajini’s birthday is no less than a festival for his fans the world over.

It is reported that his family and close friends have organized a Shashitabadapoorthi puja (60th birthday celebrations) at the famous Tirukkadiyur temple near Tiruchi. However, it should come to no one’s surprise that Rajini’s fans will be lining up for special poojas and welfare activities for their favourite idol.

Shivaji Rao Gaekwad was on December 12, 1949 and had very humble beginnings. He served as a ticket collector in a local shuttle bus in Bangalore when he was discovered by the legendary K. Balachander who renamed him Rajinikanth.

The year has been exceptional for Rajini. Breaking all box office records Endhiran has emerged as the biggest hit ever. There have also been two new additions to his family. Daughter Aishwarya Rajinikanth, who is married to actor Dhanush gave birth to a baby boy and his other daughter Soundarya Rajinikanth got married to industrialist Ashwin Kumar.

selvabalaji.wordpress.com  wishes Rajinikanth a very happy birthday!

 

Watch Thuppakki Movie Online HQ (youtube)

November 19, 2012 4 comments


Vijay’s Thuppaki Review – First Day First Show Report


One of the key reasons for Thuppaki’s sky high expectations is because the movie marks the beginning of Vijay’s strategy to working with top rung directors (barring Shankar’s Nanban which was a faithful remake of 3 Idiots). This is probably the best line-up of crew members and technicians for a Vijay movie. On the casting side, Kajal Aggarwal, Vidyut, Sathyan, Jayaram have provided the required support for Vijay to showcase his talent.  Does the script keep you engaged throughout the running time of 2 hour 45 minutes? Will Thuppaki uplift the festive mood this Diwali? Definitely, Yes.

The story opens in Mumbai with a bomb blast in a public bus. Jagdish (Vijay) is on a mission to find the terrorist gang and people behind the blast. There are twists and unexpected turns along the way. The story has enough ammo to fire up Vijay’s fan base.

Thuppakki is Vijay; Vijay is Thuppakki


Vijay has carried the movie from start to finish with his self-assured confidence and trade-mark style. The script makes frequent switch-overs from intense sleeper cell scenes to commercial love/comedy scenes. Vijay was able to make some bumpy transitions look convincing with his acting abilities. As always, Vijay dances effortlessly and comedy comes to him naturally. Vijay’s costumes, pleasant looks and mischievous expressions will surely win him more female fans. Vijay looks fit and younger in his toned muscular physique.

Story, Direction and Screenplay


AR Murugadoss’ engaging story is narrated in gray tones balanced with commercially colourful compromises. The movie may have minor similarities to Ramana which has worked out well again. Murugadoss has done his homework by consulting ex-CBI chief Karthikeyan and the details are blended in nicely while dumbing it down for audience. AR Murugadoss has intentionally slowed down the pacing and narration in critical scenes (e.g., Hospital security chief conversation in the terrace) to get the message across. The dialogues about common people’s (un)willingness to put their life at risk to fight terrorism are well written and delivered by Vijay. Also, the hero putting his sister in a high-risk operation provides the impetus and emotional connect with the audience.

It is interesting to note that the villain (Vidyut) tracks down the hero instead of other way around, which is usually seen. Another aspect which is told subtlely is Vijay’s undercover act passing off as a common man similar to the way terrorist sleeper cells operate. Vijay’s exterminating the sleeper cell operations in Mumbai is not revealed to his lover, family or others (except his cop friend Sathyan). This aspect could have been underlined a bit for additional impact and stronger appreciation for Jagdish’s character.

The love/comedy scenes and songs definitely stick out like sore thumb since they are not integrated well with the story line. It is understandable why AR Murugadoss had to make these compromises. We are pointing this out without really complaining since such intrusions have become essential to satisfy the fan base and common audience with diverse set of expectations.

Highlights 


  • Stylish portrayal of Vijay in anti-terrorism operations have a perfect closure with mass elements. For instance, scenes such as simultaneous execution of 12-for-12 sleeper cell killings at precisely the same minute, sister rescue scenes with sniffer dog, and the final scene where he symbolically blows up the ship with his hand gesture and subsequent punch dialogue before villain killing are sure treats for fans.
  • AR Murugadoss seems to have taken a tip from his association with Aamir Khan in Ghajini Hindi remake. Upon Aamir’s insistence, some emotional scenes involving Asin’s memory were added after climax action sequences in Hindi version. AR Murugadoss has used similar finish in Thuppakki giving a nice emotional touch and meaning to the movie by extolling the virtues of army.
  • Kajal has done her role exceptionally well in perking up the lighter moments with her expressions, dance moves in songs and chirpy love scenes laced with humour. Kajal has good scope in both “Antarctica” song (interesting concept) and “Alaika Laika” (showcasing her dance moves). Kajal’s presence enlivens the scenes and songs for people looking for relief from action scenes.
  • Santhosh Sivan‘s Cinematography and Sreekar Prasad‘s editing keep the narration tight despite relatively long running time. The candid capture of Mumbai adds to the style and character of the city. Santosh’s fast working style is critical to the successful shooting of scenes in real locations in Mumbai. Harris scores big in the final minutes with his song (“Poi Varavaa“) dedicated to army jawans which is sure to leave a lump in your throat. Harris’ BGM keeps up the pace and makes the operations look convincing with his theme track.

What could have been better?


  • Song picturizations look low-budget. Almost 4 out of 5 songs solely rely on Vijay’s dance moves, which gets a bit repetitive for general public. AR Murugadoss and Santhosh Sivan have pulled out some of the old tricks of picturizing the songs in big stadiums, by using bright incandescent lights in the background to make it look richer. Vijay’s introduction song “Kutti Puli Kootam” and opening fight scenes are speed breakers right after the word “go”.
  • Screenplay could have been tighter. Even though the individual scenes were riveting, the bigger purpose required to latch the audience interest lacks full conviction. The objective of killing the head of sleeper-cell (Vidyut) lacks macro-connection resulting in lack of depth for Vijay vs Vidyut’s clash. Some of the lengthy climax fight sequences in the ship could have been trimmed. The final 10+ minutes of man-to-man combat scenes with Vidyut led to some chatter among audience.

Bottomline


With right promotions and word of mouth reaching out to neutral and family audience, Thuppakki is well positioned to get tagged along with Ghilli and  Pokiri.

Reviewer Rating – 

 

Paradesi First Look – bala ready for next national award!

October 30, 2012 2 comments

 

 

Thupakki Songs

October 30, 2012 Leave a comment

 Thupakki Tamil Movie

01.Kutti Puli Koottam
Artist(s): Hariharan, Tippu, Narayana, Satyan, Ranina Reddy
Lyricist: Viveka

02.Antarctica
Artist(s): Vijay Prakash, Krish, Rajeev, Devan
Lyricist: Karky

03.Poi Varavaa
Artist(s): Karthik, Chinmayee
Lyricist: Pa. Vijay

04.Google Google
Artist(s): Vijay, Andrea Jeremiah, Joe, Krishna Iyer
Lyricist: Karky

05.Vennilave
Artist(s): Hariharan, Bombay Jayashri
Lyricist: Na. Muthukumar

06.Alaikaa Laikaa
Artist(s): Javed Ali, Sayanora Philip, Sharmila
Lyricist: Pa. Vijay

07. jagadish On Mission (Theme)

India soon to be the biggest source of PHP developers?

English: India. Area controlled by India in da...

The number of Indian PHP developers has been growing at a large pace in the last few years, when compared to other countries. A few years ago, India was just one of the top ten countries with more PHP developers. Now India is number 2 and is almost surpassing United States, which is still number 1.

While it is difficult to take such broad conclusions seriously based on member statistics of a single community, PHPClasses does have a large user base and can arguably be considered representative. Any article tagged India and software these days attract the usual crap about how Indian developers are the worst and how everybody who outsources to India never does it again. So I was surprised when some of the usually ‘silent’ majority of the client base who continue outsourcing development to India came out to defend their decision.

I did come away with a very interesting statistic; Indian developers have won most awards this year for their contribution against sizable competition. Most Indian developers I meet have difficulty understanding the concept of giving back to the community, so it’s always refreshing to see a number of people doing exactly that.

Import Yahoo contact to website / download CSV

June 28, 2012 1 comment

Image representing OAuth as depicted in CrunchBase

Written in PHP and using cURL, this script imports the names and email addresses from your yahoo account (yahoo id and password needed to login to yahoo from the script and retreive the address book).

<!–?php–>
ob_start();
session_start();
require ‘globals.php’;
require ‘oauth_helper.php’;
require ‘yahoo_function.php’;

// Callback can either be ‘oob’ or a url whose domain must match
// the domain that you entered when registering your application

$callback='<your call back URL>’;

if($_REQUEST[‘oauth_verifier’] != ”) {
$request_token = $_REQUEST[‘oauth_token’];
$oauth_verifier = $_REQUEST[‘oauth_verifier’];
$request_token_secret = $_SESSION[‘request_token_secret’];

$accessToken = get_access_token(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET,$request_token, $request_token_secret,$oauth_verifier, false, true, true);

$access_token = urldecode($accessToken[3][‘oauth_token’]);
$access_token_secret = urldecode($accessToken[3][‘oauth_token_secret’]);
$guid = $accessToken[3][‘xoauth_yahoo_guid’];

$callcont = callcontact(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET, $guid, $access_token, $access_token_secret, false, true);
print ‘Total Email COntact :’ .$callcont[‘contacts’][‘total’];
print ‘<br/><br/>’;

print ‘asda’.($callcont[‘contacts’][‘total’]);
for($i=0; $i<=$callcont[‘contacts’][‘total’];$i++) {
print ‘<br/><br/>’;
print $callcont[‘contacts’][‘contact’][$i][‘fields’][0][‘value’];
print ‘<br/><br/>’;
}

}else{

$retarr = get_request_token(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET,$callback, false, true, true);

if (! empty($retarr)){
$request_token = $retarr[3][‘oauth_token’];
$request_token_secret = $retarr[3][‘oauth_token_secret’];
$request_url = urldecode($retarr[3][‘xoauth_request_auth_url’]);
$_SESSION[‘request_token_secret’] = $request_token_secret;
header(“location:https://api.login.yahoo.com/oauth/v2/request_auth?oauth_token=&#8221;.$request_token);
}
exit(0);
}
?>

Yahoo_function.php

<?php

function get_request_token($consumer_key, $consumer_secret, $callback, $usePost=false, $useHmacSha1Sig=true, $passOAuthInHeader=false)
{
$retarr = array(); // return value
$response = array();

$url = ‘https://api.login.yahoo.com/oauth/v2/get_request_token&#8217;;
$params[‘oauth_version’] = ‘1.0’;
$params[‘oauth_nonce’] = mt_rand();
$params[‘oauth_timestamp’] = time();
$params[‘oauth_consumer_key’] = $consumer_key;
$params[‘oauth_callback’] = $callback;

// compute signature and add it to the params list
if ($useHmacSha1Sig) {
$params[‘oauth_signature_method’] = ‘HMAC-SHA1‘;
$params[‘oauth_signature’] =
oauth_compute_hmac_sig($usePost? ‘POST‘ : ‘GET’, $url, $params,
$consumer_secret, null);
} else {
$params[‘oauth_signature_method’] = ‘PLAINTEXT‘;
$params[‘oauth_signature’] =
oauth_compute_plaintext_sig($consumer_secret, null);
}

// Pass OAuth credentials in a separate header or in the query string
if ($passOAuthInHeader) {

$query_parameter_string = oauth_http_build_query($params, FALSE);

$header = build_oauth_header($params, “yahooapis.com”);
$headers[] = $header;
} else {
$query_parameter_string = oauth_http_build_query($params);
}

// POST or GET the request
if ($usePost) {
$request_url = $url;
logit(“getreqtok:INFO:request_url:$request_url”);
logit(“getreqtok:INFO:post_body:$query_parameter_string”);
$headers[] = ‘Content-Type: application/x-www-form-urlencoded‘;
$response = do_post($request_url, $query_parameter_string, 443, $headers);
} else {
$request_url = $url . ($query_parameter_string ?
(‘?’ . $query_parameter_string) : ” );

logit(“getreqtok:INFO:request_url:$request_url”);

$response = do_get($request_url, 443, $headers);

}

// extract successful response
if (! empty($response)) {
list($info, $header, $body) = $response;
$body_parsed = oauth_parse_str($body);
if (! empty($body_parsed)) {
logit(“getreqtok:INFO:response_body_parsed:”);

}
$retarr = $response;
$retarr[] = $body_parsed;
}

return $retarr;
}
function get_access_token($consumer_key, $consumer_secret, $request_token, $request_token_secret, $oauth_verifier, $usePost=false, $useHmacSha1Sig=true, $passOAuthInHeader=true)
{
$retarr = array(); // return value
$response = array();

$url = ‘https://api.login.yahoo.com/oauth/v2/get_token&#8217;;
$params[‘oauth_version’] = ‘1.0’;
$params[‘oauth_nonce’] = mt_rand();
$params[‘oauth_timestamp’] = time();
$params[‘oauth_consumer_key’] = $consumer_key;
$params[‘oauth_token’]= $request_token;
$params[‘oauth_verifier’] = $oauth_verifier;

// compute signature and add it to the params list
if ($useHmacSha1Sig) {
$params[‘oauth_signature_method’] = ‘HMAC-SHA1’;
$params[‘oauth_signature’] =
oauth_compute_hmac_sig($usePost? ‘POST’ : ‘GET’, $url, $params,
$consumer_secret, $request_token_secret);
} else {
$params[‘oauth_signature_method’] = ‘PLAINTEXT’;
$params[‘oauth_signature’] =
oauth_compute_plaintext_sig($consumer_secret, $request_token_secret);
}

// Pass OAuth credentials in a separate header or in the query string
if ($passOAuthInHeader) {
$query_parameter_string = oauth_http_build_query($params, false);
$header = build_oauth_header($params, “yahooapis.com”);
$headers[] = $header;
} else {
$query_parameter_string = oauth_http_build_query($params);
}

// POST or GET the request
if ($usePost) {
$request_url = $url;
logit(“getacctok:INFO:request_url:$request_url”);
logit(“getacctok:INFO:post_body:$query_parameter_string”);
$headers[] = ‘Content-Type: application/x-www-form-urlencoded’;
$response = do_post($request_url, $query_parameter_string, 443, $headers);
} else {
$request_url = $url . ($query_parameter_string ?
(‘?’ . $query_parameter_string) : ” );
logit(“getacctok:INFO:request_url:$request_url”);
$response = do_get($request_url, 443, $headers);
}

// extract successful response
if (! empty($response)) {
list($info, $header, $body) = $response;
$body_parsed = oauth_parse_str($body);
if (! empty($body_parsed)) {
logit(“getacctok:INFO:response_body_parsed:”);
//print_r($body_parsed);
}
$retarr = $response;
$retarr[] = $body_parsed;
}
return $retarr;
}
function callcontact($consumer_key, $consumer_secret, $guid, $access_token, $access_token_secret, $usePost=false, $passOAuthInHeader=true)
{
$retarr = array(); // return value
$response = array();

$url = ‘http://social.yahooapis.com/v1/user/&#8217; . $guid . ‘/contacts’;

$params[‘format’] = ‘json’;
$params[‘view’] = ‘compact’;
$params[‘oauth_version’] = ‘1.0’;
$params[‘oauth_nonce’] = mt_rand();
$params[‘oauth_timestamp’] = time();
$params[‘oauth_consumer_key’] = $consumer_key;
$params[‘oauth_token’] = $access_token;

// compute hmac-sha1 signature and add it to the params list
$params[‘oauth_signature_method’] = ‘HMAC-SHA1’;
$params[‘oauth_signature’] =
oauth_compute_hmac_sig($usePost? ‘POST’ : ‘GET’, $url, $params,
$consumer_secret, $access_token_secret);

// Pass OAuth credentials in a separate header or in the query string
if ($passOAuthInHeader) {
$query_parameter_string = oauth_http_build_query($params, true);
$header = build_oauth_header($params, “yahooapis.com”);
$headers[] = $header;
} else {
$query_parameter_string = oauth_http_build_query($params);
}

// POST or GET the request
if ($usePost) {
$request_url = $url;
logit(“callcontact:INFO:request_url:$request_url”);
logit(“callcontact:INFO:post_body:$query_parameter_string”);
$headers[] = ‘Content-Type: application/x-www-form-urlencoded’;
$response = do_post($request_url, $query_parameter_string, 80, $headers);
} else {
$request_url = $url . ($query_parameter_string ?
(‘?’ . $query_parameter_string) : ” );
logit(“callcontact:INFO:request_url:$request_url”);
$response = do_get($request_url, 80, $headers);
}

// extract successful response
if (! empty($response)) {
list($info, $header, $body) = $response;
if ($body) {
logit(“callcontact:INFO:response:”);

json_pretty_print($body);

}
$retarr = $response;
}
$contactsRes = json_decode($retarr[2],true);
return $contactsRes;
}
?>

Reblogging is Back!

January 23, 2012 Leave a comment
1em;max-width:560px”>

As we mentioned last week, you can like and reblog posts directly from your reader, which displays a stream of all the updates published on all the blogs you follow from your WordPress.com account.

We’ve also brought the reblog button back to the toolbar that appears at the top of the screen when you’re logged into WordPress.com. Note that you’ll only see the like and reblog options while you’re looking at individual posts.

For example, you’ll see this on the left side of your toolbar while viewing http://en.blog.wordpress.com/2012/01/20/read-blogs:

And your toolbar will look like this while you’re browsing the home page of en.blog.wordpress.com:

How does reblogging work?

Reblogging is a quick way to share posts published by other WordPress.com users on your own blog. People have been reblogging others’ posts since blogging started, but our new reblogging system enables authors to retain greater control over their content.

When a post is reblogged, it shows up with a link back to the blog it came from, the first image in the post, an excerpt of the post’s introduction (if it contains text), and thumbnails of any other images that the post contains. It also shows any comments left by the person who reblogged the post:

Reblogs published on blogs you follow will also appear in your reader:

<h3>What happens when my posts get reblogged?</h3>

An excerpt of your post will be published on the reblogger’s site (with a link back to your original post), and you’ll receive a reblog notification in the post comments (you might need to approve it first):

14px;line-height:1.4em;color:#444444;font-family:”Helvetica Neue“,Helvetica,Arial,sans-serif;margin:0 0 1em 0″>You’ll also receive an email notification of the reblog.

Do I get credit when someone else reblogs one of my posts?

Absolutely! All reblogs contain a link back to your original post, so the more people reblog your posts, the more likely it is that you’ll attract new visitors (and perhaps new followers, too!).

What happens if I reblog a reblog?

If, for example, Stephane reblogs a WordPress.com announcement on his site and Lori reblogs Stephane’s reblog, Lori only re-publishes any comments Stephane made about the announcement. If Lori wants to share the original announcement, she should reblog the post from en.blog.wordpress.com, not from Stephane’s reblog. But if Stephane leaves a really clever comment, Lori might want to share it by reblogging his reblog on her site.

<h3>Can I edit a post I’ve reblogged?</h3>

You can go back and edit the comments you left when you reblogged a post, but you cannot edit any parts of the original post excerpt (including the post title). If you like, you can add categories or tags to the post. Reblogs show up under Posts → All Posts in your dashboard, and they can be edited the same way you edit your own posts.

<div style=”clear:both”></div>
</div>

7Am Arivu Movie Review.

October 4, 2011 Leave a comment
Aamir Khan with director A. R. Murugadoss

Image via Wikipedia

ஏழாம் அறிவு திரைவிமர்சனம்:

சூர்யாவின் அசத்தலான நடிப்பில் நடிப்பில்  எ.ஆர்.முருகதாஸ்சின் அதிரடி இயக்கத்தில் உதயநிதி ஸ்டாலின் தயாரிப்பில்  வெளிவந்திருக்கும் இருக்கும் படம் தான் இந்த ஏழாம் அறிவு.

தமிழ் சினிமா இதுவரை பார்காத திரைகளம் இது வரை பார்காத ஆக்சன், இதுவரை பார்காத  தொழில்நுட்பம் என இதுவரை அனுபவிக்காத ஒரு அனுபவத்தை தந்து இருக்கின்றார் நம்ம  எ.ஆர்.முருகதாஸ். படம் ஆரம்ப முதலே பரபரப்பு. அதுவும் முதல் அந்த பதிநைந்து நிமிட  காட்சிக்கு நாம் படத்திற்கு குடுத்த பணம் முடிந்துவிட்டது.

பலமான படத்திற்கு பலமே அதில் நடித்த நடிகர்களின் நடிப்பும் அவர்களின் ஈடுபாடும்  தான். அதிலும் சூர்யாவின் நடிப்பு நாம் எதிர்பார்காத ஒன்று. இத்தனை ஈடுபாட்டுடன்  ஒரு நடிகன் அதுவும் தனது 26வது படத்திலே ஒரு நடிகனால் நடிக்க முடியுமா? என வியக்க  வைத்திருக்கின்றார்  மனுஷன்.

இரட்டை வேடம்: சர்கஸ் நாயகன் மற்றும் குங்பூவை உருவாக்கிய ஒரு துறவி என இரண்டு  சவாலான கதாபாத்திரம். இரண்டிலுமே மனதில் நிற்கின்றார் நம்ம சூர்யா.

அதுவும் அவருடைய அந்த குங்பூ சண்டை தமிழ் சினிமா வரலாற்றில்  சண்டைகாட்சிகளுக்கெல்லாம்  முன் மாதிரியாக இருக்க போகின்றது.

கலக்குங்க சூர்யா…. இனி ஒரு வருடம் உங்கள் நடிப்பைதான் தமிழ் சினிமா பேச  போகின்றது.

அப்புறம் அறிமுக நாயகியாக ஸ்ருதி கமல் ஹாசன். தமிழில்தான் இது இவருக்கு முதல்  படம். அதனை உணர்த்துவது போல் அழகான அளவான நடிப்பு. கமல் ஹாசன் நிச்சயம் பெருமைபட்டு  கொள்ளலாம்.

அப்புறம் அனய்யா இரண்டாவது சூர்யாவுக்கு ஜோடியாக வருகின்றார். மனதை விட்டு  மரையாத கதாபத்திரம் அவங்களுடையது.

வில்லனாக வரும் அந்த ஹாலிவுட் நடிகர் யப்பா சண்டை காட்சிகளில் அப்படி ஒரு  ஆக்ரோஷம். சண்டை கட்சிகள் உயிரோட்டமாக அமைந்ததற்கு இவருடைய பங்களிப்பு ஒரு முக்கிய  காரணம்.

ஹாரிஸ் ஜெயராஜின் இசையில் ஏற்கணவே பாடல்கள் ஹிட்டாகி விட்டன. பின்ணணி  இசையிலும் மிரட்டி இருக்கின்றார். ஆனால் ஏற்கனவே கேட்ட பீலிங் வருவதை தவிற்க்க  முடியவில்லை.

இப்படி ஒரு கதையை யோசித்தற்காகவே எ.ஆர். முருகதாஸ்சை எவ்வளவு வேண்டுமானாலும்  பாராட்டலாம்.
தமிழர்கள் எல்லாம் பெருமைபட கூடிய வகையில் ஒரு படத்தை தந்ததற்காக  ஒரு மிக பெரிய சல்யூட்.

தாங்ஸ் முருகதாஸ்.

கதையை கூறிவிட்டால் படதின் சுவாரஸ்யம் குறைந்துவிடும் என்பதால் அனைவரும் படத்தை
திரையில் பார்த்து தெரிந்து கொள்ளவும்.

நான் இந்த படத்தை இரவு 2:30 மணி ஷோவில் வீட்டில் இருந்தவாறு டிரீம் லாண்டில்
(அதாங்க கனவு) பார்த்து ரசித்தேன்.

படத்தை பற்றிய என்னுடைய கமெண்ட்: தமிழ் சினமாவின் இரண்டாம் அத்தியாயத்தை தொடங்கி
வைத்திருக்கின்றார் எ.அர்.முருகதாஸ்

விமர்சனம் பிடித்து இருந்தால் தயவுசெய்து  உங்கள் ஓட்டை பதிவு  செய்யவும்.

உங்கள் கருத்தை ஆவலுடன் எதிர்பார்கின்றேன்

தங்கள் வருகைக்கு நன்றி

Top 10 Tamil Actor survive

October 4, 2011 Leave a comment
Tamil actor Surya Sivakumar photographed in Er...

Image via Wikipedia

டாப் 10 தமிழ் நடிகர்கள்: ஒரு அலசல்:

முதலில் எனது எந்த வலையுளகிற்கு வருகை தந்த
உங்களுக்கு எனது நன்றி கலந்த  வணக்கங்கள். எனது இந்த பதிவு பிடித்தாலும் பிடிக்காவிட்டாலும்,மாற்று கருத்து  இருந்தாலும் தயவுசெய்து பின்னூட்டம் இடவும் என தாழ்மையுடன் கேட்டு  கொள்கின்றேன்.

பொதுவா எனக்கு சினிமா சம்பந்தமான பதிவு எழுதுவதில் அதிக ஆர்வம் கிடையாது. ஆனால்  சினிமா அதிக அளவு வாசகர் வட்டம் கொண்டது என்பதால் அது தவிற்க முடியாததாகின்றது.

சரி விஷயதுக்கு வருவோம்: இந்த போட்டியில் ரஜினியையும் கமலையும்
சேர்க்கவில்லை.  ஏன் என்றால் அவர்களையும் சேர்த்தால் முதல் இரண்டு இடத்திற்கு
போட்டிகள் இருக்காது.அவர்கள் இரண்டு பேரும் எப்போதும் நம்பர் ஒன்.

10வது இடம் ஜெயம் ரவி: ஜெயம் படத்தின் மூலம் அமர்களமாக அறிமுகமாகி சன் ஆப்
மகாலச்சுமி என அடுத்தடுத்து இரண்டு ஹிட் படங்களை கொடுத்தவர். வேறு  இயக்குனர்களின் படங்களில் இவர் நடித்த படங்கள் சரியாக போகாத நிலையில் பேராண்மை மற்றும் சந்தோஷ்  சுப்ரமணியம் ஆகிய படங்கள் இவரை தூக்கி நிருத்தியது. நல்ல நடிகர். டான்ஸ், சண்டை  காட்சிகள், ரொமான்ஸ் என சகல துறைகளிலும் அசத்துவார். இவர் படங்களை குடும்பத்துடன்  சென்று பார்க்கலாம் என்பது இவரின் சிறப்பு. அதிக பெண் ரசிகர்கள்  கொண்டவர். இவரின் குடும்பமே சினிமா துறையில் உள்ளது இவரின் கூடுதல் பலம்

குறிப்பு: இவரை விட அதிக ஹிட் படங்களை கொடுத்த நடிகர் ஜீவா டாப் 10
நடிகர்கள் பட்டியலில் இல்லை என்பது எனக்கே கொஞ்சம் வருத்தமாக
இருக்கின்றது.(ராம்,டிஷ்யூம்,கற்றது தமிழ்,சிவா மனசுல சக்தி,கோ)

9வது இடம் புரட்சி தளபதி விஷால்: இவருடைய பட்டத்தை பார்த்தாலே பத்திகிட்டு
வருது. புரட்சி என்பதன் அர்த்தமே போய்விட்டது. பேர் சொல்லுர மாதிரி ஒரு படமும்
கொடுக்கவில்லை(அவன் இவன் தவிர). ஆனாலும் இவர் படத்துக்கு கமர்சியல் மதிப்பு இருப்பதாக  கூறிகொள்கின்றார்கள்.எனக்கு என்னமோ அப்படி தெரியவில்லை. இவர் நடித்ததில் எனக்கு  பிடித்தது செல்லமே,சண்ட கோழி,அவன் இவன் மட்டுமே. நல்ல நடிகன் மாதிரிதான் தெரியுது  ஆனால் மாஸ் என்கிற போதையில் தடம் மாறுவது போல் தெரிகின்றது. டாப் 10னில் நீடிக்க  வேன்டுமானால் நல்ல கதைகளை தேர்வு செய்ய வேண்டியது அவசியம்.

அவன் இவனுக்கு முன்னாடி இவர் நடித்த மூன்று படமும் படு தோல்வி.

8 வது இடம் ஆர்யா:
தமிழ் சினிமாவில் தற்போதைக்கு ஈகோ பார்காத நடிகர்.  பாலாவின் நான் கடவுள் மூலம் மறு அவதாரம் எடுத்துள்ளார். மதராஷ பட்டினம்,பாஸ் என்கிற  பாஸ்கரன் அவன் இவன் என தொடர்ந்து ஹிட் படங்களை கொடுத்துள்ளார்.இவரின் திறமையை இவர்  இன்னும் சரியாக பயன்படுத்தவில்லை என்றுதான் தோன்றுகின்றது.

இனிமேல் தான் இவருக்கு உண்மையான போட்டியே இருக்கின்றது.

நடித்ததில் பிடித்தது: நான் கடவுள், மதராச பட்டிணம்,பாஸ் என்கிற
பாஸ்கரன்,அறிந்தும் அறியாமலும்,அவன் இவன்.

7வது சிம்பு என்கிற S.T.R:

எனக்கு சுத்தமா பிடிக்காத நடிகர் வானத்துக்கு முன்னாடி வரையும்.வானம் படம்
பார்த்தவுடம் அவர் மீது ஒரு நல்ல மதிப்பு வந்தது உண்மை. அது நீடிக்குமா? நீடிக்காதா
என்பது இனி வரும் அவரின் படங்களை பொருத்து. இவர் படம் தானாக ஒடுனதைவிட ஓட வைக்கபட்டது என்பதே என்னுடைய கருத்து.இவருடைய உண்மையான ஹிட் விண்ணைதாண்டி  வருவாயா தான்.அடுத்து வந்த வானமும் ஹிட் என்பதால் இனி வரவுள்ள இவரின் படங்களுக்கு  எதிபார்ப்பு கூடி இருக்கு.இவர் தனது படங்களுக்கு நல்ல பப்ளிசிடி தேடி கொள்வதில்  திறமையானவர்.

திறமையானவர் தான் ஆனால் இவரும் மாஸ் போதையில் அலைவது தான்  வருத்தமான விஷயம்.

சமீப காலமாக அஜித் ரசிகர்களை தன் பக்கம் இழுக்க  குறிவைத்துள்ளார்.அஜித் ரசிகர்களே ஜாக்கிரதை…..

6வது இடம் தனுஷ்:
நல்ல வேலை இவருக்கு பட்டங்கள் எதுவும் இல்லை.இவரின் வெற்றி  இவரே எதிர்பாராதது.ஆனாலும் கிடைத்த வெற்றியை திறமையாக தக்க வைத்து  கொண்டவர்.
முதல் மூன்று படங்களுமே அதிரி புதிரி வெற்றி…இடையில் சின்ன  சறுக்கம் ஆனாலும் பொல்லாதவன் மூலம் மீண்டு வந்தார்.திறமையான நடிகர் மிகவும்  இளவயதில் தேசிய விருது பெற்றிருக்கிறார்.வாழ்த்துக்கள்.

இவர் சிம்புவுக்கு  போட்டி என்றாலும் ஹிட் பட வரிசையில் இவர்தான் டாப். இவர் நடித்த நல்ல கதை அம்சம்  உள்ள படங்கள் எல்லாம் நன்றாக ஓடின ஆனால் மசாலா படங்கள் அனைத்தும் சுமாரான வெற்றியே  பெற்றன.(திருவிளையாடல் தவிர)

இவர் நடித்ததில் எனக்கு பிடித்தது    :துள்ளுவதோ இளமை,
காதல்  கொண்டேன், பொல்லாதவன், ஆடுகளம், திருவிளையாடல் ஆரம்பம்.

5வது இடம் கார்த்தி:
ரொம்ப சீக்கிரத்திலேயே டாப் 10னின் இடம் பிடித்த  நடிகர்.இவர் நடித்த படங்கள் அனைத்துமே பாக்ஸ் ஆபிஸ் ஹிட்.கார்த்தி என பெயர்  வைத்ததால் என்னவோ நவரச நாயகன் கார்த்திகிற்கு பிறகு ஒரு துள்ளல் நடிப்பும் நல்ல காமெடி டைமிங்கும் இவரிடம் இருக்கின்றது. சிறப்பாக கதையை தேர்வு  செய்கின்றார்.தனது ஐந்தாவது படத்திலேயே இரட்டை வேடம் ஏற்று வெற்றி பெறவும்  வைத்தவர்.

நல்ல எதிகாலம் இருக்கின்றது.தனது இடத்தை தக்க வைக்க கடுமையாக உழைக்க
வேண்டும்
நடித்ததில் பிடித்தது: எல்லா படமும் பிடிக்கும். அனைத்தும் வெவ்வேறான  அனுபவங்கள்

4வது விக்ரம்:
வியக்க வைக்கும் உழைப்பு,விடாமுயற்சி, தன்னம்பிக்கை, இவை  இணைந்ததுதான் விக்ரம்.வியக்க வைக்கும் நடிகர் தனது அயராத உழைப்பின்  தமிழ் சினிமாவில் தனியிடம் பிடித்திருக்கின்றார். பீமா, கந்தசாமி,இராவணன் போன்ற  தொடர் தோல்விக்கு பிறகு ஒரு கமர்சியல் சினிமா நடிக்காமல் தெய்வ திருமகளில் நடித்த  அவரின் துணிச்சல் பாராட்ட பட வேண்டியது.தமிழ் சினிமாவில் இவருக்கான அங்கிகாரம்  சற்று குறைவு என்றுதான் எண்ணுகின்றேன்.

தமிழுக்கு சிறந்த நடிகனாக தேசிய விருது பெற்று தந்திருக்கின்றார்.இவர்  நடிக்கும் படங்கள் தரமானவை என நம்பி செல்லலாம்.தொடர்ந்து தமிழுக்கு நல்ல  படங்கள் கொடுப்பார் என நம்புவோம்.

நடித்ததில் பிடித்தது: சேது,காசி, தில், தூள்,அன்னியன்,சாமி,மஜா(எனக்கு பிடிச்சு
இருந்தது)மற்றும் தெய்வ திருமகள்.

3வது  இளைய தளபதி விஜய்:

விஜய் ரசிகர்களுக்கு இது கோபத்தை ஏற்படுத்தலாம்.மங்காத்தா  வெற்றின் தாக்கம் தான் விஜயின் இறக்கம்.வேலாயுதம் வந்தால் இந்த நிலை மாறலாம்.இனி  வரும் படங்கள் மீண்டும் விஜயை நம்பர் ஒன்னாக்கும் என நம்புவோமாக!!  பூவே  உனக்காக, துள்ளாத மனமும் துள்ளும்,காதலுக்கு மரியாதை, லவ் டுடே என மென்மையான  படங்களில் நடித்து திருமலை,கில்லி,சிவகாசி,திருப்பாச்சி,போக்கிரி என அதிரடி நாயகனாக  ரசிகர்கள் மனதி இடம் பிடித்த விஜய், வில்லு, வேட்டைகாரன்,சுறா என தொடர் தோல்வி
படங்களில் நடித்து இப்போது நான்காவது இடத்தில் இருக்கின்றார். ஒரு காலத்திற்கு
அப்புறம் மக்களுக்கு சலிப்பு வரகூடிய படங்களில் நடித்து வெறுப்பை சம்பாதித்து
கொண்டார்.பின்னர் சுதாரித்து காவலன் என்ற ஹிட் படத்தை கொடுத்தார். இப்போது இவர்  நடித்து கொண்டிருக்கும் படங்கள் எல்லாமே மிகுந்த எதிபார்பிற்குறிய படங்கள் என்பதால்  மீண்டும் இவர் பழைய இடத்தை பிடிப்பார் என நம்புவோமாக.

நடித்ததில் பிடித்தது: பூவே உனக்காக,துள்ளாத மனமும் துள்ளும்,காதலுக்கு
மரியாதை,கில்லி,திருமலை,போக்கிரி,சிவகாசி,குஷி

2வது இடம் அஜித்:
மங்காத்தாவின் அதிரடி வெற்றி இவரை இரண்டாவது இடத்தில் உக்கார வைத்திருக்கின்றது.  முன்னனி நடிகர்களில் அதிகமான தோல்வி படங்களில் நடித்தது இவராகதான் இருக்க  முடியும்.அதையெல்லாம் தாண்டிய இவரது தன்னம்பிக்கைதான் இவரை இந்த இடத்தில்  உக்கார வைதிருக்கின்றது. நல்ல நடிகர் மட்டும் அல்ல. நல்ல மனிதரும் கூட.. தைரியசாலி  தனது ரசிகர்மன்றத்தை கலைத்தது அதற்கான சான்று.
இவரின் இந்த முடிவு வரவேற்க  கூடியது. இவர் அல்டிமேட் ஸ்டார் பட்டத்தை துறந்ததும் ஒரு பாராட்ட படகூடிய  விஷயம் இன்று இருக்க கூடிய முன்னனி இயக்குனர்களுக்கு முதல் பட சான்ஸ் கொடுத்து  திறையுலகில் அறிமுக படுத்திய பெருமை அஜிதையே சாரும்.

கதை தேர்வில் கூடுதல் கவனம் தேவை என்பதே என்னுடைய எண்ணம்.

சரண்.எ.ஆர்.முருகதாஸ், சூர்யா, இயக்குனர் விஜய், என பட்டியல் நீளும்.
நடித்ததில் பிடித்தது: காதல் மன்னன்,அமர்களம்,வரலாறு,வாலி,பில்லா, தினா,
போன்றவை

முதல் இடம் சூர்யா:

தமிழ் சினிமாவின் தற்போதய ஹாட் கேக்.. பாக்ஸ் ஆபிஸ் ஹீரோ..
உழைப்பு மற்றும் ஈடுபாடு கொண்ட இயக்குனர்களின் நடிகன். இவரை வைத்து படம்
எடுத்தவர்களே மீண்டும் இவரிடம் இணைந்து படம் எடுப்பது இவருடைய ஈடுபாட்டுக்கு
சான்று. வரிசையாக பாக்ஸ் ஆபிஸ் ஹிட் கொடுத்தவர். மாஸ் மற்றும் கிளாஸ் படங்களை மாறி  மாறி கொடுப்பவர்.

இயக்குனர் பாலாவினால் வாழ்வளிக்க பட்டவர்களில் இவரும் ஒருவர்.இவரின் ஆரம்பகால படங்கள் இவருக்கு பெயரெடுத்து தராத நிலையில் இயக்குனர் பாலாவின்
இயக்கத்தில் இவர் நடித்த நந்தா இவருக்கு திருப்புமுனையாக அமைந்தது.அதை சரியாக
பயன்படுத்திகொண்ட அவர் படிபடியாக முன்னனி நடிகராக உயர்ந்து இன்று நம்பர் 1 அந்தஸ்தை  எட்டியிருக்கின்றார்.காக்க காக்க, பேரழகன்,பிதாமகன்,கஜினி,வாரணம்
ஆயிரம்,அயன்,சிங்கம் ஆகியவை பெயர் சொல்லும் படங்களாக அமைந்தது.

எ.ஆர்.முருகதாஸ் இயக்கத்தில் இவர் நடித்து கொண்டிருக்கும் ஏழாம் அரிவு மிகுந்த எதிபார்பை கிளப்பி  இருக்கின்றது.

நடிப்பு,ஆக்சன்,ரொமான்ஸ் என அனைத்திலும் சிறந்தவர்.அகரம் பௌன்டேசன் மூலம் ஏழை  குழந்தைகளுக்கு கல்வி அறிவு கிடைக்க உதவி வருகின்றார்.

தனக்கு கிடைத்த மக்கள் ஆதரவை சரியான வகையில் சரியான திசையில் பயன்படுத்துவதாக  எனக்கு படுகின்றது.

(முதல் மூன்று இடங்களில் மாற்றம் எப்போது வேண்டுமானாலும் நிகழலாம்.அது அவர்களின்  பாக்ஸ் ஆபிஸ் வெற்றியை பொறுத்து)
எனக்கு தெரிந்த வரையில் நான் சரியான முறையில்  வரிசைபடுத்தி இருக்கிறேன் என நம்புகின்றேன். குறை இருந்தால் தயவுசெய்து தெரிய  படுத்தவும்.

குறிப்பு: டாப் 10 நடிகர்களில் அஜித்,விக்ரம் தவிர்த்து மற்ற நடிகர்கள் அனைவரும்
குடும்ப சபோர்ட் மூலம் சினிமா துறையில் நுழைந்தவர்கள்.

வந்தத வந்துடீங்க தயவுசெய்து உங்கள் ஓட்டையும் போட்டுட்டு போங்க….