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>

2011 in review

January 13, 2012 Leave a comment

The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog.

Here’s an excerpt:

The concert hall at the Sydney Opera House holds 2,700 people. This blog was viewed about 12,000 times in 2011. If it were a concert at Sydney Opera House, it would take about 4 sold-out performances for that many people to see it.

Click here to see the complete report.

Calculate image aspect ratio in PHP

January 7, 2012 Leave a comment

Calculating image aspect ratio in PHP is very simple. First you need to find greatest common divisor(GCD). You can do that by using following function:

function GCD($a, $b) {
while ($b != 0)
$remainder = $a % $b;
$a = $b;
$b = $remainder;
}
return abs ($a);
}
If you compiled your PHP version with GMP functions, you can also use following:

$gcd = gmp_gcd($a, $b);

 

After finding GCD, simply divide both sides with it:

 

$a = 2048; // screen width
$b = 1152; // screen height
$gcd = GCD($a, $b);
$a = $a/$gcd;
$b = $b/$gcd;
$ratio = $a . “:” . $b;

 

immediate opening for PHP Developers

November 22, 2011 Leave a comment

We have immediate opening for PHP Developers in our company. Please check the job description below and kindly refer your friends for these openings.

No Of Openings : 4
Experience : 2+ years
Qualification: BE / Msc(CS) / MCA
Primary Skills : PHP, MYSQL, Jquery, CSS, HTML, Ajax
Secondary Skills :
1) Smarty template
2) Any MVC frame work (Zend or codeigniter or cake)
3) Any opensource CMS like (Drupal or wordpress or joomla)

If you know any of your friends who are having 2+ years of experience in core php and can join within one week kindly rush their profiles to my mail.

We want to close this recruitment in a week’s time and hence would appreciate a quick response!..

Thank you for attracting and referring good talents to our company..!

Changing Backgrounds with body class()

October 25, 2011 Leave a comment

The body_class() WordPress function attaches a list of classes to the <body> element according to what type of page is being displayed.

These classes can be used — in conjunction with your theme’s stylesheet — to display different backgrounds on different pages.

Let’s assume your header.php template file contains:

<body <?php body_class(); ?>>

And your current CSS for the background looks like:

