simplest of simple web servers

2007-11-06 Thread Willy West
a webserver in a USB key would be fun :) I figured that I'd come here to see which directions I could go to start off and where I should avoid going. thank you much -- Willy -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: simplest of simple web servers

2007-11-06 Thread Willy West
responded. -- Willy -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

regex: working with parts of strings several times over..

2005-06-20 Thread Willy West
here is the original: namewilly descneeds to take a nap email[EMAIL PROTECTED] here is the result that I want: section name willy /name desc needs to take a nap /desc email [EMAIL PROTECTED] /email /section if i have

Re: regex: working with parts of strings several times over..

2005-06-20 Thread Willy West
that i've never used nor understood untill now :)thank you very much for the help in figuring this out. i'll go off and play with this right now :) -- Willy http://www.hackswell.com/corenth -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: Counting Multiple lines of data with a unique column of information

2005-03-08 Thread Willy West
forgot to reply to all for the following *laugh* -- Forwarded message -- From: Willy West [EMAIL PROTECTED] Date: Tue, 8 Mar 2005 19:20:24 -0500 Subject: Re: Counting Multiple lines of data with a unique column of information To: Wilson, Josh --- Systems Analyst --- GO [EMAIL

Re: Another regular expression matching quandry

2004-12-07 Thread Willy West
that it didn't remove /all/ files from the list- maybe I'm wrong somewhere here? Thanks so much! Jeffrey Paul Burger good luck :) -- Willy http://www.hackswell.com/corenth My APALOGIES, WORLD! 49% voted for a Senator, 51% voted for the cute monkey that does tricks! DAMN

Re: How to remove new line chars

2004-10-21 Thread Willy West
good stuff abut regex in perl . look up chomp() a non-regex way to take care of pesky \n characters :) -- Willy http://www.hackswell.com/corenth -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first

Re: emacs and perl

2004-10-14 Thread Willy West
it. -- Willy http://www.hackswell.com/corenth -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/ http://learn.perl.org/first-response

Re: counting gaps in sequence data

2004-10-14 Thread Willy West
discussion of bioperl modules, current future efforts and related topics. - in the latter of the two lists, i counted about 80 messages in the first half of this month. hmm... i might join it... :) might be fun!! -- Willy http://www.hackswell.com/corenth -- To unsubscribe, e-mail: [EMAIL

Re: counting gaps in sequence data

2004-10-14 Thread Willy West
, but he is looking for an answer regarding effective Perl use when dealing with strings- that's classic Perl and a classic question for this list :) i wish i could answer his question right off the bat, but i can't :/ awell... -- Willy http://www.hackswell.com/corenth -- To unsubscribe, e

Passing shell variables to PERL

2004-10-05 Thread Willy Perez
Hi, Is there a method to pass a shell assigned variable to perl? For ex: ABC=xyc perl -ne 'print $ABC' In awk you could use ENVIRON[varname], is there something compatible in perl. Willy Perez Liz Claiborne IT (201) 295-7011

Re: Passing shell variables to PERL

2004-10-05 Thread Willy Perez
Thanks Errin/Jim/David, Hi Willy, Perl will auto-magically take all of your shell environment variables and put them in a hash: %ENV where the keys are the variable names and the values are the values! so, for your example above, # perl -e 'print $ENV{ABC}\n' should work! --Errin You can

a small script in which a dbm hash fails to work right

2003-01-17 Thread willy
:( -- thanks :) willy -- Bill Gates is a man who loves EULAs, If you break his contract he'll just sue ya', If you do any sharing, He'll set you to swearing, So use GPL and shout 'booya'!! - This mail sent through IMP: http

dealing with funky characters

2003-01-03 Thread willy
point in the program- maybe find the use of various unknown tags, or substitute them with html tags that would make the document more legible. (not very worried about that right now though) thank you, willy -- Bill Gates is a man who loves EULAs, If you break his contract he'll just sue

RE: Browser navigation with cgi

2002-03-14 Thread willy wonka
Thank you all that helped. I tried the template thing but was unable to debug the scritp, but thanks to all of you I was able to come up with a perfect soulution that creats a back button and leaves all the info in the form. print form Action= \javascript:window.history.go(-1)\method = \post\;

Browser navigation with cgi

2002-03-11 Thread willy wonka
Does anyone konw if it is possble to access the goback feature built into the ie5 and netscape throught cgi script. I can use a url in a form action to go back to the page I wan't but the form info on the page is gone. If I use the back button on the browser the info is still there. I am trying