From dfwpm at internetalias.net Fri Jan 4 10:03:16 2013 From: dfwpm at internetalias.net (Tommy Butler) Date: Fri, 04 Jan 2013 12:03:16 -0600 Subject: [DFW.pm] Announcing the upcoming Perl Mongers Meeting Message-ID: <50E71964.9010308@internetalias.net> Yes folks, this Wednesday the 9th we "Git" to it! Bring your laptop and come prepared to use/learn git; if you haven't used it yet, I promise it's not as hard as you might be expecting. Please download and install a git client on your machine *before* you come, as installation of git is not part of the itinerary. We'll be using command-line git and github to kick off our collaborative project, so even if you won't be coding or patching, this is your chance to come face to face with Linus Torvalds' "Information Manager From Hell" and gain a decent level of mastery of this essential development tool. Experience with git will be a pretty feather in your hat, a useful gadget in your utility belt, and a nice bullet on your resume (profit!) It will be the way we share information and code in our own DFW.pm projects (fun!) As a bonus, we'll also be showing a recording of Randal Schwartz's own presentation on Git. The great Randal Schwartz literally wrote the book on Perl, so this is a night you won't want to miss. *Location* 2995 Ladybird Lane, Dallas, TX www.dallasmakerspace.org (214)699-6537 -- Tommy Butler -------------- next part -------------- An HTML attachment was scrubbed... URL: From wigthft at gmail.com Fri Jan 4 12:09:04 2013 From: wigthft at gmail.com (John Fields) Date: Fri, 04 Jan 2013 14:09:04 -0600 Subject: [DFW.pm] Announcing the upcoming Perl Mongers Meeting In-Reply-To: <50E71964.9010308@internetalias.net> References: <50E71964.9010308@internetalias.net> Message-ID: <50E736E0.9040109@gmail.com> 7PM! (Drinks are avail there, eats are not. Microwave is avail though.) JF On 01/04/2013 12:03 PM, Tommy Butler wrote: > Yes folks, this Wednesday the 9th we "Git" to it! Bring your laptop and come prepared to use/learn git; if you haven't used it > yet, I promise it's not as hard as you might be expecting. Please download and install a git client on your machine *before* you > come, as installation of git is not part of the itinerary. We'll be using command-line git and github to kick off our > collaborative project, so even if you won't be coding or patching, this is your chance to come face to face with Linus Torvalds' > "Information Manager From Hell" and gain a decent level of mastery of this essential development tool. Experience with git will > be a pretty feather in your hat, a useful gadget in your utility belt, and a nice bullet on your resume (profit!) It will be the > way we share information and code in our own DFW.pm projects (fun!) > > As a bonus, we'll also be showing a recording of Randal Schwartz's own presentation on Git. The great Randal Schwartz > literally wrote the book on Perl, so this is a night you won't want to miss. > > *Location* > 2995 Ladybird Lane, Dallas, TX > www.dallasmakerspace.org > (214)699-6537 > > -- > Tommy Butler > > > _______________________________________________ > Dfw-pm mailing list > Dfw-pm at pm.org > http://mail.pm.org/mailman/listinfo/dfw-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From xdhmoore at gmail.com Fri Jan 4 15:00:33 2013 From: xdhmoore at gmail.com (Daniel Moore) Date: Fri, 4 Jan 2013 15:00:33 -0800 Subject: [DFW.pm] Meeting time In-Reply-To: References: Message-ID: <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> Hi, What time is the Perl Mongers meeting on the 9th? Thanks, Daniel Moore From wigthft at gmail.com Fri Jan 4 15:17:08 2013 From: wigthft at gmail.com (John Fields) Date: Fri, 4 Jan 2013 17:17:08 -0600 Subject: [DFW.pm] Meeting time In-Reply-To: <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> References: <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> Message-ID: 7pm. :) On Jan 4, 2013 5:00 PM, "Daniel Moore" wrote: > Hi, > > What time is the Perl Mongers meeting on the 9th? > > Thanks, > Daniel Moore > _______________________________________________ > Dfw-pm mailing list > Dfw-pm at pm.org > http://mail.pm.org/mailman/listinfo/dfw-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kassebaumj at hotmail.com Sat Jan 5 17:28:34 2013 From: kassebaumj at hotmail.com (Jerry Kassebaum) Date: Sat, 5 Jan 2013 19:28:34 -0600 Subject: [DFW.pm] Changing colors in a gif using cgi In-Reply-To: <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> References: , <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> Message-ID: How do I change colors in a gif using cgi or perl? In other words how do I read a file in binary or hex, change some bits or bytes, and write it back? A very simple file is attached if you want to use it. My long-term goal is to start with all black, then blacken every color except, say, a00000 to afffff, then everything except, say, 200000 to 2fffff AND a00000 to afffff, etc., until the user can guess what the picture is. Jerry Kassebaum -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: x.gif Type: image/gif Size: 227 bytes Desc: not available URL: From rflach at corp.hrsmart.com Sat Jan 5 18:06:42 2013 From: rflach at corp.hrsmart.com (Robert Flach) Date: Sun, 6 Jan 2013 02:06:42 +0000 Subject: [DFW.pm] Changing colors in a gif using cgi In-Reply-To: References: , <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> Message-ID: <14ADD05DFE5878488032557AB7BE90E63E9EB63F@BY2PRD0510MB365.namprd05.prod.outlook.com> I would assume you could accomplish this with PerlMagick... and a quick internet search reveals: http://stackoverflow.com/questions/2350740/how-do-i-replace-any-color-that-is-not-a-specific-color-using-perlmagick The basic syntax is use Image::Magick; my $image = Image::Magick->new; $image->Read('x.gif'); $image->Opaque(fill => 'black', color => 'red'); $image->Write('x_changed.gif'); Robert Flach From: Dfw-pm [mailto:dfw-pm-bounces+rflach=hrsmart.com at pm.org] On Behalf Of Jerry Kassebaum Sent: Saturday, January 5, 2013 7:29 PM To: dfw-pm at pm.org Subject: [DFW.pm] Changing colors in a gif using cgi How do I change colors in a gif using cgi or perl? In other words how do I read a file in binary or hex, change some bits or bytes, and write it back? A very simple file is attached if you want to use it. My long-term goal is to start with all black, then blacken every color except, say, a00000 to afffff, then everything except, say, 200000 to 2fffff AND a00000 to afffff, etc., until the user can guess what the picture is. Jerry Kassebaum -------------- next part -------------- An HTML attachment was scrubbed... URL: From Ron.Bailey at marcgroup.com Mon Jan 7 05:59:01 2013 From: Ron.Bailey at marcgroup.com (Bailey, Ron) Date: Mon, 7 Jan 2013 13:59:01 +0000 Subject: [DFW.pm] Meeting time In-Reply-To: References: <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> Message-ID: <325B994FCFDA664FAFF4D164405850CBA3E4F1@S2376M10.CDSmail.pvt> I?m glad to see there are some meetings. I look forward to attending. I will miss this one because of out of town guests, but I?ll catch y?all next time Ron From: Dfw-pm [mailto:dfw-pm-bounces+ron.bailey=marcgroup.com at pm.org] On Behalf Of John Fields Sent: Friday, January 04, 2013 5:17 PM To: dfw-pm at pm.org Subject: Re: [DFW.pm] Meeting time 7pm. :) On Jan 4, 2013 5:00 PM, "Daniel Moore" > wrote: Hi, What time is the Perl Mongers meeting on the 9th? Thanks, Daniel Moore _______________________________________________ Dfw-pm mailing list Dfw-pm at pm.org http://mail.pm.org/mailman/listinfo/dfw-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From ehall at mindbrix.com Mon Jan 7 06:22:33 2013 From: ehall at mindbrix.com (Eric Hall [MBX]) Date: Mon, 7 Jan 2013 08:22:33 -0600 Subject: [DFW.pm] Announcing the upcoming Perl Mongers Meeting In-Reply-To: <50E71964.9010308@internetalias.net> References: <50E71964.9010308@internetalias.net> Message-ID: Would it be worth attending without a laptop? I am do not currently have one in a working state. Eric Hall (817) 788-4486 From: Dfw-pm [mailto:dfw-pm-bounces+ehall=mindbrix.com at pm.org] On Behalf Of Tommy Butler Sent: Friday, January 04, 2013 12:03 PM To: DFW.pm Subject: [DFW.pm] Announcing the upcoming Perl Mongers Meeting Yes folks, this Wednesday the 9th we "Git" to it! Bring your laptop and come prepared to use/learn git; if you haven't used it yet, I promise it's not as hard as you might be expecting. Please download and install a git client on your machine *before* you come, as installation of git is not part of the itinerary. We'll be using command-line git and github to kick off our collaborative project, so even if you won't be coding or patching, this is your chance to come face to face with Linus Torvalds' "Information Manager From Hell" and gain a decent level of mastery of this essential development tool. Experience with git will be a pretty feather in your hat, a useful gadget in your utility belt, and a nice bullet on your resume (profit!) It will be the way we share information and code in our own DFW.pm projects (fun!) As a bonus, we'll also be showing a recording of Randal Schwartz's own presentation on Git. The great Randal Schwartz literally wrote the book on Perl, so this is a night you won't want to miss. Location 2995 Ladybird Lane, Dallas, TX www.dallasmakerspace.org (214)699-6537 -- Tommy Butler -------------- next part -------------- An HTML attachment was scrubbed... URL: From dfwpm at internetalias.net Mon Jan 7 17:08:57 2013 From: dfwpm at internetalias.net (Tommy Butler) Date: Mon, 07 Jan 2013 19:08:57 -0600 Subject: [DFW.pm] Announcing the upcoming Perl Mongers Meeting In-Reply-To: References: <50E71964.9010308@internetalias.net> Message-ID: <50EB71A9.7060207@internetalias.net> Well I should certainly expect so! Even without a laptop, we will be using a projector so you can follow along. I'm sure like myself there will be others willing to share their screens ;-) --Tommy Butler /"Perl follows the principle of least astonishment"/ On 01/07/2013 08:22 AM, Eric Hall [MBX] wrote: > > Would it be worth attending without a laptop? I am do not currently > have one in a working state. > > > > Eric Hall > > (817) 788-4486 > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dfwpm at internetalias.net Mon Jan 7 17:11:54 2013 From: dfwpm at internetalias.net (Tommy Butler) Date: Mon, 07 Jan 2013 19:11:54 -0600 Subject: [DFW.pm] Meeting time In-Reply-To: <325B994FCFDA664FAFF4D164405850CBA3E4F1@S2376M10.CDSmail.pvt> References: <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> <325B994FCFDA664FAFF4D164405850CBA3E4F1@S2376M10.CDSmail.pvt> Message-ID: <50EB725A.5040809@internetalias.net> Ron, you will be missed! Look forward to seeing you next month. --Tommy Butler /"You are not your code" --Randall Schwartz/ On 01/07/2013 07:59 AM, Bailey, Ron wrote: > > I?m glad to see there are some meetings. I look forward to > attending. I will miss this one because of out of town guests, but > I?ll catch y?all next time > > > > Ron > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kassebaumj at hotmail.com Tue Jan 8 14:16:29 2013 From: kassebaumj at hotmail.com (Jerry Kassebaum) Date: Tue, 8 Jan 2013 16:16:29 -0600 Subject: [DFW.pm] Changing colors in a gif using cgi In-Reply-To: <14ADD05DFE5878488032557AB7BE90E63E9EB63F@BY2PRD0510MB365.namprd05.prod.outlook.com> References: , , <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com>, , <14ADD05DFE5878488032557AB7BE90E63E9EB63F@BY2PRD0510MB365.namprd05.prod.outlook.com> Message-ID: How can I use Perl to read a non-text file in hex, change a few individual bytes, and write it back? Would this work to change a gif or png, or would I have to go down to binary? I appreciate the ImageMagic answer I received before, and may have to resort to that, but I would prefer to work with pure Perl without loading a module. Surely there is a simple way to read/write a file byte by byte? Jerry Kassebaum -------------- next part -------------- An HTML attachment was scrubbed... URL: From brentlavelle at yahoo.com Tue Jan 8 14:27:45 2013 From: brentlavelle at yahoo.com (Brent LaVelle) Date: Tue, 8 Jan 2013 14:27:45 -0800 (PST) Subject: [DFW.pm] Changing colors in a gif using cgi In-Reply-To: References: , , <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com>, , <14ADD05DFE5878488032557AB7BE90E63E9EB63F@BY2PRD0510MB365.namprd05.prod.outlook.com> Message-ID: <1357684065.7889.YahooMailNeo@web142402.mail.bf1.yahoo.com> Perl reads and writes non-text files. ?To deal with this data in hex look at pack and unpack. ________________________________ From: Jerry Kassebaum To: dfw-pm at pm.org Sent: Tuesday, January 8, 2013 4:16 PM Subject: [DFW.pm] Changing colors in a gif using cgi How can I use Perl to read a non-text file in hex, change a few individual bytes, and write it back? Would this work to change a gif or png, or would I have to go down to binary? I appreciate the ImageMagic answer I received before, and may have to resort to that, but I would prefer to work with pure Perl without loading a module. Surely there is a simple way to read/write a file byte by byte? Jerry Kassebaum _______________________________________________ Dfw-pm mailing list Dfw-pm at pm.org http://mail.pm.org/mailman/listinfo/dfw-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: From mr.muskrat at gmail.com Tue Jan 8 14:31:56 2013 From: mr.muskrat at gmail.com (Matthew Musgrove) Date: Tue, 8 Jan 2013 16:31:56 -0600 Subject: [DFW.pm] Changing colors in a gif using cgi In-Reply-To: References: <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> <14ADD05DFE5878488032557AB7BE90E63E9EB63F@BY2PRD0510MB365.namprd05.prod.outlook.com> Message-ID: Jerry, You can?t just change a few bytes in an image file and be done with it. If you don?t want to use a module, then you?ll need to be well versed in the various image file formats before you can ever start coding. Otherwise you won?t know what bits to look for, much less what values to use to get the change you are interested in. Matt Matt On Tue, Jan 8, 2013 at 4:16 PM, Jerry Kassebaum wrote: > How can I use Perl to read a non-text file in hex, change a few > individual bytes, and write it back? Would this work to change a gif or > png, or would I have to go down to binary? > > I appreciate the ImageMagic answer I received before, and may have to > resort to that, but I would prefer to work with pure Perl without loading a > module. Surely there is a simple way to read/write a file byte by byte? > > > Jerry Kassebaum > > > _______________________________________________ > Dfw-pm mailing list > Dfw-pm at pm.org > http://mail.pm.org/mailman/listinfo/dfw-pm > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dfwpm at internetalias.net Tue Jan 8 17:47:57 2013 From: dfwpm at internetalias.net (Tommy Butler) Date: Tue, 08 Jan 2013 19:47:57 -0600 Subject: [DFW.pm] Changing colors in a gif using cgi In-Reply-To: References: <2CFE0A47-5F78-4BF9-95F8-469E70AAE38B@gmail.com> <14ADD05DFE5878488032557AB7BE90E63E9EB63F@BY2PRD0510MB365.namprd05.prod.outlook.com> Message-ID: <50ECCC4D.8030708@internetalias.net> Adding to what Matt just said, once you've handled the issues he just explained, you'll be needing sysopen(), sysseek(), sysread(), and syswrite(). Regular Perl IO won't work for you. For image operations, I usually use the tried and true GD.pm Without understanding your reasons for eschewing the use of modules in your work on this particular project (while respecting your reasons all the same), I'd like to just make some generalized points that a surprising many Perl users sadly do not know. Please don't take it as an insult if you already know these things, as I make the following statements for the benefit of the group as a whole: While using modules is sometimes not an option-- for example you may be working on something in a company with servers where you're not allowed to install things-- it's no sign of weakness to take advantage of everything Perl has to offer and try out a module. Using the CPAN is a hallmark of a strong Perl programmer, in the general opinion of the Perl community over the years. The graphics modules we've discussed are written in C and are very fast. You incur near zero penalty for using such libraries, which are also optimized to work faster and more efficiently at their specific tasks than what you'd be doing on your own. Unless you have a very compelling reason to do otherwise, Perl and its community always recommend not to reinvent the wheel when the option is on the table to use its (very) nice CPAN wheels for free. If it's a learning experience you seek, it's also of benefit to look at the source code of these CPAN modules so you can see how others are doing what you'd like to do on your own. I always start looking at http://search.cpan.org Hope to see you at the meeting tomorrow night! --Tommy Butler On 01/08/2013 04:31 PM, Matthew Musgrove wrote: > > Jerry, > > You can?t just change a few bytes in an image file and be done with > it. If you don?t want to use a module, then you?ll need to be well > versed in the various image file formats before you can ever start > coding. Otherwise you won?t know what bits to look for, much less what > values to use to get the change you are interested in. > > > > Matt > > > > On Tue, Jan 8, 2013 at 4:16 PM, Jerry Kassebaum > > wrote: > > How can I use Perl to read a non-text file in hex, change a few > individual bytes, and write it back? Would this work to change a > gif or png, or would I have to go down to binary? > > I appreciate the ImageMagic answer I received before, and may have > to resort to that, but I would prefer to work with pure Perl > without loading a module. Surely there is a simple way to > read/write a file byte by byte? > > > Jerry Kassebaum > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rflach at corp.hrsmart.com Wed Jan 9 18:38:06 2013 From: rflach at corp.hrsmart.com (Robert Flach) Date: Thu, 10 Jan 2013 02:38:06 +0000 Subject: [DFW.pm] Organization on github Message-ID: <14ADD05DFE5878488032557AB7BE90E63E9EDE55@BY2PRD0510MB365.namprd05.prod.outlook.com> Does it make sense to create a dfw_pm organization in github and keep the dfw.pm group projects (at least the website) under that organizational umbrella? (or does one already exist?) -------------- next part -------------- An HTML attachment was scrubbed... URL: From rflach at corp.hrsmart.com Wed Jan 9 18:54:39 2013 From: rflach at corp.hrsmart.com (Robert Flach) Date: Thu, 10 Jan 2013 02:54:39 +0000 Subject: [DFW.pm] Organization on github In-Reply-To: <14ADD05DFE5878488032557AB7BE90E63E9EDE55@BY2PRD0510MB365.namprd05.prod.outlook.com> References: <14ADD05DFE5878488032557AB7BE90E63E9EDE55@BY2PRD0510MB365.namprd05.prod.outlook.com> Message-ID: <14ADD05DFE5878488032557AB7BE90E63E9EDE90@BY2PRD0510MB365.namprd05.prod.outlook.com> If anyone has to leave early the URL For the Schwartz vid is http://vimeo.com/35778382 Robert Flach -------------- next part -------------- An HTML attachment was scrubbed... URL: From pmichaud at pobox.com Wed Jan 9 19:47:16 2013 From: pmichaud at pobox.com (Patrick R. Michaud) Date: Wed, 9 Jan 2013 21:47:16 -0600 Subject: [DFW.pm] Organization on github In-Reply-To: <14ADD05DFE5878488032557AB7BE90E63E9EDE55@BY2PRD0510MB365.namprd05.prod.outlook.com> References: <14ADD05DFE5878488032557AB7BE90E63E9EDE55@BY2PRD0510MB365.namprd05.prod.outlook.com> Message-ID: <20130110034716.GA5430@pmichaud.com> Sorry I missed tonight's meeting -- couldn't make it. We use Github organizations for Perl 6, Rakudo, and Parrot, and they work extremely well IMO. I think it would be a really good idea to set up a dfw-pm organization there. Pm On Thu, Jan 10, 2013 at 02:38:06AM +0000, Robert Flach wrote: > > Does it make sense to create a dfw_pm organization in github and keep the > dfw.pm group projects (at least the website) under that organizational > umbrella?? (or does one already exist?) > ? > ? > _______________________________________________ > Dfw-pm mailing list > Dfw-pm at pm.org > http://mail.pm.org/mailman/listinfo/dfw-pm From mr.muskrat at gmail.com Wed Jan 30 13:27:20 2013 From: mr.muskrat at gmail.com (Matthew Musgrove) Date: Wed, 30 Jan 2013 15:27:20 -0600 Subject: [DFW.pm] do we have any perlmonks? In-Reply-To: <9A46BAF7-2486-4C08-82DC-1633717D036F@pobox.com> References: <50CA625C.3030106@internetalias.net> <20121214015527.GA9004@pmichaud.com> <50CB1C55.4020007@internetalias.net> <9A46BAF7-2486-4C08-82DC-1633717D036F@pobox.com> Message-ID: I'm late to the party... Just in case there was any doubt, my perlmonks ID is "Mr. Muskrat". Matt On Fri, Dec 14, 2012 at 8:27 AM, Graham Barr wrote: > Mine is gbarr although I have not > used perlmonks in ages > > On Dec 14, 2012, at 06:32 , Tommy Butler wrote: > > I guess I should have mentioned: my perlmonks ID is "Tommy > " > > -- > Tommy Butler > > On 12/13/2012 10:00 PM, Rob Eaglestone wrote: > > I'm "rje". > > On Thu, Dec 13, 2012 at 7:55 PM, Patrick R. Michaud wrote: > >> My perlmonks ID is "pmichaud". >> >> Pm >> >> On Thu, Dec 13, 2012 at 05:18:52PM -0600, Tommy Butler wrote: >> > Mongers, >> > >> > I like to keep a list of perlmonks that I have met. Are any of you >> monks? If >> > so, would you share your perlmonks ID with us? >> > >> > -- >> > Tommy Butler >> > > _______________________________________________ > Dfw-pm mailing list > Dfw-pm at pm.org > http://mail.pm.org/mailman/listinfo/dfw-pm > > > > _______________________________________________ > Dfw-pm mailing list > Dfw-pm at pm.org > http://mail.pm.org/mailman/listinfo/dfw-pm > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dfwpm at internetalias.net Wed Jan 30 13:29:40 2013 From: dfwpm at internetalias.net (Tommy Butler) Date: Wed, 30 Jan 2013 15:29:40 -0600 Subject: [DFW.pm] do we have any perlmonks? In-Reply-To: References: <50CA625C.3030106@internetalias.net> <20121214015527.GA9004@pmichaud.com> <50CB1C55.4020007@internetalias.net> <9A46BAF7-2486-4C08-82DC-1633717D036F@pobox.com> Message-ID: <510990C4.7030002@internetalias.net> Just for the record, you are also allowed to be late for meetings when you can't make it on time ;-) -- Tommy Butler On 01/30/2013 03:27 PM, Matthew Musgrove wrote: > I'm late to the party... > > Just in case there was any doubt, my perlmonks ID is "Mr. Muskrat". > > Matt > > > On Fri, Dec 14, 2012 at 8:27 AM, Graham Barr > wrote: > > Mine is gbarr although I > have not used perlmonks in ages > > On Dec 14, 2012, at 06:32 , Tommy Butler > wrote: > >> I guess I should have mentioned: my perlmonks ID is "Tommy >> " >> >> -- >> Tommy Butler >> >> On 12/13/2012 10:00 PM, Rob Eaglestone wrote: >>> I'm "rje". >>> >>> On Thu, Dec 13, 2012 at 7:55 PM, Patrick R. Michaud >>> > wrote: >>> >>> My perlmonks ID is "pmichaud". >>> >>> Pm >>> >>> On Thu, Dec 13, 2012 at 05:18:52PM -0600, Tommy Butler wrote: >>> > Mongers, >>> > >>> > I like to keep a list of perlmonks that I have met. Are >>> any of you monks? If >>> > so, would you share your perlmonks ID with us? >>> > >>> > -- >>> > Tommy Butler >>> -------------- next part -------------- An HTML attachment was scrubbed... URL: From mr.muskrat at gmail.com Wed Jan 30 13:32:54 2013 From: mr.muskrat at gmail.com (Matthew Musgrove) Date: Wed, 30 Jan 2013 15:32:54 -0600 Subject: [DFW.pm] do we have any perlmonks? In-Reply-To: <510990C4.7030002@internetalias.net> References: <50CA625C.3030106@internetalias.net> <20121214015527.GA9004@pmichaud.com> <50CB1C55.4020007@internetalias.net> <9A46BAF7-2486-4C08-82DC-1633717D036F@pobox.com> <510990C4.7030002@internetalias.net> Message-ID: Really? Cuz I showed up at 9 PM on Friday, January 11th and no one was there! :P Matt On Wed, Jan 30, 2013 at 3:29 PM, Tommy Butler wrote: > Just for the record, you are also allowed to be late for meetings when > you can't make it on time ;-) > > -- > Tommy Butler > > > On 01/30/2013 03:27 PM, Matthew Musgrove wrote: > > I'm late to the party... > > Just in case there was any doubt, my perlmonks ID is "Mr. Muskrat". > > Matt > > > On Fri, Dec 14, 2012 at 8:27 AM, Graham Barr wrote: > >> Mine is gbarr although I have not >> used perlmonks in ages >> >> On Dec 14, 2012, at 06:32 , Tommy Butler >> wrote: >> >> I guess I should have mentioned: my perlmonks ID is "Tommy >> " >> >> -- >> Tommy Butler >> >> On 12/13/2012 10:00 PM, Rob Eaglestone wrote: >> >> I'm "rje". >> >> On Thu, Dec 13, 2012 at 7:55 PM, Patrick R. Michaud wrote: >> >>> My perlmonks ID is "pmichaud". >>> >>> Pm >>> >>> On Thu, Dec 13, 2012 at 05:18:52PM -0600, Tommy Butler wrote: >>> > Mongers, >>> > >>> > I like to keep a list of perlmonks that I have met. Are any of you >>> monks? If >>> > so, would you share your perlmonks ID with us? >>> > >>> > -- >>> > Tommy Butler >>> >> > > _______________________________________________ > Dfw-pm mailing list > Dfw-pm at pm.org > http://mail.pm.org/mailman/listinfo/dfw-pm > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dfwpm at internetalias.net Wed Jan 30 14:25:40 2013 From: dfwpm at internetalias.net (Tommy Butler) Date: Wed, 30 Jan 2013 16:25:40 -0600 Subject: [DFW.pm] do we have any perlmonks? In-Reply-To: References: <50CA625C.3030106@internetalias.net> <20121214015527.GA9004@pmichaud.com> <50CB1C55.4020007@internetalias.net> <9A46BAF7-2486-4C08-82DC-1633717D036F@pobox.com> <510990C4.7030002@internetalias.net> Message-ID: <51099DE4.1010204@internetalias.net> Second Wednesday of every month, 7pm to 10-ish Glad you're following the list now ;~) -- Tommy Butler On 01/30/2013 03:32 PM, Matthew Musgrove wrote: > Really? Cuz I showed up at 9 PM on Friday, January 11th and no one was > there! > > :P > > Matt > > > On Wed, Jan 30, 2013 at 3:29 PM, Tommy Butler > wrote: > > Just for the record, you are also allowed to be late for meetings > when you can't make it on time ;-) > > -- > Tommy Butler > > > On 01/30/2013 03:27 PM, Matthew Musgrove wrote: >> I'm late to the party... >> >> Just in case there was any doubt, my perlmonks ID is "Mr. Muskrat". >> >> Matt >> >> >> On Fri, Dec 14, 2012 at 8:27 AM, Graham Barr > > wrote: >> >> Mine is gbarr although >> I have not used perlmonks in ages >> >> On Dec 14, 2012, at 06:32 , Tommy Butler >> > wrote: >> >>> I guess I should have mentioned: my perlmonks ID is "Tommy >>> " >>> >>> -- >>> Tommy Butler >>> >>> On 12/13/2012 10:00 PM, Rob Eaglestone wrote: >>>> I'm "rje". >>>> >>>> On Thu, Dec 13, 2012 at 7:55 PM, Patrick R. Michaud >>>> > wrote: >>>> >>>> My perlmonks ID is "pmichaud". >>>> >>>> Pm >>>> >>>> On Thu, Dec 13, 2012 at 05:18:52PM -0600, Tommy Butler >>>> wrote: >>>> > Mongers, >>>> > >>>> > I like to keep a list of perlmonks that I have met. >>>> Are any of you monks? If >>>> > so, would you share your perlmonks ID with us? >>>> > >>>> > -- >>>> > Tommy Butler >>>> -------------- next part -------------- An HTML attachment was scrubbed... URL: From mr.muskrat at gmail.com Wed Jan 30 14:28:25 2013 From: mr.muskrat at gmail.com (Matthew Musgrove) Date: Wed, 30 Jan 2013 16:28:25 -0600 Subject: [DFW.pm] do we have any perlmonks? In-Reply-To: <51099DE4.1010204@internetalias.net> References: <50CA625C.3030106@internetalias.net> <20121214015527.GA9004@pmichaud.com> <50CB1C55.4020007@internetalias.net> <9A46BAF7-2486-4C08-82DC-1633717D036F@pobox.com> <510990C4.7030002@internetalias.net> <51099DE4.1010204@internetalias.net> Message-ID: On Wed, Jan 30, 2013 at 4:25 PM, Tommy Butler wrote: > Second Wednesday of every month, 7pm to 10-ish > I know... It was a joke! I probably won't be able to make the meeting every month but we'll see how it goes. > > Glad you're following the list now ;~) > Thanks. > > -- > Tommy Butler > > > > On 01/30/2013 03:32 PM, Matthew Musgrove wrote: > > Really? Cuz I showed up at 9 PM on Friday, January 11th and no one was > there! > > :P > > Matt > > > On Wed, Jan 30, 2013 at 3:29 PM, Tommy Butler wrote: > >> Just for the record, you are also allowed to be late for meetings when >> you can't make it on time ;-) >> >> -- >> Tommy Butler >> >> >> On 01/30/2013 03:27 PM, Matthew Musgrove wrote: >> >> I'm late to the party... >> >> Just in case there was any doubt, my perlmonks ID is "Mr. Muskrat". >> >> Matt >> >> >> On Fri, Dec 14, 2012 at 8:27 AM, Graham Barr wrote: >> >>> Mine is gbarr although I have >>> not used perlmonks in ages >>> >>> On Dec 14, 2012, at 06:32 , Tommy Butler >>> wrote: >>> >>> I guess I should have mentioned: my perlmonks ID is "Tommy >>> " >>> >>> -- >>> Tommy Butler >>> >>> On 12/13/2012 10:00 PM, Rob Eaglestone wrote: >>> >>> I'm "rje". >>> >>> On Thu, Dec 13, 2012 at 7:55 PM, Patrick R. Michaud >> > wrote: >>> >>>> My perlmonks ID is "pmichaud". >>>> >>>> Pm >>>> >>>> On Thu, Dec 13, 2012 at 05:18:52PM -0600, Tommy Butler wrote: >>>> > Mongers, >>>> > >>>> > I like to keep a list of perlmonks that I have met. Are any of you >>>> monks? If >>>> > so, would you share your perlmonks ID with us? >>>> > >>>> > -- >>>> > Tommy Butler >>>> >>> > _______________________________________________ > Dfw-pm mailing list > Dfw-pm at pm.org > http://mail.pm.org/mailman/listinfo/dfw-pm > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dfwpm at internetalias.net Wed Jan 30 14:32:40 2013 From: dfwpm at internetalias.net (Tommy Butler) Date: Wed, 30 Jan 2013 16:32:40 -0600 Subject: [DFW.pm] do we have any perlmonks? In-Reply-To: References: <50CA625C.3030106@internetalias.net> <20121214015527.GA9004@pmichaud.com> <50CB1C55.4020007@internetalias.net> <9A46BAF7-2486-4C08-82DC-1633717D036F@pobox.com> <510990C4.7030002@internetalias.net> <51099DE4.1010204@internetalias.net> Message-ID: <51099F88.10802@internetalias.net> 01/10 ... whizzed right by me. Lolz. -- Tommy Butler On 01/30/2013 04:28 PM, Matthew Musgrove wrote: > > On Wed, Jan 30, 2013 at 4:25 PM, Tommy Butler > wrote: > > Second Wednesday of every month, 7pm to 10-ish > > > I know... It was a joke! I probably won't be able to make the meeting > every month but we'll see how it goes. > > > > Glad you're following the list now ;~) > > > Thanks. > > > > -- > Tommy Butler > > > > On 01/30/2013 03:32 PM, Matthew Musgrove wrote: >> Really? Cuz I showed up at 9 PM on Friday, January 11th and no >> one was there! >> >> :P >> >> Matt >> >> >> On Wed, Jan 30, 2013 at 3:29 PM, Tommy Butler >> > wrote: >> >> Just for the record, you are also allowed to be late for >> meetings when you can't make it on time ;-) >> >> -- >> Tommy Butler >> >> >> On 01/30/2013 03:27 PM, Matthew Musgrove wrote: >>> I'm late to the party... >>> >>> Just in case there was any doubt, my perlmonks ID is "Mr. >>> Muskrat". >>> >>> Matt >>> >>> >>> On Fri, Dec 14, 2012 at 8:27 AM, Graham Barr >>> > wrote: >>> >>> Mine is gbarr >>> although I have >>> not used perlmonks in ages >>> >>> On Dec 14, 2012, at 06:32 , Tommy Butler >>> >> > wrote: >>> >>>> I guess I should have mentioned: my perlmonks ID is >>>> "Tommy " >>>> >>>> -- >>>> Tommy Butler >>>> >>>> On 12/13/2012 10:00 PM, Rob Eaglestone wrote: >>>>> I'm "rje". >>>>> >>>>> On Thu, Dec 13, 2012 at 7:55 PM, Patrick R. Michaud >>>>> > wrote: >>>>> >>>>> My perlmonks ID is "pmichaud". >>>>> >>>>> Pm >>>>> >>>>> On Thu, Dec 13, 2012 at 05:18:52PM -0600, Tommy >>>>> Butler wrote: >>>>> > Mongers, >>>>> > >>>>> > I like to keep a list of perlmonks that I have >>>>> met. Are any of you monks? If >>>>> > so, would you share your perlmonks ID with us? >>>>> > >>>>> > -- >>>>> > Tommy Butler >>>>> -------------- next part -------------- An HTML attachment was scrubbed... URL: From cjcervenka at yahoo.com Wed Jan 30 14:40:54 2013 From: cjcervenka at yahoo.com (Clement Cervenka) Date: Wed, 30 Jan 2013 14:40:54 -0800 (PST) Subject: [DFW.pm] do we have any perlmonks? In-Reply-To: References: <50CA625C.3030106@internetalias.net> <20121214015527.GA9004@pmichaud.com> <50CB1C55.4020007@internetalias.net> <9A46BAF7-2486-4C08-82DC-1633717D036F@pobox.com> <510990C4.7030002@internetalias.net> <51099DE4.1010204@internetalias.net> Message-ID: <1359585654.56021.YahooMailNeo@web161206.mail.bf1.yahoo.com> ? Hi, I've just finished this list, throught that you might want to plan ahead (no meeting,start saving money) now its all sequals for?the movies, an consoles boxs as well, note ps4 & xboy 4 are hi res & 3d res &?video steading (netflixs etc)?WEIGHT FOR IT, PS4 MIGHT GO ONLINE, NO FREEBIES?;))?EVEN BETTER,?AT?NOT BEING BACKWARDS COMPATABLE WITH EARLY DISCS LOL, LOL ? Feb 14 A Good Day To Die Hard-5 March 29 GI Joe-Retaliation-2 May 3 Iron Man-3 17 Star Trek-Into Darkness-12 24 Fast & Furious-6 Hangover-3 Pirates Of The Caribbean-5 June 14 Man Of Steel-7 21 Monsters University-2 July 3 The Long Ranger Despicable Me-2 26 The Wolverine-6 31 The Smurfs-2 Aug 9 Robo Cop 16 Percy Jackson-Sea Of Monsters-2 Oct 25 Paranormal Activity-5 Nov 8 Thor:The Dark World-2 22 The Hunger Games-Catching Fire-2 Dec 13 The Hobbit-The Desolation Of Smaug-2 20 Muppets Movie 20 Anchorman:The Legend Continues (Ron Burgundy)-2 25 Jack Ryan (Bourne Legacy)-5 ? Grand Theft Auto-5 MechWarrior Tactics The Sims 3:Island Paradise The Sims 3:University Life Final Fantasy XIV Online-14 Star Craft 2:Legacy Of The Void-2 Tom Clancy's Ghost Recon Tom Clancy's Rainbow 6:Patriots-6 February 19 Metal Gear Rising:Revengeance March 5 SimCity Tomb Raider God of War:Ascension Star Craft 2:Heart Of The Swarm-2 Gears Of War:Judgment Resident Evil-6 May 21Resident Evil:Revelations August 20 Tom Clancy's Splinter Cell:Blacklist ? Wii U Panorama View Nintendo?s Game Boy Advance Console Xbox 720-4 (Microsoft's Internal Codename Is Durango/Kryptos) Playstation-PS-4 ( Sony?s Internal Codename Is Orbis/Thebes) (Sony's E3 2013 Press Conference In Los Angeles Between 11-13 June 2013) ________________________________ From: Matthew Musgrove To: dfw-pm at pm.org Sent: Wednesday, January 30, 2013 4:28 PM Subject: Re: [DFW.pm] do we have any perlmonks? On Wed, Jan 30, 2013 at 4:25 PM, Tommy Butler wrote: Second Wednesday of every month, 7pm to 10-ish > I know... It was a joke! I probably won't be able to make the meeting every month but we'll see how it goes. ? >Glad you're following the list now? ;~) > Thanks. ? >-- >Tommy Butler > > > >On 01/30/2013 03:32 PM, Matthew Musgrove wrote: >Really? Cuz I showed up at 9 PM on Friday, January 11th and no one was there! >> >>:P >> >> >> >>Matt >> >> >>On Wed, Jan 30, 2013 at 3:29 PM, Tommy Butler wrote: >> >>Just for the record, you are also allowed to be late for meetings when you can't make it on time ;-) >>> >>>-- >>>Tommy Butler >>> >>> >>>On 01/30/2013 03:27 PM, Matthew Musgrove wrote: >>>I'm late to the party... >>>> >>>>Just in case there was any doubt, my perlmonks ID is "Mr. Muskrat". >>>> >>>> >>>> >>>>Matt >>>> >>>> >>>>On Fri, Dec 14, 2012 at 8:27 AM, Graham Barr wrote: >>>> >>>>Mine is?gbarr?although I have not used perlmonks in ages >>>>> >>>>> >>>>>On Dec 14, 2012, at 06:32 , Tommy Butler wrote: >>>>> >>>>>I guess I should have mentioned: my perlmonks ID is "Tommy" >>>>>> >>>>>>-- >>>>>>Tommy Butler >>>>>> >>>>>>On 12/13/2012 10:00 PM, Rob Eaglestone wrote: >>>>>>I'm "rje". >>>>>>> >>>>>>> >>>>>>>On Thu, Dec 13, 2012 at 7:55 PM, Patrick R. Michaud wrote: >>>>>>> >>>>>>>My perlmonks ID is "pmichaud". >>>>>>>> >>>>>>>>Pm >>>>>>>> >>>>>>>>On Thu, Dec 13, 2012 at 05:18:52PM -0600, Tommy Butler wrote: >>>>>>>>> Mongers, >>>>>>>>> >>>>>>>>> I like to keep a list of perlmonks that I have met.? Are any of you monks?? If >>>>>>>>> so, would you share your perlmonks ID with us? >>>>>>>>> >>>>>>>>> -- >>>>>>>>> Tommy Butler >>>>>>>> >_______________________________________________ >Dfw-pm mailing list >Dfw-pm at pm.org >http://mail.pm.org/mailman/listinfo/dfw-pm > > _______________________________________________ Dfw-pm mailing list Dfw-pm at pm.org http://mail.pm.org/mailman/listinfo/dfw-pm -------------- next part -------------- An HTML attachment was scrubbed... URL: