From Todd.Chapman at eprize.com Tue Jul 8 08:39:20 2008 From: Todd.Chapman at eprize.com (Todd Chapman) Date: Tue, 8 Jul 2008 11:39:20 -0400 Subject: [Detroit-pm] Detroit Perl Mongers Meeting, Tuesday July 15th, 7pm Message-ID: <64D0546C5EBBD147B75DE133D798665F7A8A1A@hugo.eprize.local> The next meeting of the Detroit Perl Mongers / Dynamic Languages group will be at 7pm on Tuesday, July 15th 2008. This month Daniel Hedlund will be giving a presentation on virtual filesystems with specific emphasis on using Perl to create custom filesystems with FUSE (Filesystem in Userspace). FUSE was originally developed for Linux but has been ported to other operating systems including OS X and Windows. During the presentation Daniel will demonstrate using Perl to create a filesystem to: - directly integrate with a relational database - provide a transparent interface for accessing RSS feeds - control a piece of hardware - play chess :) Also this month, Todd Chapman will demonstrate Vroom. Vroom is kinda like PowerPoint ported to vi. ;) The meeting location is One ePrize Drive, Pleasant Ridge, MI 48069. The meeting starts at 7pm with food provided by ePrize. Please RSVP to todd.chapman at eprize.com so we can be sure to order enough food for everyone. Todd Chapman todd.chapman at eprize.com Software Engineer ePrize From bhess at techrg.com Mon Jul 14 15:04:11 2008 From: bhess at techrg.com (Bill Hess) Date: Mon, 14 Jul 2008 18:04:11 -0400 Subject: [Detroit-pm] Looking for example of sniffing a network port in perl... Message-ID: <487BCD5B.8050209@techrg.com> Hi All - I am looking for an example of watching a single network port and processing all of the info on it until I see a the messages I am looking for - so this is a very simple version of Ethereal/WireShark - and I have to run it on Windows... I am trying to stay away from using anything based on Pcap/Winpcap like WireShark, since I do not have the liberty to install anything else on the system - any ideas? The port I am interested in is typically called GIOP which is used for CORBA client/server communication - but I assume the example would be able to be demonstrated using telnet, http, etc... I will be running the code on the client side of the CORBA connection... Thanks in advance... Bill Hess Technology Resource Group Office: 248.546.6900 x12 Fax: 248.546.7310 Mobile: 248.703.1196 From Todd.Chapman at eprize.com Tue Jul 15 05:21:41 2008 From: Todd.Chapman at eprize.com (Todd Chapman) Date: Tue, 15 Jul 2008 08:21:41 -0400 Subject: [Detroit-pm] Reminder: Detroit Perl Mongers Meeting, Tuesday July 15th, 7pm Message-ID: <64D0546C5EBBD147B75DE133D798665F7A8BA1@hugo.eprize.local> Don't forget there's a Detroit.pm meeting tonight. Please RSVP if you haven't already. -----Original Message----- From: Todd Chapman Sent: Tuesday, July 08, 2008 11:39 AM To: detroit-pm at pm.org Subject: Detroit Perl Mongers Meeting, Tuesday July 15th, 7pm The next meeting of the Detroit Perl Mongers / Dynamic Languages group will be at 7pm on Tuesday, July 15th 2008. This month Daniel Hedlund will be giving a presentation on virtual filesystems with specific emphasis on using Perl to create custom filesystems with FUSE (Filesystem in Userspace). FUSE was originally developed for Linux but has been ported to other operating systems including OS X and Windows. During the presentation Daniel will demonstrate using Perl to create a filesystem to: - directly integrate with a relational database - provide a transparent interface for accessing RSS feeds - control a piece of hardware - play chess :) Also this month, Todd Chapman will demonstrate Vroom. Vroom is kinda like PowerPoint ported to vi. ;) The meeting location is One ePrize Drive, Pleasant Ridge, MI 48069. The meeting starts at 7pm with food provided by ePrize. Please RSVP to todd.chapman at eprize.com so we can be sure to order enough food for everyone. Todd Chapman todd.chapman at eprize.com Software Engineer ePrize From ispyhumanfly at gmail.com Tue Jul 15 08:50:01 2008 From: ispyhumanfly at gmail.com (ispyhumanfly) Date: Tue, 15 Jul 2008 11:50:01 -0400 Subject: [Detroit-pm] Reminder: Detroit Perl Mongers Meeting, Tuesday July 15th, 7pm In-Reply-To: <64D0546C5EBBD147B75DE133D798665F7A8BA1@hugo.eprize.local> References: <64D0546C5EBBD147B75DE133D798665F7A8BA1@hugo.eprize.local> Message-ID: <487CC729.2030204@gmail.com> Todd Chapman wrote: > Don't forget there's a Detroit.pm meeting tonight. Please RSVP if you > haven't already. > > -----Original Message----- > From: Todd Chapman > Sent: Tuesday, July 08, 2008 11:39 AM > To: detroit-pm at pm.org > Subject: Detroit Perl Mongers Meeting, Tuesday July 15th, 7pm > > The next meeting of the Detroit Perl Mongers / Dynamic Languages group > will be at 7pm on Tuesday, July 15th 2008. > > This month Daniel Hedlund will be giving a presentation on virtual > filesystems with specific emphasis on using Perl to create custom > filesystems with FUSE (Filesystem in Userspace). FUSE was originally > developed for Linux but has been ported to other operating systems > including OS X and Windows. > > During the presentation Daniel will demonstrate using Perl to create a > filesystem to: > - directly integrate with a relational database > - provide a transparent interface for accessing RSS feeds > - control a piece of hardware > - play chess :) > > Also this month, Todd Chapman will demonstrate Vroom. Vroom is kinda > like PowerPoint ported to vi. ;) > > The meeting location is One ePrize Drive, Pleasant Ridge, MI 48069. The > meeting starts at 7pm with food provided by ePrize. Please RSVP to > todd.chapman at eprize.com so we can be sure to order enough food for > everyone. > > Todd Chapman > todd.chapman at eprize.com > Software Engineer > ePrize > _______________________________________________ > Detroit-pm mailing list > Detroit-pm at pm.org > http://mail.pm.org/mailman/listinfo/detroit-pm > > I'll be there tonight... -- _ispy++ >> ispyhumanfly at gmail.com :: use Perl; From chad.carr at eprize.com Tue Jul 15 12:24:14 2008 From: chad.carr at eprize.com (Chad Carr) Date: Tue, 15 Jul 2008 15:24:14 -0400 Subject: [Detroit-pm] Detroit-pm Digest, Vol 22, Issue 2 In-Reply-To: References: Message-ID: <64D0546C5EBBD147B75DE133D798665F072DF4@hugo.eprize.local> > Hi All - I am looking for an example of watching a single network port > and processing all of the info on it until I see a the messages I am > looking for - so this is a very simple version of Ethereal/WireShark - > and I have to run it on Windows... I am trying to stay away from using > anything based on Pcap/Winpcap like WireShark, since I do not have the > liberty to install anything else on the system - any ideas? If you are on Linux, you might try libipq, which hooks into iptables and sends packets to your userspace program to be accepted, dropped, or mangled on the way. There is a Perl library on CPAN. Hope that helps, Chad From chad.carr at eprize.com Tue Jul 15 12:30:30 2008 From: chad.carr at eprize.com (Chad Carr) Date: Tue, 15 Jul 2008 15:30:30 -0400 Subject: [Detroit-pm] Detroit-pm Digest, Vol 22, Issue 2 In-Reply-To: <64D0546C5EBBD147B75DE133D798665F072DF4@hugo.eprize.local> References: <64D0546C5EBBD147B75DE133D798665F072DF4@hugo.eprize.local> Message-ID: <64D0546C5EBBD147B75DE133D798665F072DF6@hugo.eprize.local> I was just notified that I failed to read your entire message. I apparently skipped the middle part...apologies. -----Original Message----- From: Chad Carr Sent: Tuesday, July 15, 2008 3:24 PM To: 'detroit-pm at pm.org' Subject: RE: Detroit-pm Digest, Vol 22, Issue 2 > Hi All - I am looking for an example of watching a single network port > and processing all of the info on it until I see a the messages I am > looking for - so this is a very simple version of Ethereal/WireShark - > and I have to run it on Windows... I am trying to stay away from using > anything based on Pcap/Winpcap like WireShark, since I do not have the > liberty to install anything else on the system - any ideas? If you are on Linux, you might try libipq, which hooks into iptables and sends packets to your userspace program to be accepted, dropped, or mangled on the way. There is a Perl library on CPAN. Hope that helps, Chad From bhess at techrg.com Wed Jul 16 12:21:57 2008 From: bhess at techrg.com (Bill Hess) Date: Wed, 16 Jul 2008 15:21:57 -0400 Subject: [Detroit-pm] Going to OSCON? Message-ID: <487E4A55.2060904@techrg.com> Hi Are you attending OSCON in Portland this year? Let me know. I'll be hanging around the sessions and our expo hall booth. Can you pass this note along to your members who are going to OSCON? Got any old O'Reilly shirts at home? If so, bring them to OSCON! Be one of the first 50 people to come by the O'Reilly booth (#313) wearing one of our t-shirts to win cool prizes and be included in our t-shirt photo collage. The grand prize goes to the person who has more O'Reilly shirts than everyone else, so bring 'em all! Follow the O'Reilly booth on Twitter during the conference: http://twitter.com/oreillyatoscon for your chance to win prizes during the show. You can also follow http://twitter.com/oscon for ongoing conference updates throughout the show. Thanks for your help, Marsee ================================================================ O'Reilly 1005 Gravenstein Highway North Sebastopol, CA 95472 http://ug.oreilly.com/ ================================================================