From catenate at yahoo.com Mon Oct 4 14:42:56 1999 From: catenate at yahoo.com (Nate) Date: Thu Aug 5 00:03:08 2004 Subject: how would you do this? Message-ID: <19991004194256.18582.rocketmail@web901.mail.yahoo.com> On the Jax.PM jacksonville-pm-list; Nate wrote - I want to translate a string captured from a web form into readable output. It seems that I should to use the built in functions hex() and chr(), right? My problem seems to be getting it to substitute with the s/// operator. Now if $_ contains the string "You%20guys%20rule%21" can I do something like this: $name=~ s/$_/chr(hex($_))/ge ; print $name; ...and have it print "You guys rule!"? This example DOES NOT work, so what can I do? Now I've got the Camel book and the hex() and chr() functions are well defined, but I can't make them work for me :( ===== nate catenate@yahoo.com my infosec favorites -> www.geocities.com/catenate/ _____________________________________________________ People understand instinctively that the best way for computer programs to communicate with each other is for each of them to be strict in what they emit, and liberal in what they accept. The odd thing is that people themselves are not willing to be strict in how they speak, and liberal in how they listen. --Larry Wall, 2nd State of the Onion Address, August 1998 __________________________________________________ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From jproctor at oit.umass.edu Mon Oct 4 15:43:03 1999 From: jproctor at oit.umass.edu (j proctor) Date: Thu Aug 5 00:03:08 2004 Subject: how would you do this? In-Reply-To: <19991004194256.18582.rocketmail@web901.mail.yahoo.com> Message-ID: On the Jax.PM jacksonville-pm-list; j proctor wrote - > I want to translate a string captured from a web form into readable > output. It seems that I should to use the built in functions hex() and > chr(), right? Nope. Keep reading... > Now if $_ contains the string "You%20guys%20rule%21" > can I do something like this: > > $name=~ s/$_/chr(hex($_))/ge ; Yes. But not exactly like that. A possible problem with your code, Nate, is that s/// may not actually be working on $_ and then assigning the results to $name. I've never actually tried it that way, so it looked a little suspicious. You may need to explicitly $name = $_ before the s///, or $name out of the s/// and then put $_ into $name later if you need that value after $_ is reassigned to something else. I've also never tried using chr(hex()), although I'm sure you'll need the match half of the s/// to actually say which parts to treat as a hex-encoded character. Try using: s/%([0-9a-f]{2})/pack("H2", $1)/egi; and see what you get. Caveat: This code still doesn't do quite what a web browser or server would, since it would take input like %25%50%49 # that's "%21" encoded, btw. and boil down to "!" instead of stopping at "%21". j Explanation, for those that don't see their way through my dense little RegEx that I swiped from somewhere else (long since forgotten): Take whatever's in $_ and perform the following substitution: Find a pattern that starts with % and is followed by exactly two characters in the set [0123456789abcdefABCDEF]. The /i modifier at the end is what makes it case-insensitive. The parentheses aren't actually matched; they allow us to remember which two hex digits we found so we can use them later. The /e modifier is what lets us put a function call as the replacement string instead of straight text. That function is pack, which takes a list of values (in this case, $1, which is whatever's inside the aforementioned parens) and tries to interpret that list according to a pattern ("H2" is the pack code for two hex digits). Assuming pack can match the data with the pattern, it returns a scalar string of byte(s) that Perl can conveniently treat just like any other string. Finally, the /g says keep doing it until you don't find any more things that match the original pattern. The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From jproctor at oit.umass.edu Mon Oct 4 15:50:50 1999 From: jproctor at oit.umass.edu (j proctor) Date: Thu Aug 5 00:03:08 2004 Subject: how would you do this? In-Reply-To: Message-ID: On the Jax.PM jacksonville-pm-list; j proctor wrote - > %25%50%49 # that's "%21" encoded, btw. Er, I mean %25%32%31, of course. This is what I get for remembering ASCII values in decimal even though I almost always use them as hex. j The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Tue Oct 5 16:57:47 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:08 2004 Subject: Win32::OLE Message-ID: <199910052154.RAA17497@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - > I'm trying my hand at PERL on NT right now, and I am having some problems > finding GOOD documentation on the Win32::OLE module. The only sample I > have seen is the one that manipulates an Excel spreadsheet. > > What I'm trying to get examples of is manipulation of Word. There doesn't > seem to be anything really out there. Any clues? Daniel, did you get the print outs I stuffed under your door about this? Also, you may want to check out: http://www.activestate.com/support/faqs/win32/ HTHBSWIID, -Sneex- :] FCCJ Data Security Group ______________________________________________________________________ Bill Jones Data Security Specialist http://www.fccj.org/cgi/mail?dss "f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.", TC in c.l.p.misc "No, I'm not going to explain it. If you can't figure it out, you didn't want to know anyway..." --Larry Wall The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From campin at bellsouth.net Tue Oct 5 19:06:28 1999 From: campin at bellsouth.net (nate) Date: Thu Aug 5 00:03:09 2004 Subject: My Perl program came to life...and other strange stories Message-ID: <37FA9284.2950FCF5@bellsouth.net> On the Jax.PM jacksonville-pm-list; nate wrote - This post may not quite fit into the usage guidelines for the list, but I doubt any of the 15 of you (or was it 15 including me? ;) will mind. Today I got done with some not-so-useful Navy paperwork and (of course) started tweaking a Perl script. I was trying to make it more efficient and even add a feature or two without slowing it down, when I realized that I was really proud of my little program. I was getting it to act just the way that I wanted it to, and I realized that (at least to me) it was alive. It was weird, having created something that seemed alive. I don't want to compare it to feeling like God, but maybe like a father. Ok, I am a father, and when my son was born it was WAY messier, so maybe it's more like an artist and his/her creation, perhaps a sculptor. I think I saw part of what makes people so dedicated to programming. This seemed like a significant moment, and I suspect that most (or all) of you have had a similar experience. I guess I just wanted to share it. BTW, since I'm getting out of the Navy next week I had posted my resume on some internet job boards over the weekend. On Monday the headhunters were already calling me because I listed Perl on my resume. Granted I'm from right outside Silicon Valley and that's where these jobs are, but it looks like it's a very good time to know Perl. Now I'm frantically trying to learn as much as I can so that I might actually be employable for just my Perl skills. Wish me luck. Nate The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Tue Oct 5 20:20:33 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: My Perl program came to life...and other strange stories Message-ID: <199910060117.VAA19426@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - A 'man', who discovered the True meaning of the Universe, spake - > I was getting it to act just the way that I wanted it to, and I realized > that (at least to me) it was alive. It was weird, having created > something that seemed alive. I don't want to compare it to feeling like > God, but maybe like a father. Ok, I am a father, and when my son was > born it was WAY messier, so maybe it's more like an artist and his/her > creation, perhaps a sculptor. > > I think I saw part of what makes people so dedicated to programming. Stick with the 'painter / sculptor' mentality and you won't feel let down later - GODHOOD is not a good thing, especially when your not ;) > it looks like it's a very good time to know Perl. Now I'm frantically > trying to learn as much as I can so that I might actually be employable > for just my Perl skills. Wish me luck. Good luck! PS - Learn PDF Forms and Flash 4 Forms and Perl on Win32:* then you will be very much in demand. CGI is over rated, being able to handle business needs is where the fun is. -Sneex- :] The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From webmaster at blindswholesale.com Tue Oct 5 20:31:38 1999 From: webmaster at blindswholesale.com (Tim Dumas - Webmaster) Date: Thu Aug 5 00:03:09 2004 Subject: My Perl program came to life...and other strange stories Message-ID: <00a101bf0f9a$8a16e640$1921c7d8@jamehm> On the Jax.PM jacksonville-pm-list; "Tim Dumas - Webmaster" wrote - -----Original Message----- From: Bill Jones jacksonville-pm-list@happyfunball.pm.org To: Date: Tuesday, October 05, 1999 9:25 PM Subject: Re: My Perl program came to life...and other strange stories The ape is awakened . . . . Did someone mention FDF???? Cozying up to Bill Hey Bill guess what I am looking for information on at this very moment . . . mind if I pick at your wetware for bit and suck it dry? Tim Dumas www.blindswholesale.com webmaster@blindswholesale.com ($_="115630525841264815593750 59425919501649496140251515604 14115302119504049415815213536 15491760422119366061522953532 11559584920263641371859145844 1526")=~s/(.)(.)(..)/pack("C", substr($_[1],$1.$2,4).substr ($_[1],$3,4))/ge if $_[1]= unpack("B*",);print; __END__ WINDOZE The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Wed Oct 6 07:16:27 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: My Perl program came to life...and other strange stories Message-ID: <199910061213.IAA21266@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - > mind if I pick at your wetware for bit and suck it dry? Me? I am Vaporware! So what's to pick? :) -Sneex- :] The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From catenate at yahoo.com Wed Oct 6 20:13:54 1999 From: catenate at yahoo.com (Nate) Date: Thu Aug 5 00:03:09 2004 Subject: Tell me what you think of sed and awk Message-ID: <19991007011354.19561.rocketmail@web904.mail.yahoo.com> On the Jax.PM jacksonville-pm-list; Nate wrote - Here's something I can't figure out, I need the opinions of you Perl/Unix gurus. I live for O'Reilly books, so a while back I got the "Unix CD Bookshelf" to get the hyperlinked version of "Unix Power Tools." I started reading the book included with it, "sed and awk" and I can't help but think that I can do all this with Perl. Sometimes it might make more sense to use sed and/or awk for quick one liners, but is it worth the trouble to learn? sed and awk were what people relied on before Perl came along, and those same people still rely on sed and awk because they are familiar with them, but should new users learn them? Should I spend the time I would spend getting familiar with sed and awk to learn more Perl modules, or would learning sed and awk help make me a better rounded Perl hacker and Linux user. I always have sed and awk available, since I run Linux at home and I install cygwin on my NT boxes at work, so I wouldn't only have it on one platform. I'm not planning on spending much time on sed & awk, this is more of a philosophical question. What is the take of you gurus on the list? How worthwhile is the sed/awk combo these days? Do you still use them regularly? What would you recommend to a beginner? Thanks for putting up with my questions again :) ===== nate catenate@yahoo.com my infosec favorites -> www.geocities.com/catenate/ _____________________________________________________ People understand instinctively that the best way for computer programs to communicate with each other is for each of them to be strict in what they emit, and liberal in what they accept. The odd thing is that people themselves are not willing to be strict in how they speak, and liberal in how they listen. --Larry Wall, 2nd State of the Onion Address, August 1998 __________________________________________________ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From jproctor at oit.umass.edu Thu Oct 7 10:16:45 1999 From: jproctor at oit.umass.edu (j proctor) Date: Thu Aug 5 00:03:09 2004 Subject: Tell me what you think of sed and awk In-Reply-To: <19991007011354.19561.rocketmail@web904.mail.yahoo.com> Message-ID: On the Jax.PM jacksonville-pm-list; j proctor wrote - > What is the take of you gurus on the list? How worthwhile is the > sed/awk combo these days? Do you still use them regularly? What would > you recommend to a beginner? I started learning sed and awk to do some database conversions about 3 years ago (the company I worked for was massively reorganizing its billing system at the time). I started learning Perl within a few weeks because I ran up against the limits of what sed and awk could easily accomplish for me. That's not to say they wouldn't do everything I needed (this did involve reading and writing multiple files in one pass), it was just much less obvious than it is in Perl. Within 9 months, I had a better-paying job doing Perl almost full-time. Anyway, sed and awk are interesting tools, and I've always considered that I should go back and play with them a little more just to be sure I didn't miss something. But from where I sit (roughly 42*23'37"N, 82*31'41"W, according to tiger.census.gov), Perl can do everything they can, in a way that's easier to revisit months or years later (i.e. it's maintainable) and much more portable. Lately, I've been tinkering with Perl one-liners; for me this pretty much seals it as a replacement of the older tools. Add to this that most recent distributions of free (gratis and/or libre) UNIX and UNIX-like operating systems all come with Perl pre-built, and there's not even the argument that it's something extra to install. Besides, isn't the awk extinct? Er, no. That's the auk. Nevermind. I like Perl. I understand it's not the be-all and end-all of programming languages, but it's powerful and quick and has a fairly shallow learning curve (that is, you can do interesting or useful things fairly quickly). I think sed and awk are, at this point, interesting footnotes as to why it's a Good Thing [tm] to have Perl around, and they're really not worth much more time than it takes to read their man pages and try to use them to do anything. :) > Thanks for putting up with my questions again :) No problem. Once you get a cushy Silicon Valley job with some way-overfunded startup that manages to convert into an IPO before the investors lose patience, we just expect you to share the wealth. :) j The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Thu Oct 7 09:55:24 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: Perl/NT interface Message-ID: <199910071452.KAA07082@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - This was posted to the JaxPM List. > Hello Bill, > > We have a client in the North Bay area of San Francisco who has a full time > permanent position open for someone with strong Perl programming skills. A > very brief description of the current application they will be developing is > written below. I would like to know if you or any of your collegues have an > interest in this opportunity. The client company is well established, > extremely successful, very employee oriented, and has an excellent > relocation program. You can call me at (415) 989-5242 for more information > or email at cjs@stradacorp.com. > > DATA WAREHOUSING SOFTWARE ENGINEER > > Develop a Perl/NT web interface into a mainframe datawarehouse. See below > for detailed description. > As a member of Product Engineering, the successful candidate will work as > part of a development team carrying out design, coding, testing and > implementation of data warehousing Extract Transformation and Load > procedures for mainframe and Windows NT environments. Coding will be > initially in PERL and SQL on NT and COBOL on MVS, with Visual Basic a likely > addition. > > Best regards, > > Cathryn Sawyer > Technical Recruiter > Strada Corporation > > If any JaxPM'er is interested please contact cjs@stradacorp.com directly. -Sneex- :] FCCJ Data Security Group ______________________________________________________________________ Bill Jones Data Security Specialist http://www.fccj.org/cgi/mail?dss "f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.", TC in c.l.p.misc "No, I'm not going to explain it. If you can't figure it out, you didn't want to know anyway..." --Larry Wall The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Thu Oct 7 14:22:57 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: Tell me what you think of sed and awk Message-ID: <199910071920.PAA11594@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - > I started reading the book included with it, "sed and awk" and I can't > help but think that I can do all this with Perl. Sometimes it might > make more sense to use sed and/or awk for quick one liners, but is it > worth the trouble to learn? sed and awk were what people relied on > before Perl came along, and those same people still rely on sed and awk > because they are familiar with them, but should new users learn them? I have the sed & awk book, plus many many other ORA books... sed & awk are the one of the REASONS Perl exists today :) sed and awk are cool, for quick and dirty, but Perl is better long term. HTH, -Sneex- :] FCCJ Data Security Group ______________________________________________________________________ Bill Jones Data Security Specialist http://www.fccj.org/cgi/mail?dss "f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.", TC in c.l.p.misc "No, I'm not going to explain it. If you can't figure it out, you didn't want to know anyway..." --Larry Wall The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Wed Oct 13 11:08:46 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] Perl Stuff Message-ID: <199910131605.MAA02612@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - http://www.perlarchive.com/guide/ In case anyone is interested... -Sneex- :] The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Sat Oct 16 14:58:57 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] .Sig War! (Easy) Message-ID: <199910161956.PAA03536@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - OK; this one was while I waited for my daughter to finish eating (she is 7 months old...) foreach (split(/(\d\d\d\d\d\d\d\d)/, unpack("b*", reverse()))) { print pack("b*", $_); } __DATA__ gro.pmig.www//:ptth \_\/_/_,__\|_| |_|_/____\ moc.lrep.www//:ptth < >| |_| | | | | |__/ / moc.tahder.www//:ptth / /\ \ | | |\ _' | | / / gro.ehcapa.www//:ptth __ ___ _ __ _)_(/ / gro.cppxunil.www//:ptth _ __ )enacirruH( 0.5 taHdeR CPPxuniL gninnuR /___/ /_/ /_/ /_/__\\_\/_/__\/_,_\/_//_/ / ,_\/__. /__. /_,_\/_//_/ /__ )_- /_' /__ /` _ / _ / / // /\ _ /\ _ /` _ / _ / ____ _____/ /_____ __/ // / __ __ ___ ____ __/ // / __ __ __ __ __ 9803-236 )409( 1 * 20223 LF ,ellivnoskcaJ * tS etatS W 105 * JCCF /gro.mp.ellivnoskcaj//:ptth * tsilaicepS ytiruceS ataD * senoJ lliB ____________________________________________________________________ ]: -xeenS- ,ton ebyam ,ebyaM The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Sat Oct 16 15:53:43 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] .Sig War! (Easy II) Message-ID: <199910162051.QAA03781@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - while () { foreach $a (split(/(\d\d\d\d\d\d\d\d)/, pack("b*", $_))) { print $a; } } __DATA__ 0000010000000100111010101010011000000100100001100100111010100110000001000010 1110000101101010011000000100110000100011001000001010101100100111010001110100 0111010000000100001100101111011011101110101001100100111000000100100111101111 0110101011100100111000000100110011100010111010000110011101100010011010000110 0100111000100110110011100000010010000110011101100010011000000100110011101010 1110010011100100111010100110011101100010011010100110010011100000010010011110 1111011010101110010011100000010011000110111101100010011010100110011101000111 01000111010010110000 0000010000000100111010101010011000000100111011101001011000110110001101100000 0100100001100010011000100110000001001001111011110110101011100100111000000100 0100011010010110111101100011011011110110111001101001011011000110100001100011 0110000001001000011001110110001001100000010000101110101001101100011000010110 0111011011110110001101101111011011100110100101101100011010000110001101100000 0100001001101001011011001110001011101001011001110110110001100010111010010110 0110111010100110011101101010011011001110110011100000010000101110111101100000 010010110000 0000010000000100111101101010111001001110000001001111011011101110011101100111 0100011101000111010000000100100110101111011010101110010011100000010000101110 0001011011110110101011101110011000010110001011101100111000000100111011101001 0110001101100011011000000100100001100010011010000110000011100010111000000100 0010111011110110000001001100111010100110010011100110111010010110110001101010 011000000100101011101100111001110100011101000111010010110000 0000010000000100011101000111010001110100010010101010011011001110100101101100 1110001011101000011001110110110001101010011000000100100101101100111000000100 0110011010101110001011101001011000110110101001100111010001110100011101001011 0000 The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Sun Oct 17 07:52:23 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] Subscribers Message-ID: <199910171249.IAA05677@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - > Members of list 'jacksonville-pm-list': > (List deleted for security reasons...) > > 17 subscribers 17 - Wow! Hey! Don't everybody talk all at once! Here is some perl code to keep this message on-topic for group: package rekcaH::lreP::rehtonA::tsuJ; sub p{($_=reverse$_[0])=~s/:+/ /g;print} sub _{&p(__PACKAGE__)}&_(); -Sneex- :] The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From jproctor at oit.umass.edu Mon Oct 18 08:32:25 1999 From: jproctor at oit.umass.edu (j proctor) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] Subscribers In-Reply-To: <199910171249.IAA05677@astro.fccj.org> Message-ID: On the Jax.PM jacksonville-pm-list; j proctor wrote - Blah blah blah. I wake up far earlier than I wanted, stumble through the morning rituals and 12 mile commute, then flop down in my office chair, and what's the first thing waiting in my mailbox on a blustery October Monday morning? > package rekcaH::lreP::rehtonA::tsuJ; > sub p{($_=reverse$_[0])=~s/:+/ /g;print} > sub _{&p(__PACKAGE__)}&_(); Bill, this is ugly and you know it. And it's not even that confusing (ahh, a little more coffee and it's not quite so bad), it's just ugly. But that's three in a row for you. Now it's time for someone else to send a geeky .sig generator. Anyone? Anyone? Bueller? I'm not warmed up yet (haven't finished the coffee and made some halfway reasonable attempt at looking like I'm actually doing real work), although I have an idea. j The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From sml at zfx.com Tue Oct 19 09:51:12 1999 From: sml at zfx.com (Steve Lane) Date: Thu Aug 5 00:03:09 2004 Subject: geeky .sig generator (was Re: [JaxPM] Subscribers) References: Message-ID: <380C8560.237C@zfx.com> On the Jax.PM jacksonville-pm-list; Steve Lane wrote - j proctor wrote: > Bill, this is ugly and you know it. And it's not even that confusing > (ahh, a little more coffee and it's not quite so bad), it's just ugly. > But that's three in a row for you. Now it's time for someone else to > send a geeky .sig generator. > > Anyone? Anyone? Bueller? what the heck. this is my first one: perl -le '($_=q(*= "man, These are the first perl faq`s!" ;split/8, `9/ ;*=`*809 *869*8791` ;(*)=/*829 *839 *849.+?"(.+?)"/s ;s/(\w+ \w+)/"uc*859(\$1)"/gee ;print))=~s/\*/\$_/g;y(98)(][);eval' opinions welcome. :) -- Steve Lane The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Tue Oct 19 10:55:08 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: geeky .sig generator Message-ID: <199910191551.LAA26778@astro.fccj.org> On the Jax.PM jacksonville-pm-list; "Bill Jones" wrote - > perl -le '($_=q(*= "man, These are the first perl faq`s!" > ;split/8, `9/ ;*=`*809 *869*8791` ;(*)=/*829 *839 *849.+?"(.+?)"/s > ;s/(\w+ \w+)/"uc*859(\$1)"/gee ;print))=~s/\*/\$_/g;y(98)(][);eval' > > opinions welcome. :) Yes. -Sneex- :] The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Fri Oct 29 09:07:28 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] Message-ID: On the Jax.PM jacksonville-pm-list; Bill Jones wrote - Jacksonville Perl Mongers List testing... HFB (Perl Mongers) was rebuilt recently... -Sneex- :] The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From jproctor at oit.umass.edu Fri Oct 29 10:23:46 1999 From: jproctor at oit.umass.edu (j proctor) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] In-Reply-To: Message-ID: On the Jax.PM jacksonville-pm-list; j proctor wrote - > List testing... > > HFB (Perl Mongers) was rebuilt recently... Ha! They tried to get rid of us, and failed! Now our plans for world domination can proceed! Quick! Someone in Jacksonville annex something! :) j The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From dstringf at fccjmail.fccj.cc.fl.us Fri Oct 29 10:05:49 1999 From: dstringf at fccjmail.fccj.cc.fl.us (Daniel Stringfield) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] In-Reply-To: Message-ID: On the Jax.PM jacksonville-pm-list; Daniel Stringfield wrote - On Fri, 29 Oct 1999, Bill Jones wrote: > On the Jax.PM jacksonville-pm-list; > Bill Jones wrote - > > > Jacksonville Perl Mongers > > List testing... Echo :) Just FYI, any of you members of JaxLUG, the server is down, and a new drive is in the works to get purchased. Everyone will have to resubscribe. -- ======= 40 4B 36 58 A0 C7 5A 8A 49 E0 39 54 00 20 A3 AA ======= Daniel Stringfield Florida Community College at Jacksonville ================================================================ The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From bill at fccj.org Fri Oct 29 10:20:50 1999 From: bill at fccj.org (Bill Jones) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] In-Reply-To: Message-ID: On the Jax.PM jacksonville-pm-list; Bill Jones wrote - >> HFB (Perl Mongers) was rebuilt recently... > > > Ha! They tried to get rid of us, and failed! Now our plans for world > domination can proceed! Quick! Someone in Jacksonville annex something! > > :) I have all of the Westside under my grasp even now! Somebody go and grab Springfield! Once those are under our power, Jax will fall I say! -Sneex- :] The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From dstringf at fccjmail.fccj.cc.fl.us Fri Oct 29 10:22:16 1999 From: dstringf at fccjmail.fccj.cc.fl.us (Daniel Stringfield) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] In-Reply-To: Message-ID: On the Jax.PM jacksonville-pm-list; Daniel Stringfield wrote - On Fri, 29 Oct 1999, Bill Jones wrote: > I have all of the Westside under my grasp even now! > Somebody go and grab Springfield! > > Once those are under our power, Jax will fall I say! I got Riverside! Woo hoo! -- ======= 40 4B 36 58 A0 C7 5A 8A 49 E0 39 54 00 20 A3 AA ======= Daniel Stringfield Florida Community College at Jacksonville ================================================================ The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments... From jproctor at oit.umass.edu Fri Oct 29 10:47:24 1999 From: jproctor at oit.umass.edu (j proctor) Date: Thu Aug 5 00:03:09 2004 Subject: [JaxPM] In-Reply-To: Message-ID: On the Jax.PM jacksonville-pm-list; j proctor wrote - > I have all of the Westside under my grasp even now! > Somebody go and grab Springfield! Okay, I've got it. Oh, wait. I got Springfield, MA, "Birthplace of Basketball" instead. Never mind. I'll get Switzerland, then. :) > Once those are under our power, Jax will fall I say! Nah. We'll never take Jax without San Marco and Arlington. We may prefer it without Mandarin, though. :) j The Jacksonville Perl Monger's Group is operated by - Bill -Sneex- Jones ( sneex@usa.net ), to whom send all praises, complaints, or comments...