<?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-7110756</id><updated>2011-12-14T18:49:31.840-08:00</updated><title type='text'>My Ideas and Experiments on ....</title><subtitle type='html'>A place where I dump (or technically archive) my ideas and attempts. [Mostly low priority stuff.]</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>24</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7110756.post-5978769678239291494</id><published>2011-12-12T14:58:00.000-08:00</published><updated>2011-12-12T14:59:13.997-08:00</updated><title type='text'>Extract email list from a file (case 1)</title><content type='html'>grep @ InputFile | awk &amp;#39;{ print $NF }&amp;#39; |sort -u - &amp;gt; OutputFile&lt;br&gt;&lt;br&gt;returns (in the OutputFile) a list of unique and sorted list of  emails (i.e., words containing @), listed as the last word in the lines of the InputFile.&lt;br&gt;   &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-5978769678239291494?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/5978769678239291494/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=5978769678239291494' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/5978769678239291494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/5978769678239291494'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2011/12/extract-email-list-from-file-case-1.html' title='Extract email list from a file (case 1)'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-2981487238518396671</id><published>2010-03-09T23:55:00.000-08:00</published><updated>2010-03-09T23:55:30.907-08:00</updated><title type='text'>Using Gmail SMTP for sending emails with Eprints 3</title><content type='html'>To successfully running an Eprints server, requirement of an email server is must. Since one need it to open/authenticate&amp;nbsp; the account and communicate with users.&lt;br /&gt;Here I list the method I used to use a Gmail account for this purpose via SMTP.&lt;br /&gt;&lt;br /&gt;Following is the "send_mail_via_smtp" section of $Eprints3PATH/perl_lib/EPrints/Email.pm file, which I modified to use with Gmail.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;######################################################################&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;#=pod&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;#&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;#=item EPrints::Utils::send_mail_via_smtp( %properties )&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;#&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;#Send an email via STMP. Should not be called directly, but rather by&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;#EPrints::Utils::send_mail.&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;#&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;#=cut&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;######################################################################&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;### Modified extensively to use with Gamil SMTP ##### by Deepak Gupta&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;sub send_mail_via_smtp&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;{&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; my( %p ) = @_;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; eval 'use Net::SMTP::TLS';&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; my $repository = $p{session}-&amp;gt;get_repository;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; my $smtphost = $repository-&amp;gt;get_conf( 'smtp_server' );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ##my $smtphost = 'smtp.gmail.com';&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( !defined $smtphost )&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $repository-&amp;gt;log( "No STMP host has been defined. To fix this, find the full\naddress of your SMTP server (eg. smtp.example.com) and add it\nas the value of smtp_server in\nperl_lib/EPrints/SystemSettings.pm" );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return( 0 );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; my $smtp = new Net::SMTP::TLS (&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $smtphost,&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Hello&amp;nbsp;&amp;nbsp; =&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'eprints-server.on-linux.org',&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Port&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 587,&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'eprints-server@gmail.com',&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Password=&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'gmail_password',&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # my $smtp = Net::SMTP-&amp;gt;new( $smtphost);&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( !defined $smtp )&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $repository-&amp;gt;log( "Failed to create smtp connection to $smtphost" );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return( 0 );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $smtp-&amp;gt;mail( $p{from_email} );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $smtp-&amp;gt;to( $p{to_email} );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # if( !$smtp-&amp;gt;recipient( $p{to_email} ) )&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # {&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp;&amp;nbsp;&amp;nbsp; $repository-&amp;gt;log( "smtp server refused &amp;lt;$p{to_email}&amp;gt;" );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp;&amp;nbsp;&amp;nbsp; $smtp-&amp;gt;quit;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # }&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; my $message = build_email( %p );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; my $data = $message-&amp;gt;as_string;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Send the message as bytes, to avoid Net::Cmd wide-character warnings&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; utf8::encode($data);&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $smtp-&amp;gt;data;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $smtp-&amp;gt;datasend( $data );&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $smtp-&amp;gt;dataend;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $smtp-&amp;gt;quit;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return 1;&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;&lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;}&lt;/span&gt;&lt;br style="font-family: Arial,Helvetica,sans-serif;" /&gt;#########################################&lt;br /&gt;&lt;br /&gt;I also edited the following line in&amp;nbsp;$Eprints3PATH/perl_lib/EPrin&lt;span style="font-family: inherit;"&gt;t/SystemSettings.pm&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: inherit;"&gt;&amp;nbsp;....&lt;/span&gt;&lt;br /&gt;&lt;div style="font-family: Arial,Helvetica,sans-serif;"&gt;&amp;nbsp;'smtp_server' =&amp;gt; 'smtp.gmail.com',&lt;/div&gt;&lt;span style="font-family: inherit;"&gt;&amp;nbsp;....&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: inherit;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: inherit;"&gt;I guess, any upgrade of&amp;nbsp; Eprints overwrite the above file. So save your working copy before any upgrade.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: inherit;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: inherit;"&gt;Restarted the Apache Server (using &lt;span style="font-family: Arial,Helvetica,sans-serif;"&gt;sudo /etc/init.d/apache2 restart&lt;/span&gt;) and Gmail with eprints server should be working.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-2981487238518396671?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/2981487238518396671/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=2981487238518396671' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/2981487238518396671'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/2981487238518396671'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2010/03/using-gmail-smtp-for-sending-emails.html' title='Using Gmail SMTP for sending emails with Eprints 3'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-2255638098914351418</id><published>2009-01-06T17:39:00.001-08:00</published><updated>2009-01-06T17:39:35.936-08:00</updated><title type='text'>SSH Tunnels How-to? </title><content type='html'>From the comments in &lt;a class="moz-txt-link-freetext" href="http://ask.slashdot.org/article.pl?sid=06/01/19/2218226"&gt;http://ask.slashdot.org/article.pl?sid=06/01/19/2218226&lt;/a&gt;&lt;br&gt; &lt;br&gt; &lt;div class="details"&gt; by Anonymous Coward &lt;span class="otherdetails"  id="comment_otherdetails_14514191"&gt; on Thursday January 19 2006, @06:23PM (&lt;a  href="http://ask.slashdot.org/comments.pl?sid=174479&amp;amp;cid=14514191"&gt;#14514191&lt;/a&gt;) &lt;small&gt; &lt;/small&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class="commentBody"&gt; &lt;div id="comment_body_14514191"&gt;1. Set up usual SSH session settings in Putty&lt;br&gt; 2. Go to Connection -&amp;gt; SSH -&amp;gt; Tunnels&lt;br&gt; 3. Add new forwarded port. Source Port: 1080, Destination: [blank], DYNAMIC (this is important), Auto. Click on Add.&lt;br&gt; 4. In Firefox or any other program that supports a SOCKS proxy, enter host 127.0.0.1 (localhost) with port 1080.&lt;br&gt; &lt;br&gt; &lt;br&gt; &lt;div class="details"&gt; by &lt;a href="http://slashdot.org/%7EChris+Pimlott"&gt;Chris Pimlott (16212)&lt;/a&gt; &lt;span class="otherdetails"  id="comment_otherdetails_14516257"&gt; on Thursday January 19 2006, @11:30PM (&lt;a  href="http://ask.slashdot.org/comments.pl?sid=174479&amp;amp;cid=14516257"&gt;#14516257&lt;/a&gt;) &lt;small&gt; &lt;/small&gt;&lt;/span&gt; &lt;/div&gt; To do the same with the command line OpenSSH client:&lt;br&gt; &lt;br&gt; ssh -N -f -D 1080&lt;br&gt; &lt;br&gt; -D 1080 does the dynamic socks forwarding.&lt;br&gt; -N says don't run any command on the remote machine&lt;br&gt; -f says go into the background after asking for password&lt;br&gt; _______________&lt;br&gt; See also &lt;a class="moz-txt-link-freetext" href="http://souptonuts.sourceforge.net/sshtips.htm"&gt;http://souptonuts.sourceforge.net/sshtips.htm&lt;/a&gt;&lt;br&gt; &lt;/div&gt; &lt;/div&gt; &lt;br&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-2255638098914351418?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/2255638098914351418/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=2255638098914351418' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/2255638098914351418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/2255638098914351418'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2009/01/ssh-tunnels-how-to.html' title='SSH Tunnels How-to? '/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-6631122244185501964</id><published>2007-08-27T16:57:00.001-07:00</published><updated>2007-08-27T16:57:13.188-07:00</updated><title type='text'>Some codes for IR remotes for Nikon SLR Trigger.</title><content type='html'>&lt;div xmlns='http://www.w3.org/1999/xhtml'&gt;Mainly collected from http://forums.dpreview.com &lt;a href='http://forums.dpreview.com/forums/forum.asp?forum=1034'&gt;Nikon D80/D70/D50/D40&lt;/a&gt;  Forum&lt;br/&gt;&lt;ul&gt;&lt;li&gt;With rca universal: tv code 011, vol, ch, and power buttons worked.  with tv code 066, only vol down worked.  &lt;/li&gt;&lt;li&gt;Tihao-E10in1 universal remote control. Code 163 (Sanyo TV). Key 7.&lt;/li&gt;&lt;li&gt;GlobalPlus Global8 (probably also Global4): Code 1024; trigger with '7' &lt;/li&gt;&lt;li&gt; Lifetec (Aldi) LT3615: Code 004; trigger with 'on/off' &lt;/li&gt;&lt;li&gt; Medion MD 41169: Code 313; trigger with 'Play' &lt;/li&gt;&lt;li&gt;NSE URC22D-8: Code Sanyo TV - 028; trigger with '3' &lt;br/&gt;&lt;/li&gt;&lt;li&gt;Medion MD 3386: Code 008 (SAISHO) on VCR; trigger with 'Stop'  &lt;br/&gt;&lt;/li&gt;&lt;li&gt;Medion MD 41666: Code 313 on VCR; trigger with 'Play' &lt;br/&gt; &lt;/li&gt;&lt;li&gt; Medion/Tevion MD 4686: Code 361; trigger with 'CHAN+'&lt;/li&gt;&lt;li&gt;A Chinese-made TV Remotes 'Red'. Code is 1028 trigger with key 3 (5,7 and 9 also work)&lt;/li&gt;&lt;li&gt;Sainsbury's Red remote control works with 1028 (that's 10,2,8) and triggers with 3,5,7 and 9&lt;/li&gt;&lt;li&gt;ADW BC510 5in1 universal remote, VCR mode, code = 298,  PLAY button will activate Nikon D50 shutter, Reach: &amp;amp;gt;5 meters&lt;/li&gt;&lt;li&gt;Evidence Universal Remote Control (URC22B), works with following codes: #028 release with: 3,4,5,7,&amp;amp;gt;&amp;amp;gt; (rewind) and two teletxt red and yellow buttons; and, #298 work with play, and ~&amp;amp;gt; (next) buttons &lt;/li&gt;&lt;li&gt;The RCA Universal Remote model 403 or 404 will apparently fire the shutter of a Nikon D50, D70, D70s or a D80. Probably a D40 and D40x, too. Set your manufacturer code to 066, use the TV function and hit VOL+ to fire.&lt;/li&gt;&lt;li&gt;Supertech RC-10-1 (URC-V10 Universal Remote Controller). Set it to TV and use "182" for the D50.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-6631122244185501964?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/6631122244185501964/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=6631122244185501964' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/6631122244185501964'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/6631122244185501964'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2007/08/some-codes-for-ir-remotes-for-nikon-slr.html' title='Some codes for IR remotes for Nikon SLR Trigger.'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-115276533203455445</id><published>2006-07-12T21:35:00.000-07:00</published><updated>2006-10-09T05:21:06.876-07:00</updated><title type='text'>Copying a CD to a file in Cygwin (using dd or cat command)</title><content type='html'>Here are couple of methods for copying a CD to a file in *nix:  ( from &lt;a href="http://www.cpqlinux.com/cdrw.html"&gt;http://www.cpqlinux.com/cdrw.html&lt;/a&gt; )&lt;br /&gt;&lt;pre&gt;[root@server /root]# &lt;b&gt;dd if=/dev/cdrom of=image.iso&lt;/b&gt;&lt;br /&gt;[root@server /root]# &lt;b&gt;cat /dev/cdrom &amp;gt;image.iso &lt;/b&gt;&lt;/pre&gt; A guide to use of special filename in Cygwin is available at &lt;a href="http://www.cygwin.com/cygwin-ug-net/using-specialnames.html"&gt;http://www.cygwin.com/cygwin-ug-net/using-specialnames.html&lt;/a&gt;. &lt;br /&gt;On my computer, I replace /dev/cdrom by /dev/scd0&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-115276533203455445?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/115276533203455445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=115276533203455445' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/115276533203455445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/115276533203455445'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2006/07/copying-cd-to-file-in-cygwin-using-dd.html' title='Copying a CD to a file in Cygwin (using dd or cat command)'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-114530310868074336</id><published>2006-04-10T16:43:00.000-07:00</published><updated>2006-04-17T12:45:08.700-07:00</updated><title type='text'>Upgrading Inspiron 8200 Harddisk</title><content type='html'>&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;  &lt;p&gt; &lt;span style="font-size: 10pt; font-family: Arial"&gt;Finally I also decided to reinstall the Windows XP (Home Ed.) on my more than 3 years old Laptop. Why ? Same reason as given  &lt;/span&gt;&lt;a href="http://pcworld.about.com/magazine/2109p156id111652.htm" target="_blank" title="PCWORLD: How to Reinstall Windows Without Losing Your Data"&gt;here&lt;/a&gt; and &lt;a href="http://diveintomark.org/archives/2003/08/04/xp" target="_blank" title="How to install Windows XP in 5 hours or less"&gt;here&lt;/a&gt;. Reinstall was due from last more than six months and I was just dragging it. This reinstall was also a chance to upgrade my current 30GB harddisk, which was completely full, with 50-60% was taken by windows installation and some unidentifiable junk.&lt;br/&gt; &lt;br/&gt; I have Dell Inspiron 8200 1.7-GHz, Intel Pentium 4 Processor, 768MB DDR SDRAM, DVD/CD-R drive, 15-inch TFT display, etc. It had 30GB hard drive, I think, &lt;font face="Arial" size="2"&gt;IC25N030ATDA?? 9.5mm 4200rpm disk. &lt;/font&gt;&lt;a href="http://www.geocities.com/thebithead/I8200FAQ.htm" target="_blank"&gt;&lt;font size="2"&gt;&lt;font face="Arial"&gt;Inspiron 8200 FAQ&lt;/font&gt;&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;&lt;font face="Arial"&gt; (now &lt;a href="http://www.seedwiki.com/wiki/inspiron_8200_wiki/inspiron_8200_wiki" target="_blank"&gt;Inspiron 8200 wiki&lt;/a&gt;) was a useful link to identify this and also for many other useful informations.&lt;/font&gt;&lt;/font&gt; &lt;/p&gt;      &lt;p&gt; Brought a &lt;a href="http://www.newegg.com/Product/CustratingReview.asp?item=N82E16822144379" target="_blank"&gt;Western Digital Scorpio WD800VE 80GB 5400 RPM 8MB Cache ATA-6 Notebook Hard Drive &lt;/a&gt;from Newegg. I think prize at Fry's were similar. Inspiron 8200 has a media bay in which devices like cd/dvd read/writer, harddisk drive , floppy drive or battery can be inserted to use. This provide a good flexibility. I also got the 2nd harddrive Media bay Carrier 9.5mm (part# 29MFN) from &lt;a href="http://www.impactcomputers.com/29mfn.html" target="_blank"&gt;Impact computers &amp;amp; electronics&lt;/a&gt; in ~$42 (including shipping)so that I can use my old 30 GB hard drive as an optional second hard drive.  &lt;/p&gt;  &lt;p&gt; Idea was to install a Linux distribution in media bay 2nd hard drive, such that I can use the Linux, if I wish.  &lt;/p&gt;  &lt;p&gt; Of course, before removing, I took a complete data backup of my 30GB hard disk on an external USB2/Firewire harddrive &lt;/p&gt;  &lt;p&gt; Removal of 30GB HD and Installation of new 80 GB harddisk was straight forward and simple. Dell resources itself provided the useful howto in Owners' manual. To install the harddisk in media bay, I got useful tips from &lt;a href="http://www.bay-wolf.com/hdmedbay.htm" target="_blank"&gt;http://www.bay-wolf.com/hdmedbay.htm&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt; There was no problem in detecting or using both the hard drive. Bios can see both of these drives. &lt;/p&gt;  &lt;p&gt; Now the next step is to install Windows Xp, drivers, other software etc. on my new 80GB drive. And, then install Linux on media bay drive. &lt;br/&gt;  &lt;/p&gt;  &lt;p&gt;  &lt;/p&gt;  &lt;p&gt;  &lt;/p&gt;  &lt;p&gt; &lt;font size="2"&gt;&lt;font face="Arial"&gt; &lt;/font&gt;&lt;/font&gt;&lt;br/&gt; &lt;br/&gt;  &lt;/p&gt;  &lt;p style="font-size:10px;text-align:right;"&gt;technorati tags: &lt;a href="http://technorati.com/tag/Inspiron" rel="tag"&gt;Inspiron&lt;/a&gt;, &lt;a href="http://technorati.com/tag/8200" rel="tag"&gt;8200&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Hard-disk" rel="tag"&gt;Hard-disk&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Upgrade" rel="tag"&gt;Upgrade&lt;/a&gt;, &lt;a href="http://technorati.com/tag/WindowsXP" rel="tag"&gt;WindowsXP&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Dell" rel="tag"&gt;Dell&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Harddrive" rel="tag"&gt;Harddrive&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-114530310868074336?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/114530310868074336/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=114530310868074336' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/114530310868074336'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/114530310868074336'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2006/04/upgrading-inspiron-8200-harddisk.html' title='Upgrading Inspiron 8200 Harddisk'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-113630940025950646</id><published>2006-01-03T09:30:00.000-08:00</published><updated>2006-04-10T16:28:41.606-07:00</updated><title type='text'>An aricle and links about Boot Loader</title><content type='html'>&lt;p class="mobile-post"&gt;&lt;a href="http://linux.slashdot.org/linux/06/01/03/1316210.shtml?tid=190&amp;amp;tid=106"&gt;Story on Slashdot.&lt;/a&gt; &lt;br /&gt;Explains boot loader and &lt;a href="http://www.ibm.com/developerworks/library/l-bootload.html?ca=dgr-lnxw01LILOandGRUB"&gt;compare LILO and GRUB&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-113630940025950646?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/113630940025950646/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=113630940025950646' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/113630940025950646'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/113630940025950646'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2006/01/aricle-and-links-about-boot-loader.html' title='An aricle and links about Boot Loader'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-113458441646988756</id><published>2005-12-14T10:20:00.000-08:00</published><updated>2006-04-10T16:31:09.606-07:00</updated><title type='text'>Make your mobile phone communicate with your PC (in Linux)</title><content type='html'>&lt;p class="mobile-post"&gt;&lt;a href="http://kmobiletools.berlios.de"&gt;KMobileTools&lt;/a&gt; make your mobile phone communicate with your PC (in Linux). &lt;br /&gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;Here is the list of &lt;a href="http://kmobiletools.berlios.de/phones"&gt;supported Phones&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-113458441646988756?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/113458441646988756/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=113458441646988756' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/113458441646988756'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/113458441646988756'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/12/make-your-mobile-phone-communicate.html' title='Make your mobile phone communicate with your PC (in Linux)'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-112930808701931190</id><published>2005-10-14T09:41:00.000-07:00</published><updated>2005-10-14T09:41:27.036-07:00</updated><title type='text'>Re: [plasma_physics_india] estimation of S(k_r,k_theta)</title><content type='html'>&lt;p class="mobile-post"&gt;Ajay, &lt;/p&gt;&lt;p class="mobile-post"&gt;I do not know the proper answer to your question, but I saw such a&lt;br /&gt;graphs in literature so mush that I use to think that everyone know&lt;br /&gt;it. &lt;/p&gt;&lt;p class="mobile-post"&gt;Is the work of Beall, Kim, Powers, J.Appl.Phys 53(6) 1982 pg.3933 or&lt;br /&gt;their other paper do got give any insight on this issue?&lt;/p&gt;&lt;p class="mobile-post"&gt;Some of the old papers by our BES group (before I joined) do show such&lt;br /&gt;2-d curve. However our measurements are 2-d multiple points. The paper&lt;br /&gt;Rev.Sci.Instru v74,p2014 says&lt;/p&gt;&lt;p class="mobile-post"&gt;"The wave number spectrum is obtained here from mea-&lt;/p&gt;&lt;p class="mobile-post"&gt;surement of the two-point correlations across a 2D array of&lt;/p&gt;&lt;p class="mobile-post"&gt;data. Pairwise correlation functions are used to construct the&lt;/p&gt;&lt;p class="mobile-post"&gt;2D correlation function, rho(Dr,Dz,t=0).......The S(kr ,ku ) spectra&lt;/p&gt;&lt;p class="mobile-post"&gt;is then obtained from this correlation function with a 2D&lt;/p&gt;&lt;p class="mobile-post"&gt;spatial transform using the discrete cosine transform (DCT),....."&lt;/p&gt;&lt;p class="mobile-post"&gt;Paper Rev.Sci.Instru v70,p913 talk about method to calculate 2D&lt;br /&gt;correlation function, rho(Dr,Dz,t=0),&lt;/p&gt;&lt;p class="mobile-post"&gt;"Each point is evaluated by calculating the correlation function&lt;br /&gt;between&lt;/p&gt;&lt;p class="mobile-post"&gt;a reference channel at the corner of the array and a given channel at&lt;br /&gt;zero time delay."&lt;/p&gt;&lt;p class="mobile-post"&gt;I'm not sure if it's useful, but thought to comment anyway. &lt;/p&gt;&lt;p class="mobile-post"&gt;I'm also facing a problem in calculating 1-d correlation function due&lt;br /&gt;to noise in the signal. &lt;/p&gt;&lt;p class="mobile-post"&gt;I'll post the question soon and I hope someone's comment may give some&lt;br /&gt;idea. &lt;/p&gt;&lt;p class="mobile-post"&gt;Thanks&lt;/p&gt;&lt;p class="mobile-post"&gt;-deepak &amp;lt;smaller&amp;gt;&amp;lt;smaller&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;/smaller&amp;gt;&amp;lt;/smaller&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;On Oct 7, 2005, at 10:44 AM, ajay wrote:&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;excerpt&amp;gt;&amp;lt;fixed&amp;gt;Hi All,&amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; Since we have some very illuminating discussion going on on &amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; application aspects fo plasmas, I hate to fire this up. But&lt;br /&gt;this is &amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; what I am facing right now.&amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; Does any one know, how one can estimate S(k_r,k_theta) from a&lt;br /&gt;data &amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; set. If we use two point correlation method, we can take&lt;br /&gt;measurement&amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; simultaneously on 3-4 probes. two of them giving theta&lt;br /&gt;direction and &amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; other two let us say radial. How do we estimate the two&lt;br /&gt;dimensional&amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; wavenumber spectra.&amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;fixed&amp;gt; Ajay&amp;lt;/fixed&amp;gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;&amp;lt;/excerpt&amp;gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-112930808701931190?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/112930808701931190/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=112930808701931190' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112930808701931190'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112930808701931190'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/10/re-plasmaphysicsindia-estimation-of.html' title='Re: [plasma_physics_india] estimation of S(k_r,k_theta)'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-112520831576677160</id><published>2005-08-27T22:51:00.000-07:00</published><updated>2005-08-27T22:51:55.786-07:00</updated><title type='text'>अासमाँ में छेद</title><content type='html'>&amp;#2325;&amp;#2380;&amp;#2344; &amp;#2325;&amp;#2361;&amp;#2340;&amp;#2366; &amp;#2361;&amp;#2376;, &amp;#2309;&amp;#2366;&amp;#2360;&amp;#2350;&amp;#2366;&amp;#2305; &amp;#2350;&amp;#2375;&amp;#2306; &amp;#2331;&amp;#2375;&amp;#2342; &amp;#2344;&amp;#2361;&amp;#2368; &amp;#2361;&amp;#2379;&amp;#2340;&amp;#2366; ?&lt;br /&gt;&amp;#2319;&amp;#2325; &amp;#2346;&amp;#2340;&amp;#2381;&amp;#2341;&amp;#2352; &amp;#2340;&amp;#2379; &amp;#2340;&amp;#2348;&amp;#2368;&amp;#2351;&amp;#2340; &amp;#2360;&amp;#2375; &amp;#2313;&amp;#2331;&amp;#2366;&amp;#2354;&amp;#2379; &amp;#2351;&amp;#2366;&amp;#2352;&amp;#2379; &amp;#2404;&lt;br /&gt;--&amp;#2309;&amp;#2332;&amp;#2381;&amp;#2334;&amp;#2366;&amp;#2340;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-112520831576677160?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/112520831576677160/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=112520831576677160' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112520831576677160'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112520831576677160'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/08/blog-post.html' title='&amp;#2309;&amp;#2366;&amp;#2360;&amp;#2350;&amp;#2366;&amp;#2305; &amp;#2350;&amp;#2375;&amp;#2306; &amp;#2331;&amp;#2375;&amp;#2342;'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-112494354451155569</id><published>2005-08-24T21:18:00.000-07:00</published><updated>2005-08-24T21:33:06.503-07:00</updated><title type='text'>Some interesting articles/design from Electronics Design magazine</title><content type='html'>Here are some articles published in &lt;a href="http://www.elecdesign.com" target="_blank" title=" "&gt;Electronic Design&lt;/a&gt; magazine. Kept here for reference purpose.&lt;br /&gt;&lt;br /&gt;[Engineering Feature]&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/9500/9500.html" target="_blank" title=" Inside iPod"&gt;Inside iPod&lt;/a&gt; ED Online ID #9500&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/10818/10818.html"&gt;Nano's Success Depends On A Rock Solid Foundation&lt;/a&gt;  ED Online ID #10818&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/10817/10817.html" target="_blank" title="Manufacturing With Fullerenes And Nanotubes: A Little Chemistry"&gt;Manufacturing With Fullerenes And Nanotubes: A Little Chemistry&lt;/a&gt; ED Online ID #10817&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/10816/10816.html" title="Nano-Imprint Lithography To The Rescue"&gt;Nano-Imprint Lithography To The Rescue&lt;/a&gt;  ED Online ID #10816&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/4346/4346.html"&gt;What's All This Transimpedance Amplifier Stuff, Anyhow? (Part 1)&lt;/a&gt;&lt;br /&gt;[Ideas For Design]&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/4698/4698.html" title="Monitor Your PC's CPU Core Temperature"&gt;Monitor Your PC's CPU Core Temperature&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/6404/6404.html"&gt;Read 16 digital inputs using a PC's serial port&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/10854/10854.html"&gt;First-Come, First-Serve Circuit Chooses Winners&lt;/a&gt; ("Jeopardy" quiz style circuit)&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/6400/6400.html" title="DC-AC inverter targets electroluminescent applications"&gt;DC-AC inverter targets electroluminescent applications&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/2476/2476.html" title="Two-Chip Digital Thermometer Delivers 0.4&amp;#176;C Accuracy"&gt;Two-Chip Digital Thermometer Delivers 0.4&amp;#176;C Accuracy&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/6348/6348.html" title="An accurate analog delay circuit"&gt;An accurate analog delay circuit&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.elecdesign.com/Articles/ArticleID/6260/6260.html" title="Build your own "&gt;Build your own "cable radar"&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.elecdesign.com/articles/Index.cfm?Action=TopViewed"&gt;20 TOP Viewed Articles&lt;/a&gt; in last two weeks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-112494354451155569?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/112494354451155569/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=112494354451155569' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112494354451155569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112494354451155569'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/08/some-interesting-articlesdesign-from.html' title='Some interesting articles/design from Electronics Design magazine'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-112400715143841671</id><published>2005-08-14T01:12:00.000-07:00</published><updated>2005-08-14T01:12:31.453-07:00</updated><title type='text'>Getting Yahoo mails in OSX Mail using MacFreePOPs</title><content type='html'>Wanted to get all my emails from all my accounts (official, Yahoo, Gmail) to my OSX Mail program. It's convenient and I like Mail's spam filter. I anyway get my official mails (and spams) in MacOSX Mail using IMAP. Gmail was easy to redirect using POP option in Gmail web preferences. Yahoo! was the main problem. All my previous attempts using various scripts etc in OSX were failures. &lt;br /&gt;&lt;br /&gt;Finally came across &lt;a href="http://www.e-link.it/macfreepops/" target="_blank"&gt;MacFreePOPs&lt;/a&gt; which is a Mac implementation of &lt;a href="http://www.freepops.org/en/" target="_blank"&gt;FreePOPs&lt;/a&gt;. It download mails from the most famous webmails including Yahoo and Hotmail. &lt;br /&gt;&lt;br /&gt;Installation and setup was very simple. Similar to any typical mac software. Can be easily including in startup. Working till now without any problem. &lt;br /&gt;&lt;br /&gt;This is first time I'm using OSX Mail with multiple account. Like the way it arranges the stuff and allow to reply.  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-112400715143841671?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/112400715143841671/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=112400715143841671' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112400715143841671'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112400715143841671'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/08/getting-yahoo-mails-in-osx-mail-using.html' title='Getting Yahoo mails in OSX Mail using MacFreePOPs'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-112400539442097882</id><published>2005-08-14T00:42:00.000-07:00</published><updated>2005-08-14T01:18:46.410-07:00</updated><title type='text'>Making and auto-mounting FAT32 partition in Mac OSX on external disk</title><content type='html'>I have a Maxtor OneTouch Firewire/USB External hard drive in which I made three partition when I brought it.&lt;br /&gt;1) NTFS for my WindowsXP laptop backup&lt;br /&gt;2) HSF for my MacOSX laptop backup&lt;br /&gt;3) NTFS in rest of the disk for other storage.&lt;br /&gt;&lt;br /&gt;Although disk comes with FAT32 format, I made the third partition NTFS because all the advises on internet were to use NTFS with XP. And anyway MacOS can read NTFS but can not write.&lt;br /&gt;&lt;br /&gt;Now due to some strange reasons I wish to convert this third NTFS partition to "old" FAT32 partition so that I can write using MacOSX also. I thought It should be simple in WinXP. Connect the disk and go to ...&lt;br /&gt;Control Panel &amp;gt; Administrative Tools &amp;gt; Computer Management &amp;gt; Storage &amp;gt; Disk Management&lt;br /&gt;Select the partition ......Right Click......Delete Partition.     Simple!&lt;br /&gt;Select the partition again .... RightClick......Format....         PROBLEM!!&lt;br /&gt;I was able to delete the partition but when I tried to reformat it, there was no option in FileSystem menu for FAT32. Only NTFS. After some  search on internet, without solving this problem, I also came to know that WinXP anyway can not format more that certain GB for FAT32 (I guess 32GB). My partition was certainly more than that. So there is no use trying to format it anyway using XP. So I turned to MacOSX.&lt;br /&gt;&lt;br /&gt;Got a nice &lt;a href="http://macosxhints.com/article.php?story=20030613121738812" target="_blank" title="Create HFS+ and FAT32 partitions on one external drive"&gt;link&lt;/a&gt; on internet.&lt;br /&gt;&lt;br /&gt;In terminal/xterm window identified the disk and partition name using commands 'ls /dev/rdisk?' and 'ls /dev/rdisk1*' by attaching/removing the drive and got some help from  'mount' command. My partition of interest on my disk was /dev/rdisk1s1.&lt;br /&gt;&lt;br /&gt;Ran the command&lt;br /&gt;&lt;br /&gt;newfs_msdos -v FAT_PART_NAME -F 32 /dev/rdisk1s1&lt;br /&gt;&lt;br /&gt;(by the way for HFS it is newfs_hfs -v HFS_PART_NAME /dev/rdisk1s1 )&lt;br /&gt;&lt;br /&gt;According to &lt;a href="http://macosxhints.com/article.php?story=20030613121738812" target="_blank" title="Create HFS+ and FAT32 partitions on one external drive"&gt;link&lt;/a&gt; it should just work fine. But I am not that lucky.&lt;br /&gt;&lt;br /&gt;Partition will just not mount automatically on connecting the disk. Will mount the other untouched backup partitions NTFS and HFS just fine. I know it should work with FAT32 also because my USB key with a FAT32 get auto-mounted every time.&lt;br /&gt;&lt;br /&gt;Searched again on internet and got another &lt;a href="http://www.macosx.com/forums/archive/index.php/t-36268.html" target="_blank" title="mounting FAT32 external HD under MacOSX"&gt;link to manually mount the disk in osx&lt;/a&gt;.&lt;br /&gt;As per suggestion on there....&lt;br /&gt;&lt;br /&gt;Made mount directory 'mkdir /Volumes/fatdisk'&lt;br /&gt;Mounted using root password 'sudo mount_msdos /dev/disk1s1 /Volumes/fatdisk'&lt;br /&gt;In the Finder selected "Go to folder" from the menu and typed: /Volumes/fatdisk&lt;br /&gt;( To unmount: 'sudo umount -f /Volumes/fatdisk'' )&lt;br /&gt;&lt;br /&gt;Worked!! just fine. I can copy the files from/to OSX.&lt;br /&gt;But this only shows that I have FAT32 partition, and it's working, and will mount fine manually, but It will not auto-mount.&lt;br /&gt;&lt;br /&gt;This time search on internet was not really much helpful. But I came across command 'fdisk'. I know it somewhat due my experience in Linux, so decided to play with this.&lt;br /&gt;&lt;br /&gt;fdisk -e /dev/rdisk1       (do 'fdisk' Enter to get brief help)&lt;br /&gt;&lt;br /&gt;fdisk: 1&amp;gt; print&lt;br /&gt;Disk: /dev/rdisk1       geometry: 19929/255/63 [320171008 sectors]&lt;br /&gt;Offset: 0       Signature: 0xAA55&lt;br /&gt;Starting       Ending&lt;br /&gt;#: id  cyl  hd sec -  cyl  hd sec [     start -       size]&lt;br /&gt;------------------------------------------------------------------------&lt;br /&gt;1: 07    0   1   1 - 1023 254  63 [        63 -  122881122] HPFS/QNX/AUX&lt;br /&gt;2: AF 1023   0   1 - 1023 254  63 [ 122881185 -  122881185] HFS+       &lt;br /&gt;3: 07 1023   0   1 - 1023 254  63 [ 245762370 -   74397015] HPFS/QNX/AUX&lt;br /&gt;4: 00    0   0   0 -    0   0   0 [         0 -          0] unused     &lt;br /&gt;&lt;br /&gt;#1 partition is still marked NTFS (id 07) and not marked FAT. So edit it and change it to id 0C.&lt;br /&gt;One must keep all other details same so a (trivial) idea is to copy/paste the 'print' command output in a text editor.  Then...&lt;br /&gt;&lt;br /&gt;fdisk: 1&amp;gt; edit 1&lt;br /&gt;&lt;br /&gt;It will allow to change everything. Make sure to change only id. Everything else must be same. Pay attention to start and size entries carefully,  as by default it seems to take minimum and maximum. If all look fine. quite by using 'quit' command.&lt;br /&gt;&lt;br /&gt;Wow! MacOSX is auto-mounting all three partitions without any problem. Finally!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-112400539442097882?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/112400539442097882/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=112400539442097882' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112400539442097882'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112400539442097882'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/08/making-and-auto-mounting-fat32-in-mac.html' title='Making and auto-mounting FAT32 partition in Mac OSX on external disk'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-112143626709191825</id><published>2005-07-15T07:04:00.000-07:00</published><updated>2005-07-15T07:04:27.126-07:00</updated><title type='text'>High voltage Opamp</title><content type='html'>&lt;p class="mobile-post"&gt;Saw an advt. in Electronics Design magazine. Apex Microtech &lt;br /&gt;(www.apexmicrotech.com) makes the opamps for high voltage. E.g. PA92 &lt;br /&gt;and PA 93 works at 400V and can provide the output current of 4 &amp;amp; 8 &lt;br /&gt;amp. I was wondering if these opamps can be used for making the voltage &lt;br /&gt;ramp circuit for Langmuir probe for plasma diagnostics. Anyway, I never &lt;br /&gt;got a convincing answer that why one need ramp circuit for Langmuir &lt;br /&gt;probe, why can't one use a simple sine-wave ? I guess sin-wave circuit &lt;br /&gt;should be much simple to make. But may be it's just my inexperience &lt;br /&gt;with Langmuir probes.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-112143626709191825?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/112143626709191825/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=112143626709191825' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112143626709191825'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112143626709191825'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/07/high-voltage-opamp.html' title='High voltage Opamp'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-112084103714496981</id><published>2005-07-08T09:43:00.000-07:00</published><updated>2005-08-11T21:45:52.366-07:00</updated><title type='text'>कुछ पसंदीदा कविताए। इधर-ऊधर Internet से उठाई हुई</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;सबसे खतरनाक होता है...&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;सबसे खतरनाक होता है ,&lt;br /&gt;बेजान शांति से भर जाना,&lt;br /&gt;  न होना तडफ का,&lt;br /&gt;  सब सहन कर जाना ,&lt;br /&gt;घर से निकलना काम पर,&lt;br /&gt;और काम से लौटकर घर आना&lt;br /&gt;  सबसे खतरनाक होता है ,&lt;br /&gt;  हमारे सपनों का मर जाना.&lt;br /&gt;&lt;br /&gt;-- &lt;span style="font-style: italic;"&gt;.पाश&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;वैसे आजाद नहीं हैं हम&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;जैसे तुम सोच रहे साथी, वैसे आजाद नहीं हैं हम,&lt;br /&gt;जैसे तुम सोच रहे साथी, वैसे आजाद नहीं हैं हम।&lt;br /&gt;&lt;br /&gt;     पिंजरे जैसी इस दुनिया में, पंछी जैसा ही रहना है,&lt;br /&gt;     भर पेट मिले दाना-पानी, लेकिन मन ही मन दहना है,&lt;br /&gt;     जैसे तुम सोच रहे साथी, वैसे संवाद नहीं हैं हम,&lt;br /&gt;     जैसे तुम सोच रहे साथी, वैसे आजाद नहीं हैं हम।&lt;br /&gt;&lt;br /&gt;आगे बढ़नें की कोशिश में, रिश्ते-नाते सब छूट गये,&lt;br /&gt;तन को जितना गढ़ना चाहा, मन से उतना ही टूट गये,&lt;br /&gt;जैसे तुम सोच रहे साथी, वैसे आबाद नहीं हैं हम,&lt;br /&gt;जैसे तुम सोच रहे साथी, वैसे आजाद नहीं हैं हम।&lt;br /&gt;&lt;br /&gt;     पलकों ने लौटाये सपने, आंखे बोली अब मत आना,&lt;br /&gt;      आना ही तो सच में आना, आकर फिर लौट नहीं जाना,&lt;br /&gt;      जितना तुम सोच रहे साथी, उतना बरबाद नहीं हैं हम,&lt;br /&gt;      जैसे तुम सोच रहे साथी, वैसे आजाद नहीं हैं हम।&lt;br /&gt;&lt;br /&gt;आओ भी साथ चलें हम-तुम, मिल-जुल कर ढूंढें राह नई,&lt;br /&gt;संघर्ष भरा पथ है तो क्या, है संग हमारे चाह नई&lt;br /&gt;जैसी तुम सोच रहे साथी, वैसी फरियाद नहीं हैं हम,&lt;br /&gt;जैसे तुम सोच रहे साथी, वैसे आजाद नहीं हैं हम।&lt;br /&gt;&lt;br /&gt;     --- &lt;span style="font-style: italic;"&gt;विनोद श्रीवास्तव&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;कहाँ से उठाई ? यहाँ से...&lt;br /&gt;&lt;a href="http://hindini.com/hindini/?p=14"&gt;http://hindini.com/hindini/?p=14&lt;/a&gt;&lt;br /&gt;&lt;a href="http://fursatiya.blogspot.com/2005/04/blog-post_15.html"&gt;http://fursatiya.blogspot.com/2005/04/blog-post_15.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://akshargram.com/nirantar/0605/kavita"&gt;http://akshargram.com/nirantar/0605/kavita&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-112084103714496981?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/112084103714496981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=112084103714496981' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112084103714496981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/112084103714496981'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/07/internet.html' title='कुछ पसंदीदा कविताए। इधर-ऊधर Internet से उठाई हुई'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-111818072386961864</id><published>2005-06-07T14:45:00.000-07:00</published><updated>2005-06-07T14:45:23.893-07:00</updated><title type='text'>A simple web page</title><content type='html'>&lt;p class="mobile-post"&gt;After exploring various options for making a simple and decent webpage &lt;br /&gt;in shortest time, I decided that it is best to use a good text editor &lt;br /&gt;and learn only simple html syntax from some html tutorial. I have tried &lt;br /&gt;in past the MS word conversion to html and Netscape or Mozilla &lt;br /&gt;composers. They never gave me a simple and nice formatting and raw &lt;br /&gt;codes were complex to understand and edit later.  Microsoft Pagemaker? &lt;br /&gt;(I hope it's the right name?) I have also used in past is probably too &lt;br /&gt;heavy for a one or two page simple site and also I do not have a copy &lt;br /&gt;of it now. Bluefish is also probably too heavy for this simple stuff, &lt;br /&gt;but it's free. So I tried to install it on my OSX using fink but failed &lt;br /&gt;due to some strange reason. I don't want to buy a big package to make a &lt;br /&gt;simple web page and online web page makers (like by geocities) just do &lt;br /&gt;not give much flexibility.&lt;/p&gt;&lt;p class="mobile-post"&gt;So I am using now xemacs to edit, and got a decent site for tutorial &lt;br /&gt;http://www.echoecho.com/html.htm .&lt;br /&gt;And after spending few hours, I had a my simple web page that I &lt;br /&gt;understand also well.&lt;br /&gt;http://homepages.cae.wisc.edu/~deepak/&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-111818072386961864?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/111818072386961864/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=111818072386961864' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111818072386961864'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111818072386961864'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/06/simple-web-page.html' title='A simple web page'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-111644663697596706</id><published>2005-05-18T13:03:00.000-07:00</published><updated>2005-05-18T13:03:56.986-07:00</updated><title type='text'>Nanotech Idea</title><content type='html'>&lt;div class="flickrEmailPost"&gt;&lt;a href="http://www.flickr.com/photos/11453163@N00/14531492/" title="Nanotech Idea"&gt;&lt;img src="http://photos12.flickr.com/14531492_71acba6ab0.jpg" alt="Nanotech Idea" class="flickrEmailImage" /&gt;&lt;/a&gt;&lt;p&gt;I came across this innovative nanotech idea at nanotechnology section&lt;br /&gt;of scidev.net&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-111644663697596706?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/111644663697596706/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=111644663697596706' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111644663697596706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111644663697596706'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/05/nanotech-idea.html' title='Nanotech Idea'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-111461448767408698</id><published>2005-04-27T08:08:00.000-07:00</published><updated>2005-04-27T08:08:07.676-07:00</updated><title type='text'>Yahoo mail upgraded to 1GB</title><content type='html'>&lt;style type="text/css"&gt;.flickr-photo { border: solid 2px #000000; }.flickr-yourcomment { }.flickr-frame { text-align: left; padding: 3px; }.flickr-caption { font-size: 0.8em; margin-top: 0px; }&lt;/style&gt;&lt;div class="flickr-frame"&gt;	&lt;a href="http://www.flickr.com/photos/11453163@N00/11198028/" title="photo sharing"&gt;&lt;img src="http://photos6.flickr.com/11198028_cb20a435ea.jpg" class="flickr-photo" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;	&lt;span class="flickr-caption"&gt;&lt;a href="http://www.flickr.com/photos/11453163@N00/11198028/"&gt;Yahoo mail upgraded to 1GB&lt;/a&gt;, originally uploaded by &lt;a href="http://www.flickr.com/people/11453163@N00/"&gt;dpk011&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;				&lt;p class="flickr-yourcomment"&gt;	&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-111461448767408698?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/111461448767408698/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=111461448767408698' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111461448767408698'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111461448767408698'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/04/yahoo-mail-upgraded-to-1gb_27.html' title='Yahoo mail upgraded to 1GB'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-111461403873099283</id><published>2005-04-27T08:00:00.000-07:00</published><updated>2005-04-27T08:00:38.730-07:00</updated><title type='text'>Flickr</title><content type='html'>This is a test post from &lt;a href="http://www.flickr.com/r/testpost"&gt;&lt;img alt="flickr" src="http://www.flickr.com/images/flickr_logo_blog.gif" width="41" height="18" border="0" align="absmiddle" /&gt;&lt;/a&gt;, a fancy photo sharing thing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-111461403873099283?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/111461403873099283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=111461403873099283' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111461403873099283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111461403873099283'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/04/flickr.html' title='Flickr'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-111461265420729963</id><published>2005-04-27T07:37:00.000-07:00</published><updated>2005-04-27T07:37:34.206-07:00</updated><title type='text'>Yahoo mail upgraded to 1GB</title><content type='html'>&lt;p class="mobile-post"&gt;Today (April 27, 2005) I open the yahoo mail and notice upgraded mail &lt;br /&gt;space.&lt;br /&gt;Here is the snapshot.&lt;br /&gt;-dpk&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-111461265420729963?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/111461265420729963/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=111461265420729963' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111461265420729963'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111461265420729963'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/04/yahoo-mail-upgraded-to-1gb.html' title='Yahoo mail upgraded to 1GB'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-111402593788475361</id><published>2005-04-20T12:38:00.000-07:00</published><updated>2005-04-20T12:38:57.886-07:00</updated><title type='text'>How to Run IDL in batch mode (in background)</title><content type='html'>&lt;p class="mobile-post"&gt;To do some parameter scan I need to run the similar program with &lt;br /&gt;multiple parameters.&lt;br /&gt;As program take a long time and I run this in a remote machine, I run &lt;br /&gt;multiple programs and logout.&lt;/p&gt;&lt;p class="mobile-post"&gt;(I am not the first person to do it. All this information I got after &lt;br /&gt;some search from internet including IDL web site. I will add the site &lt;br /&gt;address, if I'll find them again)&lt;/p&gt;&lt;p class="mobile-post"&gt;Following are the files and commands I use.&lt;br /&gt;In my home directory:		idlrun	; a c-shell script&lt;br /&gt;						IDL_BATCH		;An IDL startup file script&lt;br /&gt;In appropriate subdirectory:	besmenusub.pro		; Program to run&lt;br /&gt;							gam.pro				; Program to run&lt;/p&gt;&lt;p class="mobile-post"&gt;Here are the listing&lt;/p&gt;&lt;p class="mobile-post"&gt;[hydra:~] 116% cat idlrun&lt;br /&gt;#!/bin/csh&lt;br /&gt;date&lt;br /&gt;cat idl/DP/gam.pro&lt;br /&gt;echo '_______________________________________________'&lt;br /&gt;source /usr/local/rsi/idl_6.0/bin/idl_setup&lt;br /&gt;setenv IDL_STARTUP IDL_BATCH&lt;br /&gt;idl&lt;br /&gt;unsetenv IDL_STARTUP&lt;br /&gt;date&lt;br /&gt;exit&lt;/p&gt;&lt;p class="mobile-post"&gt;[hydra:~] 117% cat IDL_BATCH&lt;br /&gt;; IDL_BATCH.PRO&lt;br /&gt;; By Deepak Gupta &lt;deepak@email&gt;&lt;/p&gt;&lt;p class="mobile-post"&gt;print,'Executing /u/gupta/IDL_BATCH file'&lt;/p&gt;&lt;p class="mobile-post"&gt;DEFINE_KEY, ESC=string([27B, 79B, 68B]), 'ALT_L', /BACK_CHAR&lt;br /&gt;DEFINE_KEY, ESC=string([27B, 79B, 67B]), 'ALT_R', /FORWARD_CHAR&lt;br /&gt;DEFINE_KEY, ESC=string([27B, 79B, 65B]), 'ALT_UP', /PREVIOUS_LINE&lt;br /&gt;DEFINE_KEY, ESC=string([27B, 79B, 66B]), 'ALT_DN', /NEXT_LINE&lt;/p&gt;&lt;p class="mobile-post"&gt;!path=!path+':'+expand_path('/link/idl')&lt;br /&gt;!path = !path + ":" + $&lt;br /&gt;	expand_path("+/u/gupta/idl/mylib") + ":" + $&lt;br /&gt;	expand_path("+/u/mckee/bes") + ":" + $&lt;br /&gt;	expand_path("/u/mckee/idl") + ":" + $&lt;br /&gt;	expand_path("/u/rhodes/idl") + ":" + $&lt;br /&gt;	expand_path("+/u/greenf/idl/public")&lt;/p&gt;&lt;p class="mobile-post"&gt;;; Add other command to run in batch&lt;/p&gt;&lt;p class="mobile-post"&gt;cpu,tpool_nthread=1             ;Use only one cpu on multi-cpu machine&lt;br /&gt;cd,'/u/gupta/idl/DP'&lt;br /&gt;besmenusub                      ;Run 'besmenusub.pro' function/procedure&lt;br /&gt;call_procedure,'gam'            ;Run 'gam.pro' procedure&lt;br /&gt;retall&lt;br /&gt;exit                            ;exit IDL&lt;/p&gt;&lt;p class="mobile-post"&gt;[hydra:~] 118% cat idl/DP/gam.pro&lt;br /&gt;pro gam&lt;/p&gt;&lt;p class="mobile-post"&gt;tnpt = long(1048576)&lt;/p&gt;&lt;p class="mobile-post"&gt;SCI = {Shot_Channel_Info,$&lt;br /&gt;         shot_num:119539, $&lt;br /&gt;         t_begin:800.0, $&lt;br /&gt;         signal1:'besf05', $&lt;br /&gt;         signal2:'besf06', $&lt;br /&gt;         fixdly:-3}&lt;/p&gt;&lt;p class="mobile-post"&gt;fltr = {Filter_info, $&lt;br /&gt;         fmin:20.0e3, $&lt;br /&gt;         fmax:120.0e3, $&lt;br /&gt;         order:5.0}&lt;/p&gt;&lt;p class="mobile-post"&gt;;Testing with preprcessing order suggested by Ray&lt;br /&gt;SS=dptest08c( SCI, tnpt, fltr, 2, 2, 1.0, 1 )&lt;/p&gt;&lt;p class="mobile-post"&gt;end&lt;/p&gt;&lt;p class="mobile-post"&gt;-----------&lt;/p&gt;&lt;p class="mobile-post"&gt;gam.pro is the main program I wish to run finally.&lt;/p&gt;&lt;p class="mobile-post"&gt;Other things I need to do are in Xterm window are: ( my my home &lt;br /&gt;directory)&lt;/p&gt;&lt;p class="mobile-post"&gt;1) Xvfb :100 -screen 0 1152x1024x8&lt;br /&gt;		open a virtual x-windows terminal&lt;/p&gt;&lt;p class="mobile-post"&gt;2) setenv DISPLAY :100&lt;/p&gt;&lt;p class="mobile-post"&gt;3) nohup idlrun &gt; &amp; idlout/5390506_800b.out &amp;&lt;br /&gt;		to run the program in background. Screen output gets written in the&lt;br /&gt;		given *.out file in idlout directory, which I can review as I wish.&lt;/p&gt;&lt;p class="mobile-post"&gt;4)I also renice the program using command&lt;br /&gt;		renice -p &lt;PID1&gt; &lt;PID2&gt; ... or renice -n 10 -p &lt;PID1&gt; &lt;PID2&gt; ...&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-111402593788475361?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/111402593788475361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=111402593788475361' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111402593788475361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111402593788475361'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/04/how-to-run-idl-in-batch-mode-in.html' title='How to Run IDL in batch mode (in background)'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-111401172771157091</id><published>2005-04-20T08:42:00.000-07:00</published><updated>2005-04-20T08:42:07.710-07:00</updated><title type='text'>Using this blog page</title><content type='html'>&lt;p class="mobile-post"&gt;Many times you spent a good amount of time in learning a new trick  to &lt;br /&gt;make something work. It can be any trick for doing anything.   Like, &lt;br /&gt;accessing a hidden menu in DVD player at home to use come trick &lt;br /&gt;commands on produce a fancy intelligent plot  or solve a problem at &lt;br /&gt;work. However you do all this only once ...... and never repeat it &lt;br /&gt;again for a long time. And after few months or years you need to do (or &lt;br /&gt;tell someone) the similar things again and you say, "I have done that &lt;br /&gt;in past but I can't recall how" and you spent same amount of time again &lt;br /&gt;to rediscover it.&lt;/p&gt;&lt;p class="mobile-post"&gt;Ideal Solution: One should keep a record of all these things and &lt;br /&gt;computer makes it easy.&lt;/p&gt;&lt;p class="mobile-post"&gt;Ok! I tried it, and searching for that notes file, which I made a year &lt;br /&gt;before took me similar time as may be rediscovering the trick. &lt;br /&gt;Moreover, you also need to do additional work if you wish to share it &lt;br /&gt;with someone.&lt;/p&gt;&lt;p class="mobile-post"&gt;So, I am planning to use this blog for such purpose, and also to throw &lt;br /&gt;other stuff, which I come across time to time and find interesting. It &lt;br /&gt;also allow me and other to add comments. And I can just mail my blogs &lt;br /&gt;using my, anyway always opened, mail application.&lt;/p&gt;&lt;p class="mobile-post"&gt;Seems simple. Let's see if this works long enough.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-111401172771157091?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/111401172771157091/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=111401172771157091' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111401172771157091'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111401172771157091'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/04/using-this-blog-page.html' title='Using this blog page'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-111325315365486390</id><published>2005-04-11T13:58:00.000-07:00</published><updated>2005-04-11T13:59:13.656-07:00</updated><title type='text'>Another test</title><content type='html'>This is another test to see if things still works....&lt;br /&gt;&lt;br /&gt;-dpk&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-111325315365486390?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/111325315365486390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=111325315365486390' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111325315365486390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/111325315365486390'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2005/04/another-test.html' title='Another test'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7110756.post-108552027839479837</id><published>2004-05-25T14:23:00.000-07:00</published><updated>2004-05-25T14:24:38.393-07:00</updated><title type='text'>Test Blog</title><content type='html'>This is a test Blog......Ignore it.&lt;br /&gt;-dpk&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7110756-108552027839479837?l=dpk011.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://dpk011.blogspot.com/feeds/108552027839479837/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7110756&amp;postID=108552027839479837' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/108552027839479837'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7110756/posts/default/108552027839479837'/><link rel='alternate' type='text/html' href='http://dpk011.blogspot.com/2004/05/test-blog.html' title='Test Blog'/><author><name>Deepak/दीपक</name><uri>http://www.blogger.com/profile/12436070559746785151</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
