<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6138592440183630591</id><updated>2012-02-16T01:17:56.269-08:00</updated><category term='C#'/><category term='Social Media'/><category term='JQuery'/><category term='Twitter'/><category term='Plugins'/><category term='Email'/><category term='WordPress'/><category term='startup'/><category term='Spammers'/><category term='entrepreneruship'/><category term='JavaScript'/><category term='Security'/><category term='Facebook'/><category term='My Experience'/><category term='Programming'/><category term='Configuration'/><title type='text'>WEB 2.0 AND MORE</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-1090958370312318610</id><published>2011-07-11T15:38:00.000-07:00</published><updated>2011-07-11T15:49:56.935-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Programming'/><category scheme='http://www.blogger.com/atom/ns#' term='Facebook'/><category scheme='http://www.blogger.com/atom/ns#' term='Plugins'/><category scheme='http://www.blogger.com/atom/ns#' term='WordPress'/><title type='text'>How to make facebook comment box seo friendly and show comment counts in wordpress</title><content type='html'>The facebook comment box is now became popular and most loved comment system for the blogs. The main advantage of this plugin is reader can share their comments in facebook wall and it increases the readers participation. It is light weight, fast and sexy look. The main disadvantage of this plugin is it opens inside iframe and search engine will not track the comments. Also it doesn't increase the comment counts. Many bloggers keep both facebook and wordpress default comment system in their blog. But it doesn't look good. There are various plugins for wordpress that helps to overcome this disadvantages. With some work you can make your wordpress blog comment system fully functional with facebook comment box.&lt;br /&gt;&lt;br /&gt;With this tutorial you will be able to do following:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Replace default wordpress comment by facebook comment box&lt;/li&gt;&lt;li&gt;Keep your existing wordpress comments visible but not comment box.&lt;/li&gt;&lt;li&gt;Fetch the comments from facebook comment box to your wordpress blog and allow search engine to track it.&lt;/li&gt;&lt;li&gt;Increase the comments counts as per comments made on facebook comments box.&lt;/li&gt;&lt;li&gt;Make your comment display similar to the facebook comment box.&lt;/li&gt;&lt;/ul&gt;Steps:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Download a wordpress plugin named &lt;a href="http://wordpress.org/extend/plugins/facebook-import-comments/%20"&gt;Facebook Comments to WordPress&lt;/a&gt;. There is small bug in this plugin which you can correct by adding one line of code.&amp;nbsp;&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Open the plugin directory -&amp;gt;classes-&amp;gt;FacebookCommentImporter.php&lt;/li&gt;&lt;li&gt;Find the code below (around line number 220)&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;pre style="background-image: URL(http://2.bp.blogspot.com/_z5ltvMQPaa8/SjJXr_U2YBI/AAAAAAAAAAM/46OqEP32CJ8/s320/codebg.gif); background: #f0f0f0; border: 1px dashed #CCCCCC; color: black; font-family: arial; font-size: 12px; height: auto; line-height: 20px; overflow: auto; padding: 0px; text-align: left; width: 99%;"&gt;&lt;code style="color: black; word-wrap: normal;"&gt;       if ($db-&amp;gt;insert($db-&amp;gt;prefix.'comments', $data)) {  &lt;br /&gt;         $this-&amp;gt;commentMap[$comment['id']]['id'] = $db-&amp;gt;insert_id;  &lt;br /&gt;       } else {  &lt;br /&gt;         return;  &lt;br /&gt;       }  &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;ul&gt;&lt;ul&gt;&lt;li&gt;And replace it by the code below&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;pre style="background-image: URL(http://2.bp.blogspot.com/_z5ltvMQPaa8/SjJXr_U2YBI/AAAAAAAAAAM/46OqEP32CJ8/s320/codebg.gif); background: #f0f0f0; border: 1px dashed #CCCCCC; color: black; font-family: arial; font-size: 12px; height: auto; line-height: 20px; overflow: auto; padding: 0px; text-align: left; width: 99%;"&gt;&lt;code style="color: black; word-wrap: normal;"&gt;       $cmt_id = wp_insert_comment($data);       &lt;br /&gt;       if ($cmt_id) { &lt;br /&gt;         $this-&amp;gt;commentMap[$comment['id']]['id'] = $cmt_id; &lt;br /&gt;       } else { &lt;br /&gt;         return; &lt;br /&gt;       }&amp;nbsp;&lt;/code&gt;&lt;/pre&gt;&lt;pre style="background: none repeat scroll 0% 0% rgb(240, 240, 240); border: 1px dashed rgb(204, 204, 204); color: black; font-family: arial; font-size: 12px; height: auto; line-height: 20px; overflow: auto; padding: 0px; text-align: left; width: 99%;"&gt;&lt;code style="color: black; word-wrap: normal;"&gt;Note: I have informed the plugin developer. May be your code is already corrected.&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;ul&gt;&lt;li&gt;Now install this plugin and configure it from its settings as per your need.&amp;nbsp;&lt;/li&gt;&lt;li&gt;Once you install the plugin successfully, you need to modify your theme's comments.php file. For that open your comments.php file and replace the code by the code below (backup your comments.php file so you can restore in case shit happened :))&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;pre  style="font-family:arial;font-size:12px;border:1px dashed #CCCCCC;width:99%;height:auto;overflow:auto;background:#f0f0f0;;background-image:URL(http://2.bp.blogspot.com/_z5ltvMQPaa8/SjJXr_U2YBI/AAAAAAAAAAM/46OqEP32CJ8/s320/codebg.gif);padding:0px;color:#000000;text-align:left;line-height:20px;"&gt;&lt;code style="color:#000000;word-wrap:normal;"&gt; &amp;lt;div id="comments"&amp;gt;  &lt;br /&gt;      &amp;lt;!-- fb comments --&amp;gt;  &lt;br /&gt;           &amp;lt;div id="fb-root"&amp;gt;&amp;lt;/div&amp;gt;  &lt;br /&gt;           &amp;lt;script src="http://connect.facebook.net/en_US/all.js#xfbml=1"&amp;gt;&amp;lt;/script&amp;gt;  &lt;br /&gt;           &amp;lt;fb:comments href="&amp;lt;?php the_permalink() ?&amp;gt;" num_posts="5" width="625"&amp;gt;&amp;lt;/fb:comments&amp;gt;  &lt;br /&gt;      &amp;lt;!-- fb comments --&amp;gt;  &lt;br /&gt;      &amp;lt;div class="clearing"&amp;gt;&amp;lt;/div&amp;gt;  &lt;br /&gt;      &amp;lt;?php if ( $comments ) : ?&amp;gt;       &lt;br /&gt;      &amp;lt;div id="comments_wp"&amp;gt;  &lt;br /&gt;      &amp;lt;?php $i = 0; ?&amp;gt;  &lt;br /&gt;      &amp;lt;?php foreach ($comments as $comment) : ?&amp;gt;            &lt;br /&gt;           &amp;lt;?php $comment_type = get_comment_type(); ?&amp;gt;  &lt;br /&gt;           &amp;lt;?php $comment_parent = $comment-&amp;gt;comment_parent; ?&amp;gt;  &lt;br /&gt;           &amp;lt;?php if($comment_type == 'comment') { ?&amp;gt;  &lt;br /&gt;           &amp;lt;?php $i++; ?&amp;gt;  &lt;br /&gt;           &amp;lt;?php $cssClass=($i&amp;amp;1)?"odd":"even"; ?&amp;gt;  &lt;br /&gt;           &amp;lt;?php $cssClass .= ($comment_parent)?" child":" parent"; ?&amp;gt;  &lt;br /&gt;           &amp;lt;?php $cssClass .= ($comment-&amp;gt;comment_agent=='facebook-seo-comments-1.0')?" facebook":""; ?&amp;gt;  &lt;br /&gt;                &amp;lt;div id="comment-&amp;lt;?php echo $comment-&amp;gt;comment_ID; ?&amp;gt;" class="&amp;lt;?php echo $cssClass; ?&amp;gt;"&amp;gt;  &lt;br /&gt;                     &amp;lt;div class="avatar-wrap"&amp;gt;&amp;lt;?php echo get_avatar( $comment, 50 ); ?&amp;gt;&amp;lt;/div&amp;gt;  &lt;br /&gt;                     &amp;lt;div class="comment-wrap"&amp;gt;  &lt;br /&gt;                          &amp;lt;div class="author"&amp;gt;  &lt;br /&gt;                               &amp;lt;a href="&amp;lt;?php comment_author_url(); ?&amp;gt;" title="&amp;lt;?php comment_author(); ?&amp;gt;" rel="external nofollow"&amp;gt;  &lt;br /&gt;                                    &amp;lt;strong&amp;gt;&amp;lt;?php comment_author(); ?&amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;?php edit_comment_link('Edit', ''); ?&amp;gt;  &lt;br /&gt;                               &amp;lt;/a&amp;gt;  &lt;br /&gt;                          &amp;lt;/div&amp;gt;  &lt;br /&gt;                          &amp;lt;div class="comment"&amp;gt;&amp;lt;?php comment_text() ?&amp;gt;&amp;lt;/div&amp;gt;  &lt;br /&gt;                          &amp;lt;div class="date"&amp;gt;&amp;lt;?php comment_date() ?&amp;gt;&amp;lt;?php comment_time() ?&amp;gt;&amp;lt;/div&amp;gt;  &lt;br /&gt;                     &amp;lt;/div&amp;gt;  &lt;br /&gt;                     &amp;lt;div class="clearing"&amp;gt;&amp;lt;/div&amp;gt;  &lt;br /&gt;                &amp;lt;/div&amp;gt;  &lt;br /&gt;      &amp;lt;?php } /* End of is_comment statement */ ?&amp;gt;  &lt;br /&gt;      &amp;lt;?php endforeach; ?&amp;gt;  &lt;br /&gt;      &amp;lt;/div&amp;gt;&amp;lt;!-- end #comments_wp --&amp;gt;  &lt;br /&gt;      &amp;lt;?php else : ?&amp;gt;  &lt;br /&gt;      &amp;lt;?php endif; ?&amp;gt;  &lt;br /&gt;      &amp;lt;?php if ( comments_open() ) : ?&amp;gt;       &lt;br /&gt;      &amp;lt;div id="trackbacks"&amp;gt;  &lt;br /&gt;      &amp;lt;div class="heading"&amp;gt;&amp;lt;span&amp;gt;Trackbacks&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;  &lt;br /&gt;           &amp;lt;ul&amp;gt;  &lt;br /&gt;                &amp;lt;?php foreach ($comments as $comment) : ?&amp;gt;  &lt;br /&gt;                &amp;lt;?php $comment_type = get_comment_type(); ?&amp;gt;  &lt;br /&gt;                &amp;lt;?php if($comment_type != 'comment') { ?&amp;gt;  &lt;br /&gt;                &amp;lt;li&amp;gt;&amp;lt;?php comment_author_link() ?&amp;gt;&amp;lt;/li&amp;gt;  &lt;br /&gt;                &amp;lt;?php } ?&amp;gt;  &lt;br /&gt;                &amp;lt;?php endforeach; ?&amp;gt;  &lt;br /&gt;           &amp;lt;/ul&amp;gt;  &lt;br /&gt;           &amp;lt;p class="trackback"&amp;gt;  &lt;br /&gt;                &amp;lt;?php comments_rss_link('comments rss'); ?&amp;gt;   &lt;br /&gt;                &amp;lt;?php if ( pings_open() ) : ?&amp;gt;|   &lt;br /&gt;                     &amp;lt;a href="&amp;lt;?php trackback_url() ?&amp;gt;" rel="trackback"&amp;gt;trackback url&amp;lt;/a&amp;gt;       &lt;br /&gt;                &amp;lt;?php endif; ?&amp;gt;  &lt;br /&gt;           &amp;lt;/p&amp;gt;  &lt;br /&gt;      &amp;lt;/div&amp;gt;&amp;lt;!-- end #trackbacks --&amp;gt;  &lt;br /&gt; &amp;lt;?php else : // Comments are closed ?&amp;gt;  &lt;br /&gt;      &amp;lt;p class="comments-closed"&amp;gt;&amp;lt;?php _e('Sorry, the comment form is closed at this time.'); ?&amp;gt;&amp;lt;/p&amp;gt;  &lt;br /&gt; &amp;lt;?php endif; ?&amp;gt;       &lt;br /&gt; &amp;lt;/div&amp;gt;&amp;lt;!-- end #comment-template --&amp;gt;  &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;In your css file, add the code below to beautify your comments display&lt;/li&gt;&lt;/ul&gt;&lt;pre style="background-image: URL(http://2.bp.blogspot.com/_z5ltvMQPaa8/SjJXr_U2YBI/AAAAAAAAAAM/46OqEP32CJ8/s320/codebg.gif); background: #f0f0f0; border: 1px dashed #CCCCCC; color: black; font-family: arial; font-size: 12px; height: auto; line-height: 20px; overflow: auto; padding: 0px; text-align: left; width: 99%;"&gt;&lt;code style="color: black; word-wrap: normal;"&gt; /* comment */  &lt;br /&gt; #comments #comments_wp{padding: 3px 0 5px 4px;font-family:"lucida grande",tahoma,verdana,arial,sans-serif;}  &lt;br /&gt; #comments #comments_wp div.facebook{display:none;}  &lt;br /&gt; #comments div.odd, #comments div.even{border-bottom:1px solid #E9E9E9;padding-top:7px;}  &lt;br /&gt; #comments div.child {margin-left: 59px;}  &lt;br /&gt; #comments div.child .comment-wrap{width:530px;padding-bottom: 18px;}  &lt;br /&gt; #comments div .avatar-wrap{float:left;padding:0 0 0 5px;width:50px;}  &lt;br /&gt; #comments div .comment-wrap{margin:0 0 0 10px;width:575px;float:left;padding-bottom:10px;}  &lt;br /&gt; #comments div .comment-wrap .comment p{margin:0;font-family:"lucida grande",tahoma,verdana,arial,sans-serif;font-size:11px;line-height: 15px;}  &lt;br /&gt; #comments div .comment-wrap .author{margin:0;}  &lt;br /&gt; #comments div .comment-wrap .author a{color:#3B5998;font-size:11px;}  &lt;br /&gt; #comments div .comment-wrap .author a.comment-edit-link{margin-left:5px;font-size:8px;}  &lt;br /&gt; #comments div .comment-wrap .date, #comments div .comment-wrap .date a{color:#808080;font-size:10px;}  &lt;br /&gt; /* trackbacks */  &lt;br /&gt; #trackbacks .trackback{text-align:right;}  &lt;br /&gt; #trackbacks ul li{list-style:lower-greek;}  &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;The above describe code will fetch the comments from facebook graph api and stores into the database. This will show the old comments made by users and keeps the comments made through facebook plugin in hidden div so search engine can crawl it. This plugin also increases the comments counts if any comments is made.&lt;br /&gt;&lt;br /&gt;You can see the demo of this plugin at&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Facebook comment with comments counts:&amp;nbsp; &lt;a href="http://www.buzzom.com/2011/07/sorry-guys-i-love-it-but-google-plus-is-destined-to-fail/"&gt;http://www.buzzom.com/2011/07/sorry-guys-i-love-it-but-google-plus-is-destined-to-fail/&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Old comments made from wordpress comment box with comment box plugin of facebook: &lt;a href="http://www.buzzom.com/2008/02/shopping-search-in-finland/comment-page-1/#comment-7814"&gt;http://www.buzzom.com/2008/02/shopping-search-in-finland/comment-page-1/#comment-7814&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;Make your wordpress blogs comments&amp;nbsp; sexy with facebook comment box plugin. Cheers !!!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-1090958370312318610?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/1090958370312318610/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2011/07/how-to-make-facebook-comment-box-seo.html#comment-form' title='14 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/1090958370312318610'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/1090958370312318610'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2011/07/how-to-make-facebook-comment-box-seo.html' title='How to make facebook comment box seo friendly and show comment counts in wordpress'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><thr:total>14</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-831907695503143912</id><published>2011-07-05T13:56:00.000-07:00</published><updated>2011-07-05T14:57:27.809-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Programming'/><category scheme='http://www.blogger.com/atom/ns#' term='WordPress'/><title type='text'>How to show first image of the wordpress post as a thumbnail</title><content type='html'>In wordpress, if you want to show first image of the post as a post thumbnail in loop, then you can do it easily. You just need to download a code snippet called &lt;a href="http://code.google.com/p/timthumb/"&gt;timthumb.php&lt;/a&gt;. This great code is enough to get the thumbnail of your choice from the post. It is highly optimized for the wordpress.&lt;br /&gt;&lt;br /&gt;Just follow the steps below to do it:&lt;br /&gt;&lt;br /&gt;Make a directory (with wordpress write permission)  named "thumbs" in your theme root directory.&lt;br /&gt;Put the &lt;a href="http://code.google.com/p/timthumb/"&gt;timthumb.php&lt;/a&gt; file inside it. Directory should be writable because this file will create catch images folder inside it.&lt;br /&gt;Inside your theme's functions.php file (Make one if not exists) add the code below:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre style="font-family:arial;font-size:12px;border:1px dashed #CCCCCC;width:99%;height:auto;overflow:auto;background:#f0f0f0;;background-image:URL(http://2.bp.blogspot.com/_z5ltvMQPaa8/SjJXr_U2YBI/AAAAAAAAAAM/46OqEP32CJ8/s320/codebg.gif);padding:0px;color:#000000;text-align:left;line-height:20px;"&gt;&lt;code style="color:#000000;word-wrap:normal;"&gt; /* Extract thumbnails from post */&lt;br /&gt;function show_thumb($w,$h,$zc,$cropfrom,$q) {&lt;br /&gt;     global $post;&lt;br /&gt;     preg_match_all('/\&amp;lt; *[img][^\&amp;gt;]*src *= *[\"\']{0,1}([^\"\'\ &amp;gt;]*)/',get_the_content(),$matches);&lt;br /&gt;     $thumb = get_post_meta($post-&amp;gt;ID, 'thumb', true);&lt;br /&gt;     if ($thumb) {&lt;br /&gt;          print get_bloginfo('template_directory').'/thumbs/timthumb.php?src='.$thumb.'&amp;amp;amp;w='&lt;br /&gt;               .$w.'&amp;amp;amp;h='.$h.'&amp;amp;amp;zc='.$zc.'&amp;amp;amp;cropfrom='.$cropfrom.'&amp;amp;amp;q='.$q;&lt;br /&gt;     } elseif (count($matches[1]) &amp;gt; 0) {&lt;br /&gt;          print get_bloginfo('template_directory').'/thumbs/timthumb.php?src='. $matches[1][0] .'&amp;amp;amp;w='&lt;br /&gt;               .$w.'&amp;amp;amp;h='.$h.'&amp;amp;amp;zc='.$zc.'&amp;amp;amp;cropfrom='.$cropfrom.'&amp;amp;amp;q='.$q;&lt;br /&gt;     } else {&lt;br /&gt;          print get_bloginfo('template_directory').'/thumbs/timthumb.php?src='. get_bloginfo('template_directory').'/images/no_image.png&amp;amp;amp;w='&lt;br /&gt;               .$w.'&amp;amp;amp;h='.$h.'&amp;amp;amp;zc='.$zc.'&amp;amp;amp;cropfrom='.$cropfrom.'&amp;amp;amp;q='.$q;&lt;br /&gt;     }&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Now your code is ready to include in wordpress theme. You can use this code in index.php, archive.php etc file as below:&lt;br /&gt;&lt;br /&gt;&lt;pre style="font-family:arial;font-size:12px;border:1px dashed #CCCCCC;width:99%;height:auto;overflow:auto;background:#f0f0f0;;background-image:URL(http://2.bp.blogspot.com/_z5ltvMQPaa8/SjJXr_U2YBI/AAAAAAAAAAM/46OqEP32CJ8/s320/codebg.gif);padding:0px;color:#000000;text-align:left;line-height:20px;"&gt;&lt;code style="color:#000000;word-wrap:normal;"&gt; &amp;lt;?php if (have_posts()) : ?&amp;gt;&lt;br /&gt;&amp;lt;div class="heading"&amp;gt;&amp;lt;span&amp;gt;Recent Posts&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;!-- &amp;lt;entries --&amp;gt;&lt;br /&gt;&amp;lt;ul id="entries"&amp;gt;&lt;br /&gt;     &amp;lt;?php     while (have_posts()) : the_post(); ?&amp;gt;&lt;br /&gt;     &amp;lt;li&amp;gt;&lt;br /&gt;               &amp;lt;div class="post-thumb"&amp;gt;&lt;br /&gt;                         &amp;lt;img title="&amp;lt;?php the_title(); ?&amp;gt;" alt="&amp;lt;?php the_title(); ?&amp;gt;" src="&amp;lt;?php show_thumb(160,125,1, middle, 90); ?&amp;gt;"&amp;gt;&lt;br /&gt;               &amp;lt;/div&amp;gt;&lt;br /&gt;               &amp;lt;div class="entry"&amp;gt;&lt;br /&gt;                         &amp;lt;h2&amp;gt;&amp;lt;a href="&amp;lt;?php the_permalink(); ?&amp;gt;"&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt;&lt;br /&gt;                                   &amp;lt;small&amp;gt;&amp;lt;?php the_time('F jS, Y') ?&amp;gt;&lt;br /&gt;                                             &amp;lt;span&amp;gt;|&amp;lt;/span&amp;gt; &amp;lt;?php the_category(', ') ?&amp;gt; &amp;lt;span&amp;gt;|&amp;lt;/span&amp;gt;&lt;br /&gt;                                             &amp;lt;?php the_author_posts_link() ?&amp;gt; &amp;lt;span&amp;gt;|&amp;lt;/span&amp;gt;&lt;br /&gt;                                             &amp;lt;img src="&amp;lt;?php bloginfo('template_directory'); ?&amp;gt;/images/like_mark.png" /&amp;gt;&amp;lt;?php comments_popup_link('0', '1', '%'); ?&amp;gt;&lt;br /&gt;                                   &amp;lt;/small&amp;gt;&lt;br /&gt;                         &amp;lt;div class="snippet"&amp;gt;&lt;br /&gt;                                   &amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;                         &amp;lt;/div&amp;gt;&lt;br /&gt;               &amp;lt;/div&amp;gt;                    &lt;br /&gt;               &amp;lt;div class="clearing"&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;     &amp;lt;/li&amp;gt;               &lt;br /&gt;     &amp;lt;?php endwhile; ?&amp;gt;&lt;br /&gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;&amp;lt;!-- &amp;lt;/entries --&amp;gt;&lt;br /&gt;&amp;lt;?php else : ?&amp;gt;&lt;br /&gt;&amp;lt;?php include (TEMPLATEPATH . '/404.php'); ?&amp;gt;&lt;br /&gt;&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Sample css for the thumbnail:&lt;br /&gt;&lt;br /&gt;/*-- thumnails --*/&lt;br /&gt;.post-thumb{float:left;margin-bottom: 15px;}&lt;br /&gt;.post-thumb img{display: block;font-size:10px;height:125px;overflow:hidden;text-align: center;width: 160px;}&lt;br /&gt;&lt;br /&gt;Cheers !!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-831907695503143912?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/831907695503143912/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2011/07/how-to-show-first-image-of-wordpress.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/831907695503143912'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/831907695503143912'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2011/07/how-to-show-first-image-of-wordpress.html' title='How to show first image of the wordpress post as a thumbnail'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-2453728665934671836</id><published>2011-04-30T10:39:00.000-07:00</published><updated>2011-04-30T11:43:26.742-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='startup'/><category scheme='http://www.blogger.com/atom/ns#' term='entrepreneruship'/><title type='text'>Why being an entrepreneur SUCKS</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/-cks13TXoZqg/TbxTNi3fczI/AAAAAAAAAsM/RaI7vAU3Lms/s1600/self-motivated.jpeg"&gt;&lt;img style="float: right; margin: 0pt 0pt 10px 10px; cursor: pointer; width: 211px; height: 158px;" src="http://4.bp.blogspot.com/-cks13TXoZqg/TbxTNi3fczI/AAAAAAAAAsM/RaI7vAU3Lms/s320/self-motivated.jpeg" alt="" id="BLOGGER_PHOTO_ID_5601443528705012530" border="0" /&gt;&lt;/a&gt;I was going thorough an old issue of Entrepreneur magazine and I found an interesting article at the last page. It was about pain of the entrepreneur who started their own company by quitting their job. The points mentioned on that article are very true. If you are thinking to quit your job and want to start your own company then make yourself ready for it :)&lt;br /&gt;&lt;br /&gt;I have copied all points exactly same from from the article. So I would like to give the credit of this article to its author Ankush  Chibber.&lt;br /&gt;&lt;br /&gt;Why being an entrepreneur sucks:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Banks hate you. They will give a BPO  fresher a credit card, but not an entrepreneur like you.&lt;/li&gt;&lt;li&gt;R.E.S.P.E.C.T. You will get N.O.N.E. of it. Atleast in the first five years.&lt;/li&gt;&lt;li&gt;That idiotic neighbor who codes for a living at Infosys will be the apple of even your own parents' eye.&lt;/li&gt;&lt;li&gt;You will be the scum of the earth. For everyone in the housing society.&lt;/li&gt;&lt;li&gt;Your dad will start mention your old job when asked by his friends.&lt;/li&gt;&lt;li&gt;You will lose your friends. No one wants a jockey who is gone 24/7 building his dream.&lt;/li&gt;&lt;li&gt;You will never have enough money. Never in the beginning.&lt;/li&gt;&lt;li&gt; No one will marry you. But that will cheese off your parents more.&lt;/li&gt;&lt;li&gt;No one will date you either. That will cheese you off more.&lt;/li&gt;&lt;li&gt;The government... enough said...&lt;/li&gt;&lt;/ol&gt;The aim of this article is not to scare but to motivate you to give continuous effort to get success. What you say? you can share your thoughts :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-2453728665934671836?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/2453728665934671836/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2011/04/why-being-entrepreneur-sucks.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/2453728665934671836'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/2453728665934671836'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2011/04/why-being-entrepreneur-sucks.html' title='Why being an entrepreneur SUCKS'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/-cks13TXoZqg/TbxTNi3fczI/AAAAAAAAAsM/RaI7vAU3Lms/s72-c/self-motivated.jpeg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-1091324854695230722</id><published>2010-09-22T07:09:00.001-07:00</published><updated>2010-09-22T13:53:10.309-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='Programming'/><category scheme='http://www.blogger.com/atom/ns#' term='JQuery'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Post javascript array to server using jquery post</title><content type='html'>I was making a "create poll  form" containing a question, multiple choices and other options. The challenge was to post values to the server without refreshing page. Another problem was there will be one or more options (means array of the options value) and each option may contain comma with it. While posting values to the server, array values are separated by comma. And if any of the option contains comma, we are gone. Server code will create one more option while spiting comma separated string back to array :) . After trying several things I found a simplest and reliable solution as below:&lt;br /&gt;&lt;pre style="font-family: arial; font-size: 12px; border: 1px dashed rgb(204, 204, 204); width: 99%; height: auto; overflow: auto; background: url(&amp;quot;http://2.bp.blogspot.com/_z5ltvMQPaa8/SjJXr_U2YBI/AAAAAAAAAAM/46OqEP32CJ8/s320/codebg.gif&amp;quot;) repeat scroll 0% 0% rgb(240, 240, 240); padding: 0px; color: rgb(0, 0, 0); text-align: left; line-height: 20px;"&gt;&lt;code style="color: rgb(0, 0, 0); word-wrap: normal;"&gt; &amp;lt;html&amp;gt; &lt;br /&gt;&amp;lt;head&amp;gt; &lt;br /&gt;  &amp;lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"&amp;gt;&amp;lt;/script&amp;gt; &lt;br /&gt;  &amp;lt;script type="text/javascript"&amp;gt; &lt;br /&gt;    function SavePoll() { &lt;br /&gt;      var pollQues = $('#txtPollQues').val(); &lt;br /&gt;      var input = $("#answer-options input:text") &lt;br /&gt;      var choices = ""; &lt;br /&gt;      var optionCnt = 0; &lt;br /&gt;      for (var i = 0; i &amp;lt; input.length; i++) { &lt;br /&gt;        if (input[optionCnt].value != '') { &lt;br /&gt;          choices += "&amp;amp;choice-" + optionCnt + "=" + $.URLEncode(input[i].value); &lt;br /&gt;          optionCnt += 1; &lt;br /&gt;        } &lt;br /&gt;      } &lt;br /&gt;      choices = "&amp;amp;optCnt=" + optionCnt + choices; &lt;br /&gt;      //some validation here &lt;br /&gt;      var pars_choices = "SavePoll.aspx?question=" + pollQues + "&amp;amp;pollId=" + pollId + choices; &lt;br /&gt;      $.post(pars_choices, function(resp) { &lt;br /&gt;        //viewPolls(pollId); &lt;br /&gt;      }); &lt;br /&gt;    } &lt;br /&gt;&amp;lt;/script&amp;gt; &lt;br /&gt;&amp;lt;/head&amp;gt; &lt;br /&gt;&amp;lt;body&amp;gt; &lt;br /&gt;  Poll question &lt;br /&gt;  &amp;lt;textarea id="txtPollQues" name="txtPollQues" rows="3" cols="50" style="width: 99%"&amp;gt;&amp;lt;/textarea&amp;gt; &lt;br /&gt;  &amp;lt;br /&amp;gt; &lt;br /&gt;  Poll options &lt;br /&gt;  &amp;lt;ul id="answer-options"&amp;gt; &lt;br /&gt;    &amp;lt;li&amp;gt; &lt;br /&gt;      &amp;lt;input type="text" /&amp;gt;&amp;lt;/li&amp;gt; &lt;br /&gt;    &amp;lt;li&amp;gt; &lt;br /&gt;      &amp;lt;input type="text" /&amp;gt;&amp;lt;/li&amp;gt; &lt;br /&gt;    &amp;lt;li&amp;gt; &lt;br /&gt;      &amp;lt;input type="text" /&amp;gt;&amp;lt;/li&amp;gt; &lt;br /&gt;    &amp;lt;li&amp;gt; &lt;br /&gt;      &amp;lt;input type="text" /&amp;gt;&amp;lt;/li&amp;gt; &lt;br /&gt;    &amp;lt;li&amp;gt; &lt;br /&gt;      &amp;lt;input type="text" /&amp;gt;&amp;lt;/li&amp;gt; &lt;br /&gt;  &amp;lt;/ul&amp;gt; &lt;br /&gt;  &amp;lt;input type="button" value="Save" onclick="SavePoll()" /&amp;gt; &lt;br /&gt;&amp;lt;/body&amp;gt; &lt;br /&gt;&amp;lt;/html&amp;gt; &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;The corresponding server side code is  as below:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre style="font-family: arial; font-size: 12px; border: 1px dashed rgb(204, 204, 204); width: 99%; height: auto; overflow: auto; background: url(&amp;quot;http://2.bp.blogspot.com/_z5ltvMQPaa8/SjJXr_U2YBI/AAAAAAAAAAM/46OqEP32CJ8/s320/codebg.gif&amp;quot;) repeat scroll 0% 0% rgb(240, 240, 240); padding: 0px; color: rgb(0, 0, 0); text-align: left; line-height: 20px;"&gt;&lt;code style="color: rgb(0, 0, 0); word-wrap: normal;"&gt; protected void Page_Load(object sender, EventArgs e) &lt;br /&gt;{ &lt;br /&gt;     string pollQuestion = ["question"]; &lt;br /&gt;     int optCnt = Convert.ToInt16(Request["optCnt"]); &lt;br /&gt;     string[] choices = new string[optCnt]; &lt;br /&gt;     for (int i = 0; i &amp;lt; optCnt; i++) &lt;br /&gt;     { &lt;br /&gt;          choices[i] = Server.UrlDecode(Request["choice-"+ i] ); &lt;br /&gt;     } &lt;br /&gt;     Your save method (pollQuestion, choices); &lt;br /&gt;} &lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-1091324854695230722?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/1091324854695230722/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2010/09/post-javascript-array-to-server-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/1091324854695230722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/1091324854695230722'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2010/09/post-javascript-array-to-server-using.html' title='Post javascript array to server using jquery post'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-6181171769396902321</id><published>2009-11-02T05:05:00.000-08:00</published><updated>2009-11-02T05:20:24.649-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='Email'/><category scheme='http://www.blogger.com/atom/ns#' term='Spammers'/><title type='text'>Forward mail helps spammer to collect email ids</title><content type='html'>&lt;a href="http://technology.globalthoughtz.com/files/2009/11/email-thunder.PNG"&gt;&lt;img style="MARGIN: 0px 10px 10px 0px; WIDTH: 175px; FLOAT: left; HEIGHT: 166px; CURSOR: hand" border="0" alt="" src="http://technology.globalthoughtz.com/files/2009/11/email-thunder.PNG" /&gt;&lt;/a&gt; I get several forward emails from friends. I like it and I also forward it if it is worthy to forward. Few month before I had created a new email id for official use but I am using it for other things like to send email to friends and some non official things. Within a month of period time, I started gatting several spam mails. I was surprised how it came on my newly created email id. Later I found that It was because of forward emails.&lt;br /&gt;&lt;br /&gt;I have covered this story on globalthoughtz. Please visit to&lt;a href="http://technology.globalthoughtz.com/index.php/spammer-use-forward-emails-to-collect-email-ids/"&gt; read more&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-6181171769396902321?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/6181171769396902321/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2009/11/forward-mail-helps-spammer-to-collect.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/6181171769396902321'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/6181171769396902321'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2009/11/forward-mail-helps-spammer-to-collect.html' title='Forward mail helps spammer to collect email ids'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-4587652816114704251</id><published>2009-09-17T14:12:00.000-07:00</published><updated>2009-09-17T15:23:37.473-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Programming'/><category scheme='http://www.blogger.com/atom/ns#' term='Social Media'/><category scheme='http://www.blogger.com/atom/ns#' term='My Experience'/><category scheme='http://www.blogger.com/atom/ns#' term='Twitter'/><title type='text'>My best creation</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_EGrxTLblyhg/SrKzqychokI/AAAAAAAAAVQ/6ZttMYlm_z4/s1600-h/buzzomNxy.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 201px; height: 212px;" src="http://1.bp.blogspot.com/_EGrxTLblyhg/SrKzqychokI/AAAAAAAAAVQ/6ZttMYlm_z4/s320/buzzomNxy.png" alt="" id="BLOGGER_PHOTO_ID_5382562052338459202" border="0" /&gt;&lt;/a&gt;I have developed several products solely and as part of development team. Among them &lt;a href="http://www.buzzom.com/BuzzomLab"&gt;Buzzom Desktop application&lt;/a&gt; and &lt;a href="http://nxy.in/"&gt;Nxy url shortening&lt;/a&gt; service are my favorite product I ever developed. I am part of this product development team. The interesting parts of this product are both are based on twitter services. Both applications provide login using &lt;a href="http://twitter.com/"&gt;twitter&lt;/a&gt; credentials. This application seems very simple, but they run on much optimized way.&lt;br /&gt;&lt;br /&gt;Buzzom Desktop is a twitter tool for windows. Its basic function is to send tweets and read tweets. But while sending tweets, if the url length is greater than 23 characters, it shortens it using &lt;a href="http://nxy%20.in/"&gt;http://nxy .in&lt;/a&gt; service. Another interesting part is the short url. Each short url created using Buzzom Desktop  will be unique for each creator. When these short url opens in a browser, it will show a small advertisement at top, and that advertisement will be creators(yours) advertisement. For that you need to configure it from &lt;a href="http://nxy%20.in/"&gt;http://nxy .in&lt;/a&gt;.  Wow you can earn while sharing your views to the world. And also, you can track your urls, how many clicks you have got. The concept behind these products is to benefit users maximum. Oh I dived in to financial things; let me discuss again technical part.&lt;br /&gt;&lt;br /&gt;Technically, twitter gives 150 APIs hit per user per hour. This is very essential while developing twitter based application.  And there is heavy client server communication also. So every request sent to web/twitter is an expensive task in terms of performance. Buzzom Desktop communicates two different web server for two different purpose: 1. Twitter to provide twitter service and Nxy to provide shortening url. So these factor are considered while developing it. To know more about Buzzom Desktop visit &lt;a href="http://www.buzzom.com/blog"&gt;buzzom blog&lt;/a&gt;.  I will back to you soon with more stuff and fun. Good bye.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-4587652816114704251?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/4587652816114704251/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2009/09/my-best-creation.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/4587652816114704251'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/4587652816114704251'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2009/09/my-best-creation.html' title='My best creation'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_EGrxTLblyhg/SrKzqychokI/AAAAAAAAAVQ/6ZttMYlm_z4/s72-c/buzzomNxy.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-8382823341618727237</id><published>2009-04-09T11:01:00.000-07:00</published><updated>2009-04-10T09:56:52.782-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Social Media'/><category scheme='http://www.blogger.com/atom/ns#' term='Twitter'/><title type='text'>Social media and profile picture</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_EGrxTLblyhg/Sd47kBLyHrI/AAAAAAAAAQQ/NzZNIJS3O3U/s1600-h/s_smiling_face1.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 200px; height: 150px;" src="http://3.bp.blogspot.com/_EGrxTLblyhg/Sd47kBLyHrI/AAAAAAAAAQQ/NzZNIJS3O3U/s200/s_smiling_face1.jpg" alt="" id="BLOGGER_PHOTO_ID_5322757299577691826" border="0" /&gt;&lt;/a&gt;&lt;p class="MsoNormal"&gt;I am a social media man. Do actively use Twitter, Facebook, and Linkedin; and use others like Hi5, Orkut, Live, Yahoo360 etc. moderately. In most of these social media services, I add those friends who are known to me. I upload my latest pictures, post my current statuses, wish on birthdays, comment friends statuses and photos. I also love to see my friend’s status, new events, new pictures uploaded, new profile picture, discussion and many more. &lt;span style=""&gt; &lt;/span&gt;I keep on changing my profile picture, and it bores me to see someone keeping same profile picture for a long time.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;I am having totally different experience with twitter. I have thousands of friends and very few of them are known personally. Usually I read tweets from few users only, because their interests match mine.&lt;span style=""&gt;  &lt;/span&gt;They are my favorite tweeters. I know names of only few tweeters but I recognize many by their profile picture. &lt;span style=""&gt; &lt;/span&gt;When my favorite face tweets something, I don’t miss it. &lt;/p&gt;  &lt;p class="MsoNormal"&gt;I came to know that, changing profile picture is painful for those who like you. Today, one new face was tweeting there in my favorites and it surprised me. I thought it was someone I haven’t followed. When I saw user name there, that was bit familiar but not completely. Later I came to know that, he was my favorite twitter friend,&lt;span class="Apple-style-span" style="font-style: italic;"&gt;@shresthayash&lt;/span&gt;.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;This incident made me rethink my Twitter strategy. You may have to also. Think twice before you change your profile picture. It creates great confusion to your followers. It might cost you. &lt;/p&gt;  &lt;p class="MsoNormal"&gt;Have a great twit ahead. cheers!!!!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-8382823341618727237?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/8382823341618727237/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2009/04/social-media-and-profile-picture.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/8382823341618727237'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/8382823341618727237'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2009/04/social-media-and-profile-picture.html' title='Social media and profile picture'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_EGrxTLblyhg/Sd47kBLyHrI/AAAAAAAAAQQ/NzZNIJS3O3U/s72-c/s_smiling_face1.jpg' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-2797155053757412734</id><published>2009-04-09T11:00:00.000-07:00</published><updated>2009-04-10T09:59:53.861-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Configuration'/><category scheme='http://www.blogger.com/atom/ns#' term='Email'/><title type='text'>Importing mails from thunderbird to Microsoft office outlook 2007</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_EGrxTLblyhg/Sd9mTUBa2_I/AAAAAAAAAQ4/yz41xkz3L8w/s1600-h/Out_Look_2007_Logo+copy.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 200px; height: 196px;" src="http://1.bp.blogspot.com/_EGrxTLblyhg/Sd9mTUBa2_I/AAAAAAAAAQ4/yz41xkz3L8w/s200/Out_Look_2007_Logo+copy.jpg" alt="" id="BLOGGER_PHOTO_ID_5323085766553426930" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;I always want to use different tools for different things. And this time, I decided to use Microsoft Office Outlook 2007 instead thunderbird. Thousands of mails were there in thunderbird which I must import to new mail client before use it.  But, importing mails from thunderbird to MS Office outlook 2007 was not easy.  The main problem behind was different file system and no export/import features supported each other. After various unsuccessful attempts, I came to know about IMAPSize which played a vital role for importing mails. There is a tool mbox2eml which translates thunderbird mail file system (mbox) to outlook express recognizable file system .eml.  Here are the steps I followed:&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Download IMAPSize from &lt;a href="http://www.broobles.com/imapsize/download.php"&gt; here&lt;/a&gt;  and install it. It’s free.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open thunderbird,  click Inbox and choose compact.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Again right click inbox and choose Copy Folder Location.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open a notepad and paste it. Eg: “mailbox:/C|/Documents and Settings/lkhatiwada/Application Data/Thunderbird/Profiles/x8bbn550.default/Mail/Local Folders/Inbox”&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now replace “mailbox:/C|/”  by  “c:\”. Similarly replace forward slash (/) by backward slash (\).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open IMAPSize from start -&gt; All Programs -&gt; IMAPSize.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Choose mbox2eml from Tools menu.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click button Select mbox files to convert.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Copy the address from notepad and paste it in “File Name” text box field.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Select the destination temporary folder where you want to keep converted .eml files.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click “Convert” button and wait for completion.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open the outlook express (By default comes with windows xp or later).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open the folder (destination temporary folder where you converted the mails in .eml format).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Select all .eml files and drag those into inbox inside Local Folder of outlook express (See right hand side of outlook express tree view).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;If you want to import sent item aslo, repeat step 4 to 14.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now, Open Microsoft Office Outlook 2007.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Choose Import and Export from File menu.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Choose “ Import  internet mail and address” from the list and click next.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Choose “Outlook Express……..or Windows Mail” from list. Make sure to check “Import mail” checkbox if unchecked.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click “finish” button and wait for finish importing. Finally click button “Save in Inbox”.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Now, all your thunderbird mails are imported in Microsoft Office Outlook 2007. Enjoy!!!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-2797155053757412734?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/2797155053757412734/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2009/04/import-mails-from-thunderbird-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/2797155053757412734'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/2797155053757412734'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2009/04/import-mails-from-thunderbird-to.html' title='Importing mails from thunderbird to Microsoft office outlook 2007'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_EGrxTLblyhg/Sd9mTUBa2_I/AAAAAAAAAQ4/yz41xkz3L8w/s72-c/Out_Look_2007_Logo+copy.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6138592440183630591.post-3436980616489151042</id><published>2009-04-09T10:58:00.000-07:00</published><updated>2009-04-10T10:00:21.137-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Configuration'/><category scheme='http://www.blogger.com/atom/ns#' term='Email'/><title type='text'>Sorry, that domain isn’t in my list of allowed rcpthosts (#5.7.1)</title><content type='html'>&lt;div&gt;I configured Microsoft Office Outlook 2007 mail client and started using it. When I was trying to send a mail, it was working perfectly with my company email address but with other email like gmail, hotmail or yahoo, I was getting “sorry, that domain isn’t in my list of allowed rcpthosts (#5.7.1)” error message. I searched the solution, in different places I found different complex solutions, but actual solution was very simple. Just need to configure SMTP outgoing authentication, and steps are:&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;Open Microsoft Office Outlook 2007&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Choose Account Settings from Tools&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Choose email account you want to configure and click edit or change button which you can see or double click it.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;You will see change email setting window. From there, click “More settings”.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click on outgoing tab and check “My Outgoing Server (SMTP) requires authentication”&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Choose radio “Use same setting as my incoming mail server”&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click Ok button then Next and Finish.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Now you can send mail to any email address. Cheers!!!&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6138592440183630591-3436980616489151042?l=www.lkhatiwada.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.lkhatiwada.com/feeds/3436980616489151042/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.lkhatiwada.com/2009/04/sorry-that-domain-isnt-in-my-list-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/3436980616489151042'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6138592440183630591/posts/default/3436980616489151042'/><link rel='alternate' type='text/html' href='http://www.lkhatiwada.com/2009/04/sorry-that-domain-isnt-in-my-list-of.html' title='Sorry, that domain isn’t in my list of allowed rcpthosts (#5.7.1)'/><author><name>Laxmi Khatiwada</name><uri>http://www.blogger.com/profile/01145831413924718489</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='32' src='http://2.bp.blogspot.com/_EGrxTLblyhg/Sq3mDY0hd0I/AAAAAAAAAUo/yp8zKzngddg/S220/lax-pp.jpg'/></author><thr:total>0</thr:total></entry></feed>
