Re: Nature of this list

2011-04-24 Thread Shlomi Fish
Hi David, see below for my response. On Sunday 24 Apr 2011 03:30:17 David Christensen wrote: > On 04/19/2011 06:26 PM, David Christensen wrote: > > So, my next question is "has the complaint resolution process broken > > down?". > > It's been 4 days, and I haven't seen a reply to the above quest

How to Generate An Expression to A LOL?

2011-04-24 Thread z sway
the expression only contains number and"+*()" the form of list is like[op,node1,node2...],op is "+"or"*",node can be a number or a child list. e.g :1*2+3*4*(5+6) [ '+', ['*', '1', '2'], ['*', '3', '4', ['+','5', '6'] ] ] Thanks!

Re: How to Generate An Expression to A LOL?

2011-04-24 Thread Shlomi Fish
Hi "Z", On Sunday 24 Apr 2011 15:08:18 z sway wrote: > the expression only contains number and"+*()" > the form of list is like[op,node1,node2...],op is "+"or"*",node can be a > number or a child list. > e.g :1*2+3*4*(5+6) > [ '+', ['*', '1', '2'], ['*', '3', '4', ['+','5', '6'] ] ] > Thanks

Re: perl interview questions

2011-04-24 Thread Akhthar Parvez K
Hi Jyoti, On Thursday 21 Apr 2011, Jyoti wrote: > Please give me any link or any tutorial which will be helpful for > preparation of PERL interview. > I don't honestly think someone would write an article or tutorial about "preparing for a Perl interview". That should actually split into two: L

Re: perl interview questions

2011-04-24 Thread Shawn H Corey
On 11-04-24 09:48 AM, Akhthar Parvez K wrote: #5 - Never give a wrong answer - If at all you receive a question that you don't know, do not panic, just be smart and divert the question so you can answer what you know. If you don't know the answer, say so. Then state how you would go about f

Re: perl interview questions

2011-04-24 Thread Akhthar Parvez K
On Sunday 24 Apr 2011, Shawn H Corey wrote: > On 11-04-24 09:48 AM, Akhthar Parvez K wrote: > > #5 - Never give a wrong answer - If at all you receive a question that you > > don't know, do not panic, just be smart and divert the question so you can > > answer what you know. > > If you don't kno

Re: perl interview questions

2011-04-24 Thread Shlomi Fish
On Sunday 24 Apr 2011 17:13:18 Shawn H Corey wrote: > On 11-04-24 09:48 AM, Akhthar Parvez K wrote: > > #5 - Never give a wrong answer - If at all you receive a question that > > you don't know, do not panic, just be smart and divert the question so > > you can answer what you know. > > If you don

Re: perl interview questions

2011-04-24 Thread Shlomi Fish
On Sunday 24 Apr 2011 16:48:10 Akhthar Parvez K wrote: > Hi Jyoti, > > On Thursday 21 Apr 2011, Jyoti wrote: > > Please give me any link or any tutorial which will be helpful for > > preparation of PERL interview. > > I don't honestly think someone would write an article or tutorial about > "prep

Re: perl interview questions

2011-04-24 Thread Shawn H Corey
On 11-04-24 10:36 AM, Akhthar Parvez K wrote: Well, what I actually meant was not diverting it baselessly. One could actually start with "I don't think I actually know what you asked, but if". It's just to let the interviewer know that you know about something related eventhough you don't know

Re: Nature of this list

2011-04-24 Thread David Christensen
On 04/24/2011 02:36 AM, Shlomi Fish wrote: I also think it is a better idea to put someone who is acting in an abusive manner on manual moderation before actually banning them. Good idea. Does the beginners@perl.org mailing list software have this feature? Well, online bullying is a probl

Re: perl interview questions

2011-04-24 Thread Shlomi Fish
On Sunday 24 Apr 2011 21:01:57 Shawn H Corey wrote: > On 11-04-24 10:36 AM, Akhthar Parvez K wrote: > > Well, what I actually meant was not diverting it baselessly. One could > > actually start with "I don't think I actually know what you asked, but > > if". It's just to let the > > interviewer kno

Re: Help with indentation

2011-04-24 Thread Tiago Hori
Hi Brian and List > > http://ideone.com/kk0OI > I was studying the references about regular expression you pointed me to on the link above and I just wanted make sure I understand properly. You used the \Q just in case there is a metacharacter in one of the names that gets stored in $_? Could

Fwd: how to parse complex table

2011-04-24 Thread galeb abu-ali
Mike, many thanks for the help, particularly your comments which were as valuable as your code! I revised the code to the following: #!/usr/bin/perl # parse_IMG_gene_info4.pl use strict; use warnings; for my $file( @ARGV ) { open( my $IN, "<", $file ) or die "Failed to open: $!\n"; my

Re: Help with indentation

2011-04-24 Thread Brian Fraser
On Sun, Apr 24, 2011 at 5:42 PM, Tiago Hori wrote: > Hi Brian and List > > > http://ideone.com/kk0OI > > I was studying the references about regular expression you pointed me to on > the link above and I just wanted make sure I understand properly. You used > the \Q just in case there is a metac

Re: Fwd: how to parse complex table

2011-04-24 Thread Peter Scott
On Sun, 24 Apr 2011 18:14:52 -0400, galeb abu-ali wrote: > I revised the code to the following: [...] > for my $file( @ARGV ) { > open( my $IN, "<", $file ) or die "Failed to open: $!\n"; > > my( %cog_cat, %cog_id, @cogs, $oid, $locus, $source, $cluster_info > ); > > while( my $li

Re: Help with indentation

2011-04-24 Thread Uri Guttman
> "BF" == Brian Fraser writes: BF> http://ideone.com/YGq85 a small request. you can post link to pastebots but also paste the code in emails here. i can reply and quote code better staying in my emailer than going back and forth to a web page. emacs does a fine job of marking off quoted em

Re: Help with indentation

2011-04-24 Thread Brian Fraser
On Sun, Apr 24, 2011 at 11:18 PM, Uri Guttman wrote: > a small request. you can post link to pastebots but also paste the code > in emails here. i can reply and quote code better staying in my emailer > than going back and forth to a web page. emacs does a fine job of > marking off quoted emails

how to rename files that contain chinese characters

2011-04-24 Thread eventual
Hi, I am using windows operating system. I wanted to rename some files within certain directories and my files contain chinese characters. After renaming, I could not see those chinese characters, what must I do to retain those chinese characters. Below is the file name and the script. Thanks fi