From mikeflan at att.net Sun Oct 4 08:54:20 2009 From: mikeflan at att.net (Mike Flannigan) Date: Sun, 04 Oct 2009 09:54:20 -0600 Subject: [pm-h] Change character code 160 to 32 Message-ID: <4AC8C52C.6090806@att.net> I want to change character code 160 to character code 32 throughout a bunch of text files. I'm using this right now s/(.)/ord($1) == '160' ? chr(32) : $1 /eg; and it works, but I don't like it much. If anybody has another way they like better, I'd appreciate seeing it. It does not have to be a reg exp. Anybody know why this doesn't work? tr/\160/\32/d; Oddly it replaces 'p' (character code 80) with character code 26??? Mike Flannigan From kevin at shaum.com Sun Oct 4 12:04:05 2009 From: kevin at shaum.com (Kevin Shaum) Date: Sun, 4 Oct 2009 14:04:05 -0500 Subject: [pm-h] Change character code 160 to 32 In-Reply-To: <4AC8C52C.6090806@att.net> References: <4AC8C52C.6090806@att.net> Message-ID: \ddd escape codes use octal numbers, not decimal. On Sun, Oct 4, 2009 at 10:54 AM, Mike Flannigan wrote: > > I want to change character code 160 to character > code 32 throughout a bunch of text files. ?I'm using > this right now > s/(.)/ord($1) == '160' ? chr(32) : $1 /eg; > and it works, but I don't like it much. ?If anybody > has another way they like better, I'd appreciate > seeing it. ?It does not have to be a reg exp. > > Anybody know why this doesn't work? > tr/\160/\32/d; > Oddly it replaces 'p' (character code 80) with > character code 26??? -- Kevin Shaum http://friendfeed.com/kevinshaum From mikeflan at att.net Sun Oct 4 13:21:35 2009 From: mikeflan at att.net (Mike Flannigan) Date: Sun, 04 Oct 2009 14:21:35 -0600 Subject: [pm-h] Change character code 160 to 32 In-Reply-To: <4AC8C52C.6090806@att.net> References: <4AC8C52C.6090806@att.net> Message-ID: <4AC903CF.1020507@att.net> Mike Flannigan wrote: > > I want to change character code 160 to character > code 32 throughout a bunch of text files. I'm using > this right now > s/(.)/ord($1) == '160' ? chr(32) : $1 /eg; > and it works, but I don't like it much. If anybody > has another way they like better, I'd appreciate > seeing it. It does not have to be a reg exp. > > Anybody know why this doesn't work? > tr/\160/\32/d; > Oddly it replaces 'p' (character code 80) with > character code 26??? This works: tr/\xA0/\x20/ Apparently that is hexidecimal notation. Mike From toddr at null.net Tue Oct 6 07:34:32 2009 From: toddr at null.net (Todd Rinaldo) Date: Tue, 6 Oct 2009 09:34:32 -0500 Subject: [pm-h] Change character code 160 to 32 In-Reply-To: <4AC903CF.1020507@att.net> References: <4AC8C52C.6090806@att.net> <4AC903CF.1020507@att.net> Message-ID: <748c25c20910060734n3af56680td7a737c35f4f4a5a@mail.gmail.com> On Sun, Oct 4, 2009 at 3:21 PM, Mike Flannigan wrote: > > Mike Flannigan wrote: >> >> I want to change character code 160 to character >> code 32 throughout a bunch of text files. ?I'm using >> this right now >> s/(.)/ord($1) == '160' ? chr(32) : $1 /eg; >> and it works, but I don't like it much. ?If anybody >> has another way they like better, I'd appreciate >> seeing it. ?It does not have to be a reg exp. >> >> Anybody know why this doesn't work? >> tr/\160/\32/d; >> Oddly it replaces 'p' (character code 80) with >> character code 26??? > > > This works: > > tr/\xA0/\x20/ > > Apparently that is hexidecimal notation. > > > Mike Mike, I ran across this as a more broad solution in my code. It leverages the POSIX printable character set. The below will replace all non-printable characters with "." s/\P{IsPrint}/./g; Todd From mikeflan at att.net Tue Oct 6 17:11:05 2009 From: mikeflan at att.net (Mike Flannigan) Date: Tue, 06 Oct 2009 18:11:05 -0600 Subject: [pm-h] Change character code 160 to 32 In-Reply-To: <748c25c20910060734n3af56680td7a737c35f4f4a5a@mail.gmail.com> References: <4AC8C52C.6090806@att.net> <4AC903CF.1020507@att.net> <748c25c20910060734n3af56680td7a737c35f4f4a5a@mail.gmail.com> Message-ID: <4ACBDC99.9050706@att.net> Todd Rinaldo wrote: > Mike, I ran across this as a more broad solution in my code. It > leverages the POSIX printable character set. > > The below will replace all non-printable characters with "." > s/\P{IsPrint}/./g; > > Todd Thanks. I appreciate it. Mike From gwadej at anomaly.org Wed Oct 7 16:01:57 2009 From: gwadej at anomaly.org (G. Wade Johnson) Date: Wed, 7 Oct 2009 18:01:57 -0500 Subject: [pm-h] Poll about meeting time Message-ID: <20091007180157.4d5c17b2@sovvan> I've set up a meeting poll on doodle.com to try to select a new meeting time. The poll is available at: http://doodle.com/2rcyqxxxnsgnscd6 Although the poll is set up for November, think of it more as a template for a month: Nov. 2-6 => 1st week Nov. 9-13 => 2nd week and so on You can select values of Yes, No, or Maybe for each specified time. If you've wanted to come to the meetings, but couldn't make it because of the time, this is a good way to make your preferences heard. We will also be moving the meetings out of downtown, sometime in the near future. You do not need to sign up for the service, but it does ask for a nickname when you enter your votes. This mainly serves to separate the votes and give us a way to talk about them. Unless there's a major protest, I'll probably close the poll a week from Friday. I hope to hear from you. G. Wade -- They made a very satisfying thump when they hit the floor. -- G'Kar - "A Late Delivery from Avalon" From gwadej at anomaly.org Wed Oct 7 16:09:14 2009 From: gwadej at anomaly.org (G. Wade Johnson) Date: Wed, 7 Oct 2009 18:09:14 -0500 Subject: [pm-h] Meeting Next Tuesday Message-ID: <20091007180914.45c5e1b9@sovvan> Our regularly scheduled Houston.pm meeting is next Tuesday. Robert Boone will lead a discussion on Chapter 1 of Higher Order Perl, Recursion. If you are interested in the HOP book, or would just like to chat with other members, this will be the place to be. We may need to move the meeting this week. We're attempting to nail down the details right now. We'll let everyone know by Friday. Also, if you are interested in the Dimdim remote meeting approach, let the list know so we can make sure to have everything set up on the meeting day. Hope to see you all there. G. Wade -- Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. -- Brian W. Kernighan From will.willis at gmail.com Wed Oct 7 16:22:23 2009 From: will.willis at gmail.com (Will Willis) Date: Wed, 7 Oct 2009 18:22:23 -0500 Subject: [pm-h] Poll about meeting time In-Reply-To: <6ee1e6090910071621i4dc9d455gb5bedf2407d00f2@mail.gmail.com> References: <20091007180157.4d5c17b2@sovvan> <6ee1e6090910071621i4dc9d455gb5bedf2407d00f2@mail.gmail.com> Message-ID: <6ee1e6090910071622n21aab51y477384d4e67697fc@mail.gmail.com> Should we assume that the am's are pm's? ;) On Oct 7, 2009 6:02 PM, "G. Wade Johnson" wrote: I've set up a meeting poll on doodle.com to try to select a new meeting time. The poll is available at: http://doodle.com/2rcyqxxxnsgnscd6 Although the poll is set up for November, think of it more as a template for a month: Nov. 2-6 => 1st week Nov. 9-13 => 2nd week and so on You can select values of Yes, No, or Maybe for each specified time. If you've wanted to come to the meetings, but couldn't make it because of the time, this is a good way to make your preferences heard. We will also be moving the meetings out of downtown, sometime in the near future. You do not need to sign up for the service, but it does ask for a nickname when you enter your votes. This mainly serves to separate the votes and give us a way to talk about them. Unless there's a major protest, I'll probably close the poll a week from Friday. I hope to hear from you. G. Wade -- They made a very satisfying thump when they hit the floor. -- G'Kar - "A Late Delivery from Avalon" _______________________________________________ Houston mailing list Houston at pm.org http://mail.pm.org/mailman/listinfo/houston Website: http://houston.pm.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mikeflan at att.net Wed Oct 7 17:35:42 2009 From: mikeflan at att.net (Mike Flannigan) Date: Wed, 07 Oct 2009 18:35:42 -0600 Subject: [pm-h] Meeting Next Tuesday In-Reply-To: <20091007180914.45c5e1b9@sovvan> References: <20091007180914.45c5e1b9@sovvan> Message-ID: <4ACD33DE.4050008@att.net> I may do the DimDim without the long distance call, even though that is not very good. Mike G. Wade Johnson wrote: > Our regularly scheduled Houston.pm meeting is next Tuesday. Robert > Boone will lead a discussion on Chapter 1 of Higher Order Perl, > Recursion. > > If you are interested in the HOP book, or would just like to chat with > other members, this will be the place to be. > > We may need to move the meeting this week. We're attempting to nail > down the details right now. We'll let everyone know by Friday. > > Also, if you are interested in the Dimdim remote meeting approach, let > the list know so we can make sure to have everything set up on the > meeting day. > > Hope to see you all there. > G. Wade > From gwadej at anomaly.org Wed Oct 7 16:45:00 2009 From: gwadej at anomaly.org (G. Wade Johnson) Date: Wed, 7 Oct 2009 18:45:00 -0500 Subject: [pm-h] Poll about meeting time In-Reply-To: <6ee1e6090910071622n21aab51y477384d4e67697fc@mail.gmail.com> References: <20091007180157.4d5c17b2@sovvan> <6ee1e6090910071621i4dc9d455gb5bedf2407d00f2@mail.gmail.com> <6ee1e6090910071622n21aab51y477384d4e67697fc@mail.gmail.com> Message-ID: <20091007184500.25e67115@sovvan> On Wed, 7 Oct 2009 18:22:23 -0500 Will Willis wrote: > Should we assume that the am's are pm's? ;) Darn. Yes, it's supposed to be pm. I didn't specify when I set it up and the poll interpreted it to be am. G. Wade > On Oct 7, 2009 6:02 PM, "G. Wade Johnson" wrote: > > I've set up a meeting poll on doodle.com to try to select a new > meeting time. The poll is available at: > http://doodle.com/2rcyqxxxnsgnscd6 > > Although the poll is set up for November, think of it more as a > template for a month: > > Nov. 2-6 => 1st week > Nov. 9-13 => 2nd week > and so on > > You can select values of Yes, No, or Maybe for each specified time. > > If you've wanted to come to the meetings, but couldn't make it because > of the time, this is a good way to make your preferences heard. > > We will also be moving the meetings out of downtown, sometime in the > near future. > > You do not need to sign up for the service, but it does ask for a > nickname when you enter your votes. This mainly serves to separate the > votes and give us a way to talk about them. > > Unless there's a major protest, I'll probably close the poll a week > from Friday. > > I hope to hear from you. > G. Wade > -- > They made a very satisfying thump when they hit the floor. > -- G'Kar - "A Late Delivery from Avalon" > _______________________________________________ > Houston mailing list > Houston at pm.org > http://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ -- $HOME is where your dotfiles are. -- Gym Quirk From toddr at null.net Wed Oct 7 18:39:52 2009 From: toddr at null.net (Todd Rinaldo) Date: Wed, 7 Oct 2009 20:39:52 -0500 Subject: [pm-h] Poll about meeting time In-Reply-To: <20091007180157.4d5c17b2@sovvan> References: <20091007180157.4d5c17b2@sovvan> Message-ID: <748c25c20910071839u7954e355xba14850fd2fecb93@mail.gmail.com> On Wed, Oct 7, 2009 at 6:01 PM, G. Wade Johnson wrote: > I've set up a meeting poll on doodle.com to try to select a new meeting > time. The poll is available at: http://doodle.com/2rcyqxxxnsgnscd6 > > Although the poll is set up for November, think of it more as a > template for a month: > > Nov. ?2-6 => 1st week > Nov. 9-13 => 2nd week > ?and so on > > You can select values of Yes, No, or Maybe for each specified time. > > If you've wanted to come to the meetings, but couldn't make it because > of the time, this is a good way to make your preferences heard. > > We will also be moving the meetings out of downtown, sometime in the > near future. > > You do not need to sign up for the service, but it does ask for a > nickname when you enter your votes. This mainly serves to separate the > votes and give us a way to talk about them. > > Unless there's a major protest, I'll probably close the poll a week > from Friday. > > I hope to hear from you. I put my poll in. Will, it looks like you're really only open once a month? From will.willis at gmail.com Wed Oct 7 19:46:17 2009 From: will.willis at gmail.com (Will Willis) Date: Wed, 7 Oct 2009 21:46:17 -0500 Subject: [pm-h] Poll about meeting time In-Reply-To: <748c25c20910071839u7954e355xba14850fd2fecb93@mail.gmail.com> References: <20091007180157.4d5c17b2@sovvan> <748c25c20910071839u7954e355xba14850fd2fecb93@mail.gmail.com> Message-ID: <6ee1e6090910071946s5831eb20p3d0e9f81663be33@mail.gmail.com> @todd, I was just throwing in my vote for "the 2nd tuesday thing works ok for me". but looking at the results now I see that I cast my vote for a friday :( I'll try again tomorrow with my schedule in front of me. -Will On Wed, Oct 7, 2009 at 8:39 PM, Todd Rinaldo wrote: > On Wed, Oct 7, 2009 at 6:01 PM, G. Wade Johnson > wrote: > > I've set up a meeting poll on doodle.com to try to select a new meeting > > time. The poll is available at: http://doodle.com/2rcyqxxxnsgnscd6 > > > > Although the poll is set up for November, think of it more as a > > template for a month: > > > > Nov. 2-6 => 1st week > > Nov. 9-13 => 2nd week > > and so on > > > > You can select values of Yes, No, or Maybe for each specified time. > > > > If you've wanted to come to the meetings, but couldn't make it because > > of the time, this is a good way to make your preferences heard. > > > > We will also be moving the meetings out of downtown, sometime in the > > near future. > > > > You do not need to sign up for the service, but it does ask for a > > nickname when you enter your votes. This mainly serves to separate the > > votes and give us a way to talk about them. > > > > Unless there's a major protest, I'll probably close the poll a week > > from Friday. > > > > I hope to hear from you. > > I put my poll in. Will, it looks like you're really only open once a month? > _______________________________________________ > Houston mailing list > Houston at pm.org > http://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gwadej at anomaly.org Fri Oct 9 05:16:39 2009 From: gwadej at anomaly.org (G. Wade Johnson) Date: Fri, 9 Oct 2009 07:16:39 -0500 Subject: [pm-h] Tuesday's Meeting Message-ID: <20091009071639.1ed02fcf@sovvan> We will having Tuesday's meeting at the regular location: 1111 Fannin. See the website http://houston.pm.org/meetings.html for maps and details. We will also run the meeting through Dimdim as we have with the last few meetings. Feel free to join us remotely. (I'll send the meeting information to the mailing list this weekend.) In the next few months, we are considering another location for the meeting. This decision and the results of the poll (http://doodle.com/2rcyqxxxnsgnscd6) will determine when we will hold the meetings in the future. G. Wade -- The single most important rule of testing is to do it. -- Brian Kernighan and Rob Pike, "The Practice of Programming" From gwadej at anomaly.org Sun Oct 11 18:38:39 2009 From: gwadej at anomaly.org (G. Wade Johnson) Date: Sun, 11 Oct 2009 20:38:39 -0500 Subject: [pm-h] houston.pm has invited you to a Dimdim Web Meeting Message-ID: <20091011203839.68668961@sovvan> Dimdim Web Meeting Invitation Hello! houston.pm confirms your participation in a Dimdim event for October 13, 2009 06:20:PM CDT. To join the Dimdim event simply click here: https://webmeeting.dimdim.com/portal/JoinForm.action?confKey=houston.pm&email=gwadej at anomaly.org&asPresenter=false&meetingId=05cd44e8-56b9-44ce-864b-01531fe81d0d&attendeePwd= You can also join by entering the Meeting Room "houston.pm" at Dimdim.com at the time listed above. Meeting : Oct. Houston.pm Meeting Key: Dial In: 702-473-3463 Pass Code: 468786 Start: October 13, 2009 06:20:PM CDT (Add to Outlook) Schedule Ends At: Not Applicable This meeting happens only once Meeting Agenda: Robert Boone will lead a discussion on the Recursion section of Higher-Order Perl. Hint: You don't need to be a member of Dimdim to attend this meeting. It's easy to join and get started, Click here to sign up for Dimdim Free. But you may find it helpful to check your bandwidth and your A/V setup here. Sincerely, Your Dimdim Team *If the link above is broken (as can happen with some email systems) simply copy and paste the following URL into your browser address bar: https://webmeeting.dimdim.com/portal/JoinForm.action?confKey=houston.pm&email=gwadej at anomaly.org&asPresenter=false&meetingId=05cd44e8-56b9-44ce-864b-01531fe81d0d&attendeePwd= Note: Some email clients will split the above link into multiple lines. Please make sure you copy the entire link (all lines) to join your meeting. Copyright ? 2009 Dimdim. Meet freely. All Rights Reserved / Privacy Policy From will.willis at gmail.com Tue Oct 20 18:04:09 2009 From: will.willis at gmail.com (Will Willis) Date: Tue, 20 Oct 2009 20:04:09 -0500 Subject: [pm-h] November Meeting Time/Location Message-ID: <6ee1e6090910201804y1d9bdabej51dee23ea7cb9e21@mail.gmail.com> I will be on vacation the 2nd week of Nov. and will not be able to "host" our PM meeting at its usual time/location. I could host any weeknight the 1st week of November at our usual location. Or possibly have a 100% virtual meeting at our usual date and time... What were the results of the availability poll? Was there a good night for everyone? I'm open and flexible, just not on our usual date/time. Sorry to throw a wrench in the plans... I'm really looking forward to next month's topic. Will -------------- next part -------------- An HTML attachment was scrubbed... URL: From toddr at cpanel.net Wed Oct 21 06:13:07 2009 From: toddr at cpanel.net (Todd Rinaldo) Date: Wed, 21 Oct 2009 08:13:07 -0500 Subject: [pm-h] November Meeting Time/Location In-Reply-To: <6ee1e6090910201804y1d9bdabej51dee23ea7cb9e21@mail.gmail.com> References: <6ee1e6090910201804y1d9bdabej51dee23ea7cb9e21@mail.gmail.com> Message-ID: <9C81AE2B-E13D-4665-AF58-9A3C4AF66CF9@cpanel.net> On Oct 20, 2009, at 8:04 PM, Will Willis wrote: > I will be on vacation the 2nd week of Nov. and will not be able to > "host" our PM meeting at its usual time/location. > > I could host any weeknight the 1st week of November at our usual > location. Or possibly have a 100% virtual meeting at our usual date > and time... > > What were the results of the availability poll? Was there a good > night for everyone? I'm open and flexible, just not on our usual > date/time. > > Sorry to throw a wrench in the plans... I'm really looking forward > to next month's topic. > > Will I'm for moving it to Nov 3 or 4. Anyone else have a vote? From gwadej at anomaly.org Wed Oct 21 16:29:16 2009 From: gwadej at anomaly.org (G. Wade Johnson) Date: Wed, 21 Oct 2009 18:29:16 -0500 Subject: [pm-h] Fw: [pm_groups] Poll: Which editor(s) or IDE(s) are you using for Perl development? Message-ID: <20091021182916.15c94836@sovvan> Begin forwarded message: Date: Thu, 22 Oct 2009 00:26:08 +0200 From: Gabor Szabo To: PM Groups Subject: [pm_groups] Poll: Which editor(s) or IDE(s) are you using for Perl development? Please read this and if possible forward this to your PM group ---------------- Hi, I have setup a simple 5-second poll to find out what editor(s) or IDE(s) people use for Perl development. I'd appreciate very much if you clicked on the link and answered the question. You can mark up to 3 answers. Please also forward this mail in the company you are working and to people in your previous company so we can get a large and diverse set of responses. The poll will be closed within a week or after we reached 1000 voters. Whichever comes first. Please act now! http://bit.ly/2V8Ltz thanks ? Gabor http://szabgab.com/blog.html http://perlmongers.wordpress.com/ -- Request pm.org Technical Support via support at pm.org pm_groups mailing list pm_groups at pm.org http://mail.pm.org/mailman/listinfo/pm_groups -- There is no programming language?no matter how structured?that will prevent programmers from making bad programs. -- Larry Flon From gwadej at anomaly.org Sat Oct 24 09:51:51 2009 From: gwadej at anomaly.org (G. Wade Johnson) Date: Sat, 24 Oct 2009 11:51:51 -0500 Subject: [pm-h] November Meeting Message-ID: <20091024115151.64f33c41@sovvan> Since there have been no cries of anguish about moving the meeting time for this month, I think we should try it. The suggested days are Nov. 3 and Nov. 4. Since we have a city election here on the 3rd, I vote for Nov. 4th. Any opposed? In favor? Don't care? G. Wade -- If you like laws and sausages, you should never watch either one being made. -- Otto von Bismarck From will.willis at gmail.com Sat Oct 24 10:51:06 2009 From: will.willis at gmail.com (Will Willis) Date: Sat, 24 Oct 2009 12:51:06 -0500 Subject: [pm-h] November Meeting In-Reply-To: <20091024115151.64f33c41@sovvan> References: <20091024115151.64f33c41@sovvan> Message-ID: <6ee1e6090910241051kdbc4333xbcf8e277e34ac18f@mail.gmail.com> The 4th works for me. -Will On Sat, Oct 24, 2009 at 11:51 AM, G. Wade Johnson wrote: > Since there have been no cries of anguish about moving the meeting time > for this month, I think we should try it. > > The suggested days are Nov. 3 and Nov. 4. > > Since we have a city election here on the 3rd, I vote for Nov. 4th. > > Any opposed? In favor? Don't care? > > G. Wade > -- > If you like laws and sausages, you should never watch either one being > made. -- Otto von Bismarck > _______________________________________________ > Houston mailing list > Houston at pm.org > http://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From toddr at null.net Sat Oct 24 21:05:15 2009 From: toddr at null.net (Todd Rinaldo) Date: Sat, 24 Oct 2009 23:05:15 -0500 Subject: [pm-h] November Meeting In-Reply-To: <20091024115151.64f33c41@sovvan> References: <20091024115151.64f33c41@sovvan> Message-ID: <748c25c20910242105j6b0a7732k9d8030f42d1917af@mail.gmail.com> On Saturday, October 24, 2009, G. Wade Johnson wrote: > Since there have been no cries of anguish about moving the meeting time > for this month, I think we should try it. > > The suggested days are Nov. 3 and Nov. 4. > > Since we have a city election here on the 3rd, I vote for Nov. 4th. > > Any opposed? In favor? Don't care? > > G. Wade > -- > If you like laws and sausages, you should never watch either one being > made. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? -- Otto von Bismarck > _______________________________________________ > Houston mailing list > Houston at pm.org > http://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ > The 4th is fine. I don't believe we've said on this list what the talk will be on, have we? -- Todd Rinaldo toddr at null.net From gwadej at anomaly.org Mon Oct 26 18:18:45 2009 From: gwadej at anomaly.org (G. Wade Johnson) Date: Mon, 26 Oct 2009 20:18:45 -0500 Subject: [pm-h] November Meeting Message-ID: <20091026201845.6022b726@sovvan> Well, it looks like the Nov 3/4 tech meeting is not going to happen. Rescheduling on short notice is a bit of a problem. So, we'll go to our fallback plan. On Nov. 10, we'll have a social meeting. For those who have not attended a social meeting, here's the run-down. We basically get together at a restaurant and talk about anything that Perl programmers might be interested in. There's no set topic. There's no presentation. However, this does turn out to be a good opportunity to ask questions on projects you might be working on. Although we have had the last few social meetings at Fuddrucker's, that not a requirement. If someone has an idea for another restaurant that is somewhat centrally located, or easy to find from one of the freeways, we're open to a new location. Any suggestions? G. Wade -- Bugs lurk in corners and congregate at boundaries. -- Boris Bezier From toddr at cpanel.net Tue Oct 27 08:04:24 2009 From: toddr at cpanel.net (Todd Rinaldo) Date: Tue, 27 Oct 2009 10:04:24 -0500 Subject: [pm-h] November Meeting In-Reply-To: <20091026201845.6022b726@sovvan> References: <20091026201845.6022b726@sovvan> Message-ID: On Oct 26, 2009, at 8:18 PM, G. Wade Johnson wrote: > Although we have had the last few social meetings at Fuddrucker's, > that > not a requirement. If someone has an idea for another restaurant that > is somewhat centrally located, or easy to find from one of the > freeways, we're open to a new location. I'm all for Fudruckers. http://tinyurl.com/ykba4tp From will.willis at gmail.com Fri Oct 30 06:13:02 2009 From: will.willis at gmail.com (Will Willis) Date: Fri, 30 Oct 2009 08:13:02 -0500 Subject: [pm-h] YAPC Houston t-shirt spotting [Video] Message-ID: <6ee1e6090910300613w9443599p17250ee9c3146193@mail.gmail.com> A google staffer takes a someone from Chicago Now on a tour through Google's Chicago location. Someone in the cafeteria is wearing a YAPC Houston t-shirt. http://www.chicagonow.com/blogs/leshock-value/2009/10/a-tour-of-googles-chicago-headquarters.html -Will -------------- next part -------------- An HTML attachment was scrubbed... URL: From toddr at cpanel.net Fri Oct 30 08:12:23 2009 From: toddr at cpanel.net (Todd Rinaldo) Date: Fri, 30 Oct 2009 10:12:23 -0500 Subject: [pm-h] YAPC Houston t-shirt spotting [Video] In-Reply-To: <6ee1e6090910300613w9443599p17250ee9c3146193@mail.gmail.com> References: <6ee1e6090910300613w9443599p17250ee9c3146193@mail.gmail.com> Message-ID: On Oct 30, 2009, at 8:13 AM, Will Willis wrote: > A google staffer takes a someone from Chicago Now on a tour through > Google's Chicago location. Someone in the cafeteria is wearing a > YAPC Houston t-shirt. > > http://www.chicagonow.com/blogs/leshock-value/2009/10/a-tour-of-googles-chicago-headquarters.html > > -Will Well it's not Josh. The pony tail looks familiar though... -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen shot 2009-10-30 at 10.11.37 AM.png Type: image/png Size: 29157 bytes Desc: not available URL: From andy at petdance.com Fri Oct 30 08:13:32 2009 From: andy at petdance.com (Andy Lester) Date: Fri, 30 Oct 2009 10:13:32 -0500 Subject: [pm-h] YAPC Houston t-shirt spotting [Video] In-Reply-To: References: <6ee1e6090910300613w9443599p17250ee9c3146193@mail.gmail.com> Message-ID: On Oct 30, 2009, at 10:12 AM, Todd Rinaldo wrote: >> A google staffer takes a someone from Chicago Now on a tour through >> Google's Chicago location. Someone in the cafeteria is wearing a >> YAPC Houston t-shirt. >> >> http://www.chicagonow.com/blogs/leshock-value/2009/10/a-tour-of-googles-chicago-headquarters.html >> >> -Will > > Well it's not Josh. The pony tail looks familiar though... Pete Krawczyk tells me it's Jeremy Wall. xoxo, Andy -- Andy Lester => andy at petdance.com => www.theworkinggeek.com => AIM:petdance From will.willis at gmail.com Fri Oct 30 08:18:17 2009 From: will.willis at gmail.com (Will Willis) Date: Fri, 30 Oct 2009 10:18:17 -0500 Subject: [pm-h] YAPC Houston t-shirt spotting [Video] In-Reply-To: References: <6ee1e6090910300613w9443599p17250ee9c3146193@mail.gmail.com> Message-ID: <6ee1e6090910300818i45d3b9e2mebbb4517e483817b@mail.gmail.com> On Fri, Oct 30, 2009 at 10:12 AM, Todd Rinaldo wrote: > > On Oct 30, 2009, at 8:13 AM, Will Willis wrote: > > A google staffer takes a someone from Chicago Now on a tour through > Google's Chicago location. Someone in the cafeteria is wearing a YAPC > Houston t-shirt. > > > http://www.chicagonow.com/blogs/leshock-value/2009/10/a-tour-of-googles-chicago-headquarters.html > > -Will > > > Well it's not Josh. The pony tail looks familiar though... > > > _______________________________________________ > Houston mailing list > Houston at pm.org > http://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 29157 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Google Chicago Headquarters Tour - Leshock Value.jpg Type: image/jpeg Size: 37072 bytes Desc: not available URL: