Archive

Archive for the ‘2011’ Category

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.

My Photo

April 24, 2013 Leave a comment

Balt

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!

 

Unzip a Zip File in php

<!--?php

    function unzip($location,$newLocation){
        if(exec("unzip $location",$arr)){
            mkdir($newLocation);
            for($i = 1;$icount($arr);$i++){
                $file = trim(preg_replace("~inflating: ~","",$arr[$i]));
                copy($location.'/'.$file,$newLocation.'/'.$file);
                unlink($location.'/'.$file);
            }
            return TRUE;
        }else{
            return FALSE;
        }
    }
?>
//Use the code as following:
<!--?php
include 'functions.php';
if(unzip('zipedfiles/selvabalaji.zip','unziped/myNewZip'))
    echo 'Success!';
else
    echo 'Error';
?>

10 More Useful WordPress Code Snippets For Your Blog

July 6, 2012 1 comment

WordPress is the best open source sofware which is completely free to use.The advantage of being open source for a software is that developers can see its codes an write plugins to make it more functional.And also developers add or change small piece of codes especially in functions.php file to unleash the power of your favorite blogging engine.

In today’s post we are again sharing wordpress code snippets.I think you will find a useful wordpress code snippet for your wordpress blog.

You may also take a look at our past wordpress theme collections;

htaccess Gzip Compression

Add the following code in your .htaccess file.Gzip will drastically reduce HTTP response time.

# BEGIN GZIP

AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript

# END GZIP

Instructions:
Just add this to your .htaccess file. Gzip will drastically reduce HTTP response time.

How to Remove the Width and Height Attributes From WP Image Uploader

add_filter( ‘post_thumbnail_html’, ‘remove_width_attribute’, 10 );
add_filter( ‘image_send_to_editor’, ‘remove_width_attribute’, 10 );

function remove_width_attribute( $html ) {
$html = preg_replace( ‘/(width|height)=\”\d*\”\s/’, “”, $html );
return $html;
}

If you upload images via the WordPress image uploader and insert it into your post, it will include the image width and height attribute in the html tag. Here’s what it will look like.

In most cases, this is absolutely alright. However, if you are using a responsive theme or are dealing with responsive web design, the “width” and “height” attribute will be a major roadblock that you need to get rid of.

Here’s how you can do it.

1. Open your theme’s functions.php file.

2. Copy and paste the following code:
add_filter( ‘post_thumbnail_html’, ‘remove_width_attribute’, 10 );
add_filter( ‘image_send_to_editor’, ‘remove_width_attribute’, 10 );

function remove_width_attribute( $html ) {
$html = preg_replace( ‘/(width|height)=\”\d*\”\s/’, “”, $html );
return $html;
}

3. Save the changes.

That’s it. Next time when you insert image into the post via the WP image uploader, the width and height attribute will no longer be there.

How to Change the Font in HTML Editor In WordPress 3.3

add_action( ‘admin_head-post.php’, ‘wpdb_fix_html_editor_font’ );
add_action( ‘admin_head-post-new.php’, ‘wpdb_fix_html_editor_font’ );

function wpdb_fix_html_editor_font() { ?>

<!–?php }

Add/remove Contact Info Fields

To add or remove fields from this section, just add the following to your functions.php.

Login with Username or Email Address

Adding this snippet to the functions.php of your wordpress theme will let users login using an email address or a username. The second snippet will change the text on the login page from “username” to “username / email” but feel free to change the login text to anything you would like.

function login_with_email_address($username) {
$user = get_user_by(’email’,$username);
if(!empty($user->user_login))
$username = $user->user_login;
return $username;
}
add_action(‘wp_authenticate’,’login_with_email_address’);
function change_username_wps_text($text){
if(in_array($GLOBALS[‘pagenow’], array(‘wp-login.php’))){
if ($text == ‘Username’){$text = ‘Username / Email’;}
}
return $text;
}
add_filter( ‘gettext’, ‘change_username_wps_text’ );

Add PayPal Donate Button

Add this snippet to the functions.php to add ‘Donate’ Button on your WordPress Website

// paypal donate button
function cwc_donate_shortcode( $atts ) {
extract(shortcode_atts(array(
‘text’ => ‘Make a donation’,
‘account’ => ‘REPLACE ME’,
‘for’ => ”,
), $atts));
global $post;
if (!$for) $for = str_replace(” “,”+”,$post->post_title);
return ‘‘.$text.’‘;
}
add_shortcode(‘donate’, ‘cwc_donate_shortcode’);