body {background:#fff url(images/bg.jpg);}

 

In a single post, your body tag would look like:

postid-188 single-format-standard logged-in admin-bar">

A category page could have:

<body class="archive category category-cat-a category-9 logged-in admin-bar">

whilst a tag page might generate:

tag-tag1 tag-92 logged-in admin-bar">

The CSS

You can add some new rules to your theme’s CSS to target specific backgrounds at particular pages.

Default Single Post

body.single {background:#ccc url(images/bg-single.jpg);}

Single Post with an ID of 188

body.postid-188 {background:#999 url(images/bg-special.jpg);}

Default Category Background

body.category {background:#eee url(images/bg-cat.jpg);}

Category A Only

body.category-cat-a {background:#ddd url(images/bg-cat-a.jpg);}

The possibilities are almost endless.

You can find a full list of the classes generated by the body_class() function in the WordPress Codex.

Headers Already Sent

October 25, 2011 1 comment
WordPress 2.5 Czech administration

Image via Wikipedia

Headers Already Sent

The most common reasons for seeing this error message in your WordPress site are spaces, new lines, or invisible characters before an opening <!--?php tag or after a closing ?> tag in one of the site’s scripts. But, in order to fix the problem, you have to know which file is causing the problem.

Step 1: Interpreting the Error Message

All of the relevant information is normally given in the first part of the message — the ... output started at... part.

Example 1

Warning: Cannot modify header information - headers already sent by (output started at /path/wp-content/plugins/foobar/foobar.php:8) in /path/wp-comments-post.php on line 55

In this example, the problem is in the foobar.php file of the Foobar plugin.

Example 2

Warning: Cannot modify header information - headers already sent by (output started at /path/wp-content/themes/wibble/functions.php:11) in /path/wp-includes/pluggable.php on line 850

Here, the problem is in functions.php file within the Wibble theme

Example 3

Warning: Cannot modify header information - headers already sent by (output started at /path/blog/wp-config.php:82) in /path/blog/wp-login.php on line 42

The problem is at line 82 of wp-config.php.

Step 2: Fixing the Problem

Example 1: A Plugin

The easiest option here is to simply delete the plugin and look for an alternative one. If you cannot access your WordPress dashboard, reset the plugins folder. Then re-install your plugins — with the exception of the one that caused the problem.

Example 2: The Theme

If you are not comfortable with editing PHP files, then you may want to look at installing another theme. If you cannot access your WordPress dashboard, switch to the default theme by renaming your current theme’s folder in wp-content/themes and adding “-old” to the end of the folder name using FTP or whatever file management application your host provides. This should allow you back into your dashboard where you can download another theme.

If you are comfortable with editing PHP files, then download the file mentioned in the error message (functions.php in the Example 2) and follow the instructions for removing invisible characters in a file.

Example 3: wp-config.php

  1. Download wp-config.php from your site’s main WordPress folder.
  2. Open the file in a plain text editor.
  3. Check that the very first characters are <?php
  4. If the very last characters are ?>, remove them.
  5. Check that there are no invisible characters in the file.
  6. Re-upload the amended file.

Removing Invisible Characters in a File

  1. Open the file in a plain text editor.
  2. Place the cursor before the first character in the file.
  3. Press the BACKSPACE key & keep it pressed for a count of 10.
  4. Place the cursor after the last character in the file.
  5. Now press the DELETE key on your computer & keep it pressed for a count of 10.
  6. Save the file without pressing any other key.
  7. Check the encoding of the file. Do not encode files as UTF-8 with BOM. The BOM will be seen as a character.

WordPress SEO: Better Titles

October 25, 2011 Leave a comment

WordPress SEO: Better Titles

The content of the HTML tag is used to:

  • Create a title in the browser toolbar
  • Provide a title for the page when it is bookmarked
  • Display a title for the page in search-engine results

It make sense, therefore, to take some time to craft a good title in your WordPress site. In the vast majority of WordPress themes, the title is generated in the theme’s header.php template file. So you need to start by editing this file.

Some themes simply use something like:

<?<span class=”hiddenSpellError” pre=”">php</span> wp_title();?>

But that’s not nearly enough to generate a good title. What you want is code that generates informative, page-specific, titles. So try something like:

<title><?php global $page, $paged;

if ( $paged >= 2 || $page >= 2 ) $we_are_on = sprintf( __( ‘ (Page %s) ‘ ), max( $paged, $page ) );

else $we_are_on = ”;

if( is_home () ) : printf(__( ‘%1$s%2$s on %3$s’), wp_title(”, false), $we_are_on, get_bloginfo(‘name’) );

elseif( is_search() ) :

if( trim( get_search_query() ) == ” ) printf(__(‘No search query entered on %1$s’), get_bloginfo(‘name’) );

else printf( __( ‘Search Results for \’%1$s\’ on %2$s%3$s’ ), trim(get_search_query() ), get_bloginfo(‘name’), $we_are_on );

elseif ( is_category() || is_author() ) : printf(__( ‘%1$s%2$s on %3$s’ ), wp_title(”, false), $we_are_on, get_bloginfo(‘name’) );

elseif( is_tag() ) : printf( __(‘Entries tagged with \’%1$s\’%2$s on %3$s’) , wp_title(”, false), $we_are_on, get_bloginfo(‘name’) );

elseif( is_archive() ) :

printf( __(‘Archives for %1$s%2$s on %3$s’), wp_title(”, false), $we_are_on, get_bloginfo(‘name’) );

elseif( is_404() ) : printf(__( ‘Page not found on %1$s’ ), get_bloginfo(‘name’) );

else : printf( __(‘%1$s%2$s’), wp_title(‘:’,true, ‘right’), get_bloginfo(‘name’) );

endif;

?>

</title>

October 20, 2011 Leave a comment
Php

Image via Wikipedia

I’ve run into an error using an image resizing script by Victor Teixeira, which has worked wonderfully until I noticed an issue related to using the Featured Image uploader. If I a Featured Image, then attempt to re-insert a different image in its place I get this error:

function vt_resize( $attach_id = null, $img_url = null, $width, $height, $crop = false ) {

// this is an attachment, so we have the ID
if ( $attach_id ) {

    $image_src = wp_get_attachment_image_src( $attach_id, 'full' );
    $file_path = get_attached_file( $attach_id );

// this is not an attachment, let's use the image url
} else if ( $img_url ) {

    $file_path = parse_url( $img_url );
    $file_path = $_SERVER['DOCUMENT_ROOT'] . $file_path['path'];

    //$file_path = ltrim( $file_path['path'], '/' );
    //$file_path = rtrim( ABSPATH, '/' ).$file_path['path'];

    $orig_size = getimagesize( $file_path );

    $image_src[0] = $img_url;
    $image_src[1] = $orig_size[0];
    $image_src[2] = $orig_size[1];
}

$file_info = pathinfo( $file_path );
$extension = '.'. $file_info['extension'];

// the image path without the extension
$no_ext_path = $file_info['dirname'].'/'.$file_info['filename'];

$cropped_img_path = $no_ext_path.'-'.$width.'x'.$height.$extension;

// checking if the file size is larger than the target size
// if it is smaller or the same size, stop right here and return
if ( $image_src[1] > $width || $image_src[2] > $height ) {

    // the file is larger, check if the resized version already exists (for $crop = true but will also work for $crop = false if the sizes match)
    if ( file_exists( $cropped_img_path ) ) {

        $cropped_img_url = str_replace( basename( $image_src[0] ), basename( $cropped_img_path ), $image_src[0] );

        $vt_image = array (
            'url' => $cropped_img_url,
            'width' => $width,
            'height' => $height
        );

        return $vt_image;
    }

    // $crop = false
    if ( $crop == false ) {

        // calculate the size proportionaly
        $proportional_size = wp_constrain_dimensions( $image_src[1], $image_src[2], $width, $height );
        $resized_img_path = $no_ext_path.'-'.$proportional_size[0].'x'.$proportional_size[1].$extension;            

        // checking if the file already exists
        if ( file_exists( $resized_img_path ) ) {

            $resized_img_url = str_replace( basename( $image_src[0] ), basename( $resized_img_path ), $image_src[0] );

            $vt_image = array (
                'url' => $resized_img_url,
                'width' => $proportional_size[0],
                'height' => $proportional_size[1]
            );

            return $vt_image;
        }
    }

    // no cache files - let's finally resize it
    $new_img_path = image_resize( $file_path, $width, $height, $crop );
    $new_img_size = getimagesize( $new_img_path );
    $new_img = str_replace( basename( $image_src[0] ), basename( $new_img_path ), $image_src[0] );

    // resized output
    $vt_image = array (
        'url' => $new_img,
        'width' => $new_img_size[0],
        'height' => $new_img_size[1]
    );

    return $vt_image;
}

// default output - without resizing
$vt_image = array (
    'url' => $image_src[0],
    'width' => $image_src[1],
    'height' => $image_src[2]
);

return $vt_image;
}

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 நடிகர்களில் அஜித்,விக்ரம் தவிர்த்து மற்ற நடிகர்கள் அனைவரும்
குடும்ப சபோர்ட் மூலம் சினிமா துறையில் நுழைந்தவர்கள்.

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

Two New Apps for WordPress.com

September 13, 2011 1 comment
Image representing WordPress.com as depicted i...

Image via CrunchBase

Earlier this summer we launched a few tools to make it easier for developers to create new apps for WordPress.com. Starting today, you can integrate your WordPress.com blog with Feedfabrik and Empire Avenue.

Turn Your Blog Into a Book

Have you ever wanted to publish your own book, or a collection of your favorite blog posts?

Feedfabrik makes it easy to convert your WordPress.com blog into a book format, and even allows you to customize the cover design and book contents. You can order a hard copy of your book, or a digital PDF edition.

To try it out, head over to Feedfabrik, choose Bookfabrik, then select “I’m on WordPress.com.” Receive a 10% discount on all September orders with the code “WORDPRESS-INTRO”.

Grow Your Social Capital Online

Empire Avenue is a Social Stock Market, where your social networking activity and engagement earn you virtual currency and determine your virtual share price. It also helps you discover new people and brands, and allows you to invest virtual currency in their profiles by buying shares on the Social Stock Market.

Along the way you’ll have a bit of fun, make new connections, and learn about social networking and the value of your network! Empire Avenue is completely free and deals in virtual currency. Sign up today to get started.

These integrations are made possible because WordPress.com supports a protocol called OAuth2. OAuth2 allows developers to build applications that securely communicate with WordPress.com. We have also launched a developer portal to help developers to get more information about our platform. 

 If your service wants to build with us, don’t hesitate to contact us through the developer portal.

vela vela song Lyrics from Velayudham

September 13, 2011 Leave a comment

ada vela vela vela vela velayudham
nee otha paarva partha podhum nooraayudham

coming down town, coming to the sea
he is the man like shiny bee
breaking to the barriers …..
gonna come and carry us
don shout out
come get some
you cant get down, he is velayutham

ada vela vela vela vela velayutham
nee otha paarva partha podhum nooraayudham

chillax chillax song Lyrics From Velayutham

September 13, 2011 1 comment
Velayudham

Image via Wikipedia

chillax chillax chillax chillax chillax..
chillax chillax chillax chillax chillax..

manjanathi marathu katta
maiya vechi mayaki puta
naatu katta townu katta
rendum kalandha semma katta
kaiyu rendum urutu katta
kannu rendum vetta vetta
nenjukulla ratham sotta
eduku vara kitta..

sooriyane thevaiyille vithudalama
rathiriya inga mattum inga vachukalama
thirupachi meesaiyile sikkikalama
neeyachu naanachu paathukalama

manjanathi marathu katta
maiya vechi mayaki puta
naatu katta townu katta
rendum kalandha semma katta
kaiyu rendum urutu katta
kannu rendum vetta vetta
nenjukulla ratham sotta
eduku vara kitta..

dheem dheem thananam dheem dheem thananam
ah ah..ahhaaa..ah ah ahhaa

en odhattu sayathula
ottikolla vaada ulla
patthu veral theekuchiya
pattha veika vaadi pulla
kattabomma peran ne katthi meesa veeran
muthan vechu kuthi kollu sethu poren
mayavi tha neeyum inga mayangiputta nanum
athangara moginiyum vaa nee enna katti pudikka

chillax chillax chillax chillax chillax
chillax chillax chillax chillax chillax
chillax chillax chillax chillax chillax
chillax chillax chillax chillax chillax
chilllllaaaaa….x chillax baby

en odambu panju metha
kitta vandhu kaatu vitha
un iduppu vaazha maata
naa pudicha thaanga maata
sandhu pondhu veedu nee vanthu vilayadu
patta vaanga thevaiyilla kotta podu
vetiya na sethu un marapula korthu
ennanamo pannuriye nenjukitta ketta kanava (ketta kanavu..)

chillax chillax chilla chilla chillax
chillax chillax chilla chilla chillax

manjanathi marathu katta
maiya vechi mayaki puta
naatu katta townu katta
rendum kalandha semma katta
kaiyu rendum urutu katta
kannu rendum vetta vetta
nenjukulla ratham sotta
eduku vara kitta..

sooriyane thevaiyille vithudalama
rathiriya inga mattum inga vachukalama
thirupachi meesaiyile sikkikalama
neeyachu naanachu paathukalama
chillax chillax chillax chillax chillax..
chillax chillax chillax chillax chillax..
chillax chillax chillax chillax chillax..
chillax chillax chillax chillax chillax..
chillax chillax chillax

sonna puriyathu song Lyrics From Velayutham

September 13, 2011 Leave a comment

sonna puriyathu sollukula adangathu
neengalam en mela vacha paasam
sonna puriyadhu sollukula adangathu
neengalam en mela vacha paasam
onna poranthalum ithupola irukathu
naan unga mela ellam vacha nesam

velayutham peru en pathu veral velu
nikkathu intha kaalu kottiruchu da thelu

sonna puriyadhu sollukula adangathu
neengalam en mela vacha paasam

onna poranthalum ithupola irukathu
naan unga mela ellam vacha nesam

thalayil aadum karagam irukkum
thalaila ganamatha irunthathilla
thara thapattam thaan irukkum
thappana attam naan pottathilla

puli vesham pottukitu puli attam adiruken
vettai aadi mattum naan vazhnthathilla
sandaina MGR-ru
sandiyarna ayyanar
dhil irunthum vambu sandai pottathilla

vara midhichu raa pagala uzhachu
vaazhura jananga namma katchi
ivanga manasa sandhosa padutha

thappu nu senjalum rightu machi
aadugira aatathukku koodugira kootathukku
kaiya vachu ippo na kumbudura
unga veetu chella pulla enna pola yarum illa
ungalathan eppovume nambidura

sonna puriyadhu sollukula adangathu
neengalam en mela vacha paasam

onna poranthalum ithupola irukathu
naan unga mela ellam vacha nesam

velayutham peru en pathu veral velu
nikkathu intha kaalu kottiruchu da thelu
gumsa hey gumsa hey gumsa hey gumsa..

New Official Trailer of the Movie Mankatha

August 10, 2011 1 comment

New Official Trailer of the Movie Mankatha

Follow

Get every new post delivered to your Inbox.

Join 27 other followers