Microsoft‘s tablet no threat to iPad: analysts

Image representing iPad as depicted in CrunchBase

Image via CrunchBase

Microsoft Corp‘s new tablet computers are no threat to Apple Inc‘s iPad, given the lack of enthusiasm among developers to create applications that run on the new Windows operating system, analysts said.

Microsoft introduced its own “Surface” line of tablets on Monday, taking on Apple as well as its own hardware partners including Samsung Electronics Co Ltd and Hewlett-Packard Co.

“Though pricing details are unclear … Microsoft will need to significantly undercut the iPad to be competitive,” Jefferies analyst Peter Misek said.

The Surface tablet will come in two versions, one running Windows RT, based on the same chip designs that power most tablets, and a higher-performance version running Windows 8 Pro.

“The most important factor in the success of a tablet is its ecosystem. Based on our discussions with developers, we find the lack of enthusiasm concerning,” Misek said.

Misek said he expects Windows 8 tablets to struggle to compete with the iPad, which offers over 225,000 apps, and to a lesser extent with Google Inc‘s Android-based tablets, such as the Galaxy Tab.

Microsoft’s lighter, thinner version of the Surface tablet would compete directly with the iPad, while the second, heavier tablet, aimed at the new generation of lightweight laptops, would compete with larger PC makers.

But selling two versions of the tablet in the same retail channels will confuse consumers, said analysts at Jefferies, Forrester Research and ThinkEquity.

“Choice is a key tenet of Windows, but too much choice is overwhelming for consumers,” Forrester Research said. “Apple gets this, and limits iPad options to connectivity, storage, and black … or white.”

However, a keyboard that doubles up as the tablet cover and aggressive pricing could help Microsoft gain market share, some analysts said.

“The keyboard, a simple accessory, is what makes the device most compelling, as it preserves traditional interface that we believe many users appreciate (and will demand) with the subtlety of a cover, something most users will want anyway,” said Citi analyst Walter Pritchard.

Morgan Stanley’s Adam Holt said the cover keyboard, compatibility with Microsoft Office, integrated USB ports and features optimized for Skype would help Microsoft differentiate itself from other tablet makers.

Microsoft shares edged up 19 cents to $30.03 on Tuesday before the bell. They closed at $29.84 on Monday on the Nasdaq.

To calculate the Difference between the date in php

March 27, 2012 Leave a comment

function dbDateDiff($d)
{
$ts = time() – @strtotime(str_replace(“-“,”/”,$d));
if($ts>31536000) $val = round($ts/31536000,0).’ year’;
else if($ts>2419200) $val = round($ts/2419200,0).’ month’;
else if($ts>604800) $val = round($ts/604800,0).’ week’;
else if($ts>86400) $val = round($ts/86400,0).’ day’;
else if($ts>3600) $val = round($ts/3600,0).’ hour’;
else if($ts>60){ $val = round($ts/60,0).’ minute’;
//print “<br>$val<br>”;
}else $val = $ts.’ second’;
if($val>1) $val .= ‘s’;
return $val;
}

XML to Array in php Function

March 27, 2012 Leave a comment

function xml2array($contents, $get_attributes=1, $priority = ‘tag‘) {

if(!$contents) return array();

if(!function_exists(‘xml_parser_create’)) {
//print “‘xml_parser_create()’ function not found!”;
return array();
}

//Get the XML parser of PHP – PHP must have this module for the parser to work
$parser = xml_parser_create(”);
xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, “UTF-8“); # http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss
xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);
xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
xml_parse_into_struct($parser, trim($contents), $xml_values);
xml_parser_free($parser);

if(!$xml_values) return;//Hmm…

//Initializations
$xml_array = array();
$parents = array();
$opened_tags = array();
$arr = array();

$current = &$xml_array; //Refference

//Go through the tags.
$repeated_tag_index = array();//Multiple tags with same name will be turned into an array
foreach($xml_values as $data) {
unset($attributes,$value);//Remove existing values, or there will be trouble

//This command will extract these variables into the foreach scope
// tag(string), type(string), level(int), attributes(array).
extract($data);//We could use the array by itself, but this cooler.

$result = array();
$attributes_data = array();

if(isset($value)) {
if($priority == ‘tag’) $result = $value;
else $result[‘value’] = $value; //Put the value in a assoc array if we are in the ‘Attribute‘ mode
}

//Set the attributes too.
if(isset($attributes) and $get_attributes) {
foreach($attributes as $attr => $val) {
if($priority == ‘tag’) $attributes_data[$attr] = $val;
else $result[‘attr’][$attr] = $val; //Set all the attributes in a array called ‘attr’
}
}

//See tag status and do the needed.
if($type == “open”) {//The starting of the tag ‘<tag>’
$parent[$level-1] = &$current;
if(!is_array($current) or (!in_array($tag, array_keys($current)))) { //Insert New tag
$current[$tag] = $result;
if($attributes_data) $current[$tag. ‘_attr’] = $attributes_data;
$repeated_tag_index[$tag.’_’.$level] = 1;

$current = &$current[$tag];

} else { //There was another element with the same tag name

if(isset($current[$tag][0])) {//If there is a 0th element it is already an array
$current[$tag][$repeated_tag_index[$tag.’_’.$level]] = $result;
$repeated_tag_index[$tag.’_’.$level]++;
} else {//This section will make the value an array if multiple tags with the same name appear together
$current[$tag] = array($current[$tag],$result);//This will combine the existing item and the new item together to make an array
$repeated_tag_index[$tag.’_’.$level] = 2;

if(isset($current[$tag.’_attr’])) { //The attribute of the last(0th) tag must be moved as well
$current[$tag][‘0_attr’] = $current[$tag.’_attr’];
unset($current[$tag.’_attr’]);
}

}
$last_item_index = $repeated_tag_index[$tag.’_’.$level]-1;
$current = &$current[$tag][$last_item_index];
}

} elseif($type == “complete”) { //Tags that ends in 1 line ”
//See if the key is already taken.
if(!isset($current[$tag])) { //New Key
$current[$tag] = $result;
$repeated_tag_index[$tag.’_’.$level] = 1;
if($priority == ‘tag’ and $attributes_data) $current[$tag. ‘_attr’] = $attributes_data;

} else { //If taken, put all things inside a list(array)
if(isset($current[$tag][0]) and is_array($current[$tag])) {//If it is already an array…

// …push the new element into that array.
$current[$tag][$repeated_tag_index[$tag.’_’.$level]] = $result;

if($priority == ‘tag’ and $get_attributes and $attributes_data) {
$current[$tag][$repeated_tag_index[$tag.’_’.$level] . ‘_attr’] = $attributes_data;
}
$repeated_tag_index[$tag.’_’.$level]++;

} else { //If it is not an array…
$current[$tag] = array($current[$tag],$result); //…Make it an array using using the existing value and the new value
$repeated_tag_index[$tag.’_’.$level] = 1;
if($priority == ‘tag’ and $get_attributes) {
if(isset($current[$tag.’_attr’])) { //The attribute of the last(0th) tag must be moved as well

$current[$tag][‘0_attr’] = $current[$tag.’_attr’];
unset($current[$tag.’_attr’]);
}

if($attributes_data) {
$current[$tag][$repeated_tag_index[$tag.’_’.$level] . ‘_attr’] = $attributes_data;
}
}
$repeated_tag_index[$tag.’_’.$level]++; //0 and 1 index is already taken
}
}

} elseif($type == ‘close’) { //End of tag ”
$current = &$parent[$level-1];
}
}

return($xml_array);
}

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.

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..!

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

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

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

Mankatha Preview

Mankatha
Banner: Cloud Nine Movies
Cast: Ajith, Arjun, Trisha, Lakshmi Rai
Direction: Venkat Prabhu
Production: Dhayanithi Alagiri
Music: Yuvan Shankar Raja

There is a lot of anticipation, there are a host of stars, then there is ‘Thala’ and this will be his 50th innings in Tamil!

Venkat Prabhu’s ‘Mankatha‘ has raised expectations by leaps and bounds among Ajith fans and film buffs. The film sees Ajith in a first-time ever full-fledged negative character, suggest reports closely associated with the film. Trisha will play female lead with Arjun chipping in as a CBI officer.

Andrea Jeremiah, Lakshmi Rai, Premji Amaran, Vaibhav, and Anjali will be seen essaying important roles. Even the smallest incident from the sets of ‘Mankatha’ has garnered a lot of media attention and we have updated you regarding many interesting aspects which took place on-location as well as while the shooting was going on.

A single from the music album ‘Vilayadu Mankatha…’ which released on the eve of Thala’s birthday was lapped up by Ajith and Yuvan fans alike and is topping music charts. Now the team has confirmed that the rest of the songs, nine tracks on the whole, will see a grand release on July 18!

The fans expectations are mounting, and with Yuvan scoring the music we can expect some chartbusting numbers on its way.

Ajith committed himself for a rigorous 90-day shooting schedule. The actor has done a lot of hard work for this film which is evident from the way some scenes have shaped up. The racer has also performed some hair-raising car chases without using a body-double (do you remember the 360 degree rotation he did on a Swift?).

Another aspect that has received a lot of attention is the look that ‘Thala’ will sport in this film. The actor has decided to have a natural hairdo sans any colour-the salt and pepper look which Ajith will be seen sporting in ‘Mankatha’ will urge many men to shun hair colour, reveals the director of the film.

The film has been shot extensively from Chennai, Mumbai (particularly Dharavi), Hyderabad, Bangkok, and Macau. Ajith wrapped up his final day shooting from Hyderabad.

Even before the release of ‘Mankatha’ there are some rumours doing the rounds that some producers are eager for a Hindi remake, though nothing regarding this has been confirmed yet.

The film which deals with the gambling game will have the IPL matches as the backdrop and is expected to hit theatres around the Independence Day weekend.

Ajith kumar at a function in chennai

Image via Wikipedia

Terror list goof-up: CBI suspends officials

The Seal of the United States Federal Bureau o...

Image via Wikipedia

Zeenews Bureau

Mumbai: In more embarrassment for the Central government another man – Feroz Rashid Khan named in India’s Most Wanted list of terrorists allegedly hiding in Pakistan was found to be in Arthur Road Jail.

Feroz Rashid Khan, 51, stands 24th on the list of most wanted fugitives supposed to be hiding in Pakistan. Feroz was arrested by the crime branch of Mumbai police from a village in Navi Mumbai in connection with 1993 Mumbai blasts.

Meanwhile, the Central Bureau of Investigation (CBI) which had forwarded Feroze Khan‘s named to the Home Ministry for the list has owned up the mistake.

“They (the CBI) have admitted the mistake for erroneously including Feroze Khan in the list,” home ministry spokesperson Onkar Kedia told a news agency.

Kedia said the CBI had named 40 people and the National Investigation Agency (NIA) had included 10 suspected terrorists in the list.

The CBI, the official said, “has written to the Home Ministry saying that they had forgotten to remove the name from the list although the accused was in their custody”.

He said the NIA has checked up its list and stands by the names forwarded. The CBI is now rechecking the names of 40 people it had given.

The CBI promptly suspended an inspector and transferred two senior officers for the error, said a statement from the agency.

Agency spokesperson Dharini Mishra said: “After first lapse was discovered on May 17, the CBI ordered an enquiry. The lapse has occurred on the part of the official in cancelling the name from the list.”

CBI had issued an Interpol Red Corner Notice against Khan in 1994 but the notice was not withdrawn even after the agency has got his custody.

“CBI has conveyed to the Home Ministry that the lapse was on the agency’s part. When CBI forwarded the list to MHA, they forgot to delete the name of this person,” a Home Ministry spokesperson said.

Khan is alleged to have facilitated transport and distribution of arms and ammunitions during the blast and subsequently.

Mumbai police had alleged that following Dawood Ibrahim’s instructions, Khan arranged for landing of arms allegedly used in the blast.

MHA sources have reportedly said that the CBI failed to inform the Home Ministry about Feroz’s name during compilation of the list.

Earlier, the case of Wazhul Kamar Khan being in the list had left the government red faced. Khan has been living in Mumbai suburb Thane’s Waghle Estate with his mother, wife and children, after he was let off on bail. He was also involved in the 2003 Vile-Parle and Ghatkopar blasts besides the 2002 Mumbai Central station blasts.

The CBI had later removed the name of Wazhul from the list and its website.

Home Minister P Chidambaram on Wednesday had accepted that the inclusion of Wazhul Kamar Khan in the list of most-wanted fugitives given to Pakistan was a “mistake”.

The Indian government had handed over the list of 50 most wanted fugitives to Pakistan shortly after the killing of al Qaeda chief Osama bin Laden in a US covert operation near Islamabad. The move was aimed at increasing the pressure on Pakistan to hand over fugitives wanted by India, including JuD chief Hafiz Saeed and underworld don Dawood Ibrahim but now after another gaffe coming to surface, the list is turning into a source of embarrassment for the Central government.

With IANS inputs