From heromaster at web.de Tue Jun 1 08:57:01 2004 From: heromaster at web.de (Heromaster) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Themenvorschlag zum Mongerstreffen Message-ID: Hi, wenn Interesse besteht, würde ich zum nächsten Treffen ein paar XML-Module vorstellen. Folgende Module würde ich in mein Thema unterbringen: XML::Simple für die einfache Erstellung und Verarbeitung von XML-Dokumenten XML::SAX2 für die Verarbeitung von XML-Dokumenten als Events XML::LibXML für die baumorientierte Verarbeitung von XML-Dokumenten XML::XPath zum Auffinden von bestimmten Informationen innerhalb eines XML-Dokumentes Viele Grüße Robert -------------- nächster Teil -------------- Ein Dateianhang mit HTML-Daten wurde geschreddert... URL: http://mail.pm.org/pipermail/dresden-pm/attachments/20040601/587b398f/attachment.htm From schwigon at webit.de Tue Jun 1 00:09:15 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Nachwuchs bei den Mongers In-Reply-To: <200405311351.23616.joerg.westphal@gmx.de> (Joerg Westphal's message of "Mon, 31 May 2004 13:51:23 +0200") References: <200405311351.23616.joerg.westphal@gmx.de> Message-ID: <87fz9fx3t0.fsf@lamebrain.teufelkommraus.webit.de> Joerg Westphal writes: > ich wollte nur kurz mitteilen, dass die Mongers, seit gestern abend 17.00 > Uhr, ein neues Mitglied haben. Einen Mini-Monger sozusagen, 4400g schwer > und 57cm groß. Aha, da isser also. Glückwunsch, ich war schon ganz aufgeregt. :-) GreetinX Steffen -- Steffen Schwigon From schwigon at webit.de Tue Jun 1 00:11:52 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Themenvorschlag zum Mongerstreffen In-Reply-To: (heromaster@web.de's message of "Tue, 1 Jun 2004 15:57:01 +0200") References: Message-ID: <87brk3x3on.fsf@lamebrain.teufelkommraus.webit.de> "Heromaster" writes: > wenn Interesse besteht, würde ich zum nächsten Treffen ein paar XML-Module > vorstellen. Folgende Module würde ich in mein Thema unterbringen: > > XML::Simple für die einfache Erstellung und Verarbeitung von XML-Dokumenten > XML::SAX2 für die Verarbeitung von XML-Dokumenten als Events > XML::LibXML für die baumorientierte Verarbeitung von XML-Dokumenten > XML::XPath zum Auffinden von bestimmten Informationen innerhalb eines > XML-Dokumentes Jo. Bin ich unbedingt dafür. Ich würde außerdem mal was über die "Scopes" und deren Funktionsweise vorbereiten. Apocalypse 4 schaffe ich nicht. GreetinX Steffen -- Steffen Schwigon From schwigon at webit.de Thu Jun 3 07:20:32 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Perl Mongers Treffen Message-ID: <87hdtsx27j.fsf@lamebrain.teufelkommraus.webit.de> Junge, junge, ich vergeß neuerdings immer die Announcements. Aber ihr kennt ja alle das Spiel. Am ersten Donnerstag im Monat, so auch heute, treffen sich wieder die Perl Mongers. Donnerstag, 03.Juni 2004 2o.15 Uhr (*) in der "Wir AG" (ehemals "Club für Dich") Martin-Luther-Str. 21 Das ist in der Neustadt gegenüber der Lutherkirche, wo sich davor so'ne Steinkugel im Wasserbett dreht. Wer über Perl oder auch über was anderes reden mag, ist eingeladen. Themen: * XML-Module * Scopes * Vorschau Perl Workshop * misc Bitte bissel warten, falls ich nicht ganz pünktlich bin, vorher ist wieder Ringvorlesung "Film Noir". GreetinX Steffen -- Steffen Schwigon Dresden Perl Mongers From jpuruckherr at cyberport.de Wed Jun 9 04:23:00 2004 From: jpuruckherr at cyberport.de (Jens Puruckherr) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] HTTP::Deamon forken lassen Message-ID: Hallo, meine XML-Anwendung läuft prima, hat aber einen Haken: Wenn gleichzeitig viele Requests ankommen, dauert die Bearbeitung ewig, denn durch die SOAP-Schnittstelle passt immer nur ein einziger Request: Ich nutzer SOAP::Transport:.HTTP::Deamon für meinen Soapserver und der kann bekanntlich nicht forken. Aus man HTTP::Deamon: This HTTP daemon does not fork(2) for you. Your application, i.e. the user of the "HTTP::Daemon" is reponsible for forking if that is desirable. Also note that the user is responsible for generating responses that conform to the HTTP/1.1 protocol. Kein Problem, wenn ich dafpr zuständig bin, mache ich das doch auch. Aber bloss wie? Hier mal mein vorhander Code vom Server: ---------------- #!/usr/bin/perl use strict; use warnings; use SOAP::Transport::HTTP; my $daemon = SOAP::Transport::HTTP::Daemon -> new( LocalAddr => 'localhost', LocalPort => 8081, ReuseAddr => 1, Listen => 5 ) -> dispatch_to('Shop::Interface::(?:ping|setArtikel|setXsell|setKunde|getArtKat|setBestand)') ; $daemon->handle; -------------- Nach meiner Vorstellung soll nun ein ankommender Request einen Child erzeugen, während der Vater einfach den nächsten Request annimmt, wieder einen child erzeugt, etc. Bis zu einer Max. Grenze, dann müssen die Requests hat wirklich warten. Ich weiss, ich könnte auf Apache::Soap umsteigen, das bedeutet jedoch einen Batzen Installation und evaluierung, darum will ich es erst mal auf diese Weise versuchen ... und noch was lernen. Kann mir jemand einen Tipp geben? Mit freundlichen Grüßen Jens Puruckherr From jpuruckherr at cyberport.de Thu Jun 10 01:58:39 2004 From: jpuruckherr at cyberport.de (Jens Puruckherr) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] HTTP::Deamon forken lassen In-Reply-To: References: Message-ID: wie es so ist, die Lösung ist meist schon da - wo man nicht unbedingt als erstes hinguckt. im source-Baum von SOAP::Lite gibt es in examples ein schönes Beispiel, wie sowas zu machen ist. Das funktioniert zwar noch nicht ganz so, wie es soll, aber ich habe meinen Anfang:-) Mit freundlichen Grüßen Jens Puruckhe From joerg.westphal at gmx.de Mon Jun 14 14:11:03 2004 From: joerg.westphal at gmx.de (Joerg Westphal) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Fwd: Newsletter From O'Reilly UG Program, June 10 Message-ID: <200406142111.03761.joerg.westphal@gmx.de> ================================================================ O'Reilly News for User Group Members June 10, 2004 ================================================================ ---------------------------------------------------------------- Book News ---------------------------------------------------------------- -XML Publishing with AxKit -Better, Faster, Lighter Java -Degunking Your Mac -Office 2003 XML -Inside .Mac -BSD Hacks ---------------------------------------------------------------- Upcoming Events ---------------------------------------------------------------- -Bonnie Biafore ("Online Investing Hacks,") NAIC Compufest 2004, St. Louis, MO--June 17-20 -Derrick Story ("Digital Photography Hacks," "Digital Photography Pocket Guide, 2nd Ed.")and Ken Milburn ("Digital Photography: Expert Techniques"), NBMA-SFDIG Digital Photo Expo, Mil Valley, CA--June 19 -Tim O'Reilly, eBay Developers Conference, New Orleans, LA--June 23-24 ---------------------------------------------------------------- Conference News ---------------------------------------------------------------- -Attending OSCON? Don't Forget to Sign up for the Tutorials! -O'Reilly Open Source Convention Early Bird Discount--Ends June 18 ---------------------------------------------------------------- News ---------------------------------------------------------------- -Visit with O'Reilly Editors at 2004 USENIX Annual Tech Boston, MA--June 27-July 2 -An Interview with Derrick Story (Digital Photo Hacker at Large) -Paul Graham on Hacking -A Survey of DVD Recording Formats -Free Exhibit Hall Pass for LinuxWorld Conference & Expo, San Francisco, CA -How We Wrote "BSD Hacks" -Inside Mitch Kapor's World -Building a Linux Media PC -Basic Guide to Enterprise Application Distribution -Inside Contextual Menu Items -Troubleshooting Stop Errors -SnagIt: The Ultimate Screen Capture Program -Improving JSF by Dumping JSP -SMS-Powered Applications -What's New in Windows Mobile 2003 Second Edition? -C# Iterators ---------------------------------------------------------------- News From Your Peers ---------------------------------------------------------------- -Are you Annoyed? ================================================ Book News ================================================ Did you know you can request a free book to review for your group? Ask your group leader for more information. For book review writing tips and suggestions, go to: http://ug.oreilly.com/bookreviews.html Don't forget, you can receive 20% off any O'Reilly, No Starch, Paraglyph, Pragmatic Bookshelf, or Syngress book you purchase directly from O'Reilly. Just use code DSUG when ordering online or by phone 800-998-9938. http://www.oreilly.com/ ***Free ground shipping is available for online orders of at least $29.95 that go to a single U.S. address. This offer applies to U.S. delivery addresses in the 50 states and Puerto Rico. For more details, go to: http://www.oreilly.com/news/freeshipping_0703.html ---------------------------------------------------------------- New Releases ---------------------------------------------------------------- ***XML Publishing with AxKit Publisher: O'Reilly ISBN: 0596002165 "XML Publishing with AxKit" presents web programmers with the knowledge they need to master AxKit, a mod_perl- and Apache-based XML content delivery solution. This book provides detailed information on installing, configuring, and deploying AxKit effectively, and it features a thorough introduction to XSP, which applies the concepts of Server Pages technologies to the XML world. The book also covers integrating AxKit with tools such as Template Toolkit, Apache:: Mason, Apache::ASP, and plain CGI, and it contains reference sections on configuration directives, XpathScript, and XSP. http://www.oreilly.com/catalog/xmlaxkit/ Chapter 3, "Your First XML Web Site," is available online: http://www.oreilly.com/catalog/xmlaxkit/chapter/index.html ***Better, Faster, Lighter Java Publisher: O'Reilly ISBN: 0596006764 In this latest O'Reilly Java book, the authors argue that the old heavyweight architectures, such as WebLogic, JBoss, and WebSphere, are unwieldy, complicated, and contribute to slow and buggy application code. As an alternative means for building applications, the authors present two "lightweight" open source architectures, Hibernate and Spring, that can help you create enterprise applications that are easier to maintain, write, and debug, and are ultimately much faster. http://www.oreilly.com/catalog/bfljava/ The Preface, Chapter 3, "Do One Thing, and Do It Well," and Chapter 10, "Extending jPetStore," are available online: http://www.oreilly.com/catalog/bfljava/chapter/index.html ***Degunking Your Mac Publisher: Paraglyph Press ISBN: 1932111948 For optimum performance of any operating system, you need to maintain your computer. And just as cars need regular maintenance, so do Macs. Periodic cleaning of the hard drive, file maintenance, application maintenance, and email maintenance must be done. This is the first book to provide easy, step-by-step information on how to get rid of annoying clutter that can gunk up Macs. http://www.oreilly.com/catalog/1932111948/ ***Office 2003 XML Publisher: O'Reilly ISBN: 0596005385 "Office 2003 XML" explores the relationship between XML and Office 2003, examining how the Office suite of products both produce and consume XML. Developers will learn how to connect Office to others systems, while power users will learn to create and analyze XML documents using familiar Office tools. Beginning with an overview of the XML features included in the Office 2003 components, this book provides quick and clear guidance to anyone who needs to import or export information from Office documents into other systems. http://www.oreilly.com/catalog/officexml/ Chapter 2, "The WordprocessingML Vocabulary," is available online: http://www.oreilly.com/catalog/officexml/chapter/index.html ***Inside .Mac Publisher: O'Reilly ISBN: 0596005016 This handy, quick reference offers a clear overview of the entire .Mac package and many of its not-so-obvious features. You'll learn how to set up and manage your account quickly and without fuss. Each .Mac service is discussed in an objective, no-frills fashion that'll show you how to use--and what to expect from--iDisk, web mail, your personal web site, and everything else that .Mac offers. http://www.oreilly.com/catalog/indotmac/ Chapter 5, "Using Virex," is available free online: http://www.oreilly.com/catalog/indotmac/chapter/index.html ***BSD Hacks Publisher: O'Reilly ISBN: 0596006799 Looking for a unique set of practical tips, tricks, and tools for administrators and power users of BSD systems? From hacks on customizing the user environment to networking, securing the system, and optimization, "BSD Hacks" takes a creative approach to saving time and accomplishing more with fewer resources. If you want more than the average BSD user--to explore and experiment, unearth shortcuts, create useful tools--this book is a must-have. http://www.oreilly.com/catalog/bsdhks/ Five Sample Hacks are available online: http://www.oreilly.com/catalog/bsdhks/chapter/index.html ================================================ Upcoming Events ================================================ ***For more events, please see: http://events.oreilly.com/ ***Bonnie Biafore ("Online Investing Hacks,") NAIC Compufest 2004, St. Louis, MO--June 17-20 Bonnie speaks at the NAIC Compufest conference, an event focusing on computerized investing. Adam Mark Hotel, St. Louis, MO http://www.better-investing.org/chapter/stlouis/events/2671 ***Derrick Story ("Digital Photography Hacks," "Digital Photography Pocket Guide, 2nd Ed.")and Ken Milburn ("Digital Photography: Expert Techniques"), NBMA-SFDIG Digital Photo Expo, Mil Valley, CA--June 19 North Bay Multimedia Association, in collaboration with the San Francisco Digital Imaging Group, is presenting a day devoted to digital photography. O'Reilly will be one of the vendors on hand. 12-5 pm, Saturday, June 19 Mill Valley Community Center, Mill Valley, CA Free to NBMA & SFDIG members; $15 for non-members; $10 for students with valid ID. http://www.nbma.com/events/DPE.html ***Tim O'Reilly, eBay Developers Conference, New Orleans, LA--June 23-24 Tim presents the opening keynote at this annual event for eBay and PayPal developers. Tim and eBay founder and chairman Pierre Omidyar will also sit down for a "fireside chat" Q&A session during the conference. New Orleans,LA http://developer.ebay.com/DevProgram/ ================================================ Conference News ================================================ ***Attending OSCON? Don't Forget to Sign up for the Tutorials! Check out: David Sklar's "Learning PHP" http://conferences.oreillynet.com/cs/os2004/view/e_sess/5064 A. Elein Mustain's "Introduction to PostgreSQL" http://conferences.oreillynet.com/cs/os2004/view/e_sess/5035 Greg Sabino Mullane's "How to Play Together Nicely: Strategies for DBAs and Application Developers" http://conferences.oreillynet.com/cs/os2004/view/e_sess/5362 "Geoffrey Young's "Programming the Apache Lifecycle" http://conferences.oreillynet.com/cs/os2004/view/e_sess/5082 For the complete list of tutorials, go to: http://conferences.oreillynet.com/pub/w/29/tutorials.html ***O'Reilly Open Source Convention Early Bird Discount--Ends June 18 User Group members who register before June 18, 2004 get a double discount. Use code DSUG when you register, and you'll get 20% off the "Early Bird" price. To register, go to: http://conferences.oreillynet.com/cs/os2004/create/ord_os04 O'Reilly Open Source Convention Portland Marriott Downtown Portland, OR July 26-30, 2004 http://conferences.oreilly.com/oscon/ ================================================ News From O'Reilly & Beyond ================================================ --------------------- General News --------------------- ***Visit with O'Reilly Editors at 2004 USENIX Annual Tech, Boston, MA--June 27-July 2 Come visit O'Reilly in the Partner Publisher Suite June 28-30. This conference includes: 6 days of training; renowned plenary speakers every morning; technical sessions every day; daily SIG sessions; and General and Freenix/Open Source refereed papers. Free exhibit & BOF registration available online. The early registration discount has been extended to June 14th. The conference runs June 27-July 2 in Boston, MA. http://www.usenix.org/usenix04/ ***An Interview with Derrick Story (Digital Photo Hacker at Large) Over the years, photography and the technology behind it have provided plenty of material for creative thinkers, making it a natural fit for the hacker spirit. In this interview with Derrick Story, O'Reilly's resident photo hacker, he talks about the direction of digital imaging, what makes it cool, and new ways that you can push the limits of your photography. http://www.macdevcenter.com/pub/a/mac/2004/06/08/photography.html ***Paul Graham on Hacking Paul Graham is a hacker, painter, and essayist known as much for his thoughtful writings on spam, hacking, and Lisp as for creating the Arc programming language. In this interview with the O'Reilly Network, Paul discusses hacking, creativity, computer science education, and language design. Paul is the author of a just-released collection of his essays, "Hackers & Painters." http://www.onlamp.com/pub/a/onlamp/2004/05/27/paul_graham_interview.html ***A Survey of DVD Recording Formats Wei-Meng Lee writes of his quest for the right DVD writer to buy. After surveying the various DVD recording formats (DVD-R, DVD-RW, DVD+RW, DVD+R, DVD-RAM, and DVD-RW DL), as well as some of the DVD writers currently available on the market, Wei-Meng offers his recommendations. http://digitalmedia.oreilly.com/news/dvdwriters_0504.html --------------------- Open Source --------------------- ***Free Exhibit Hall Pass for LinuxWorld Conference & Expo, San Francisco, CA--August 3-5 Register online by July 2, 2004 with PRIORITY CODE: B0601 to receive your free Exhibit Hall pass. To register, go to: http://www.linuxworldexpo.com/live/12/register///CC798223 ***How We Wrote "BSD Hacks" Most technical book authors seem to use Microsoft Word to write their books, but what if you wanted to use open source tools to write and edit your book? chromatic writes about how he and author Dru Lavigne used PseudoPOD and Subversion to collaborate, write, edit, and produce O'Reilly's latest Hacks book offering, "BSD Hacks." http://www.onlamp.com/pub/a/bsd/2004/06/03/bsdhacks.html ***Inside Mitch Kapor's World Mitch Kapor has had a huge influence on the software world, being the founder of Lotus and a driving force behind 1-2-3. Now his Open Software Applications Foundation is working on Chandler, an open source PIM written in Python. In this O'Reilly Network interview, Mitch talks about his life and career, the OSAF, Chandler, open source, and Python. Mitch will present a Developer's Tour of Chandler at this summer's Open Source Convention. http://www.onlamp.com/pub/a/python/2004/06/03/mitch_kapor_interview.html ***Building a Linux Media PC What do DVDs, CDs, TV stations, and video games have in common? Besides the fact that they require bulky equipment that takes up precious space in your living room, you can play them all on a PC running Linux. John Littler introduces the Linux media PC, a media convergence device. http://www.linuxdevcenter.com/pub/a/linux/2004/05/27/linux_media_pc.htm l --------------------- Mac --------------------- ***Basic Guide to Enterprise Application Distribution Keeping your software updated on your diverse Mac network requires attention to detail and perseverance. In this article, Philip Rinehart shows you options for tracking installations on your business or educational network. http://www.macdevcenter.com/pub/a/mac/2004/06/08/enterprise.html ***Inside Contextual Menu Items In the first article, Steven Disbrow describes handy power user tips for two-button mousing on Mac OS X. In part two he shows you how to create your own CMIs using Xcode. Part One: http://www.macdevcenter.com/pub/a/mac/2004/05/28/cm_pt1.html Part Two: http://www.macdevcenter.com/pub/a/mac/2004/06/04/cm_pt2.html --------------------- Windows --------------------- ***Troubleshooting Stop Errors What to do when the Blue Screen of Death appears? Mitch Tulloch, author of "Windows Server Hacks," offers five tips on troubleshooting Stop error messages. http://www.windowsdevcenter.com/pub/a/windows/2004/06/08/stop_errors.htm l ***SnagIt: The Ultimate Screen Capture Program Need to capture screens in Windows? Forget the built-in Print Screen feature--it's just about useless. Instead, get SnagIt, the ultimate screen capture program. http://www.windowsdevcenter.com/pub/a/windows/2004/06/08/snagit.html --------------------- Java --------------------- ***Improving JSF by Dumping JSP JSF is a great technology for complex web application interfaces. But Hans Bergsten urges you not to give up on JSF just because the JSP layer is flawed; using a custom ViewHandler resolves all of the issues. http://www.onjava.com/pub/a/onjava/2004/06/09/jsf.html ***SMS-Powered Applications SMS (short message service) is ubiquitous in the small device space, and offers a means of sending and receiving messages from even the simplest mobile phone. Dejan Bosanac looks at how Java can be made to work with SMS. http://www.onjava.com/pub/a/onjava/2004/06/09/sms.html --------------------- .NET --------------------- ***What's New in Windows Mobile 2003 Second Edition? What's new, what's hot, and what's not in Windows Mobile 2003 Second Edition (SE)? Wei-Meng Lee gives you the rundown on everything from graphics support to new form factors and dual display modes. Wei-Meng is the author of ".NET Compact Framework Pocket Guide." http://www.windowsdevcenter.com/pub/a/windows/2004/06/01/winserver2003.h tml ***C# Iterators If you are creating a class that looks and behaves like a collection, it is handy to allow your users to iterate through the members of your collection with the foreach statement. This is easier to do in C# 2.0 than it is in 1.1. In this new column by Jesse Liberty, he shows you what is coming up in .NET 2.0 to make this common task easier. http://www.ondotnet.com/pub/a/dotnet/2004/06/07/liberty.html ================================================ News From Your Peers ================================================ ***Are you Annoyed? Want to share your annoyances with O'Reilly? Check out the Help O'Reilly page on the UG wiki--we are still looking for submissions. http://wiki.oreillynet.com/usergroups/create?HelpOReilly Until next time-- Marsee ------------------------------------------------------- -- _/_ _ _ _/_ _ Perl-Usergroup Dresden (// (-_) (/(-/)./)//) immer am 1. Donnerstag / in der Lutherstraße 21 http://dresden.pm.org - mailto: info@dresden-pm.org From schwigon at webit.de Tue Jun 15 07:37:36 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Einladung: Deutscher Perl Workshop 2004 Message-ID: <200406151237.i5FCbaN8016682@teufelkommraus.webit.de> Einladung / 6. Deutscher Perl-Workshop / 29.06.- 01.07.2004 Ort: Barbara-Künkelin-Halle Schorndorf (nähe Stuttgart) Von Dienstag, dem 29. Juni 2004 bis Donnerstag, den 01. Juli 2004 findet der 6. Deutsche Perl-Workshop statt. Der Perl-Workshop hat sich für Perl-Anwender und Perl-Entwickler aus dem deutschsprachigen Raum als das Forum etabliert, auf dem sie sich treffen, um in gesellschaftlich lockerer, aber konzentrierter und arbeitsintensiver Atmosphäre Erfahrungen austauschen. Die Anmeldung ist online über die Webseite des Perlworkshop (http://www.perlworkshop.de) möglich. Über weitere Teilnehmer würden wir uns sehr freuen. Falls du noch weitere Interessierte kennst, gib diese Informationen bitte weiter oder verlinke die Webseite an geeigneter Stelle. Das WsOrga-Team From schwigon at webit.de Sat Jun 19 07:41:51 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Juli-Treffen Message-ID: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> Hi all! Ich bin in der Woche des nächsten PM-Treffens nicht da, weil beim Perl-Workshop. Wollen wir bzgl. Schlüssel abholen u.ä. [ ] eine Ersatzorganisation anstoßen oder [ ] soll ich versuchen, daß wir es in der Folgewoche durchführen? Im letzteren Fall könnte ich übrigens recht frisch über den Workshop berichten, um dem ganzen mal eine sachte Tendenz zu geben. :-) GreetinX Steffen PS: Neue Homepage entwickelt sich. -- Steffen Schwigon From joerg.westphal at gmx.de Sat Jun 19 13:29:56 2004 From: joerg.westphal at gmx.de (Joerg Westphal) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Juli-Treffen In-Reply-To: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> References: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> Message-ID: <200406192029.56652.joerg.westphal@gmx.de> Und das schnitzte Steffen Schwigon ins Brett: > [X] soll ich versuchen, daß wir es in der Folgewoche durchführen? Gruss Jörg From perl at gmx.org Mon Jun 21 07:02:25 2004 From: perl at gmx.org (Steffen Liebergeld) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Juli-Treffen In-Reply-To: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> References: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> Message-ID: <20040621120225.GA8376@server> > [ ] eine Ersatzorganisation anstoßen oder > [X] soll ich versuchen, daß wir es in der Folgewoche durchführen? [X]diesmal sollen mehr als zwei Leute zum Treffen kommen. > Im letzteren Fall könnte ich übrigens recht frisch über den Workshop > berichten, um dem ganzen mal eine sachte Tendenz zu geben. :-) Das währ fein. > PS: Neue Homepage entwickelt sich. Sehr gut. Wenn du Hilfe/Arbeitskraft brauchst, sag Bescheid. -- mit freundlichen Grüßen, Steffen Liebergeld From joerg.westphal at gmx.de Mon Jun 21 15:45:25 2004 From: joerg.westphal at gmx.de (Joerg Westphal) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Juli-Treffen In-Reply-To: <20040621120225.GA8376@server> References: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> <20040621120225.GA8376@server> Message-ID: <200406212245.26153.joerg.westphal@gmx.de> Und das schnitzte Steffen Liebergeld ins Brett: > [X]diesmal sollen mehr als zwei Leute zum Treffen kommen. Ich komme das nächste mal. Jö"beim letzten Mal entschuldigt"rg From akunert at main-rheiner.de Tue Jun 22 05:20:53 2004 From: akunert at main-rheiner.de (Andreas Kunert) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Anzeigentool Message-ID: <40D80805.7050701@main-rheiner.de> Hallo Leute, ich habe da mal ein kleines Problem. Ich bekomme Anzeigen in einer Art XML-Struktur. Ich sage bewußt in einer Art. Beispiel: -------------- schnipp ------------- 4 Sommerreifen 195/50 R 15 82 V auf Ford Alu-Felgen 6J x 15 H2 ET40, 4-Loch, e 150,-. ? (01234) 4321 ------------ schnipp ------------------ Momentan versuche ich, den Titel, den Text (ohne Titel) und die Kontaktdaten rauszufilten. ------------ schnipp ----------- if($volltext) { print "Volltext vorhanden.\n"; # Euro rauswerfen $volltext =~ s/e<\/lps:font>/€/g; # Titel rausfiltern if($volltext =~ /.*?(.*?)<\/lps:style>.*?/i){ $titel = $1; } # Kontakt rausfiltern if($volltext =~ /.*?\?(.*?)<\/lps:style>.*?/i){ $kontakt = $1; } # Resttext raussuchen if($volltext =~ /$titel(.*?)$kontakt/ig){ $resttext = $1; } ------------------ schnipp --------------- Das Problem ist der Resttext. Da scheint meine REGEX nicht richtig zu greifen. Hat jemand ne Idee, wie ich da sonst rangehen kann? Danke für einen Tipp. GRuß Andreas From schwigon at webit.de Tue Jun 22 06:23:06 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Anzeigentool In-Reply-To: <40D80805.7050701@main-rheiner.de> (Andreas Kunert's message of "Tue, 22 Jun 2004 12:20:53 +0200") References: <40D80805.7050701@main-rheiner.de> Message-ID: <87fz8nrg4l.fsf@lamebrain.teufelkommraus.webit.de> Andreas Kunert writes: > (01234) 4321 > [...] > # Resttext raussuchen > if($volltext =~ /$titel(.*?)$kontakt/ig){ > $resttext = $1; > } > ------------------ schnipp --------------- > > Das Problem ist der Resttext. Da scheint meine REGEX nicht richtig zu > greifen. > Hat jemand ne Idee, wie ich da sonst rangehen kann? Ich kann's aus Zeitmangel nicht im Detail überprüfen, aber Deine Kontaktdaten enthalten runde Klammern für die Telefonnummer. Wenn Du $kontakt im Regex verwendest, bringen die runden Klammern vielleicht Deine Sub-Regex-Nummerierung durcheinander. Du könntest im letzten Regex für Erlangung des $resttext den ganzen vorherigen Regex-Kram wieder mit einbauen, statt $titel und $kontakt zu verwenden. GreetinX Steffen -- "When in doubt, use brute force." -- Ken Thompson From schwigon at webit.de Tue Jun 22 06:34:22 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Anzeigentool In-Reply-To: <87fz8nrg4l.fsf@lamebrain.teufelkommraus.webit.de> (Steffen Schwigon's message of "Tue, 22 Jun 2004 13:23:06 +0200") References: <40D80805.7050701@main-rheiner.de> <87fz8nrg4l.fsf@lamebrain.teufelkommraus.webit.de> Message-ID: <877jtzrflt.fsf@lamebrain.teufelkommraus.webit.de> Steffen Schwigon writes: > > Wenn Du $kontakt im Regex verwendest, bringen die runden Klammern > vielleicht Deine Sub-Regex-Nummerierung durcheinander. Hm, nee, die Nummierierung dürfte es trotzdem nicht sein. Aber die Grundaussage bleibt, daß die Variablen $titel und $kontakt als Regexe interpretiert werden. Guck mal in diese Richtung. Steffen -- Steffen Schwigon From akunert at main-rheiner.de Wed Jun 23 05:49:01 2004 From: akunert at main-rheiner.de (Andreas Kunert) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Anzeigentool In-Reply-To: <877jtzrflt.fsf@lamebrain.teufelkommraus.webit.de> References: <40D80805.7050701@main-rheiner.de> <87fz8nrg4l.fsf@lamebrain.teufelkommraus.webit.de> <877jtzrflt.fsf@lamebrain.teufelkommraus.webit.de> Message-ID: <40D9601D.7040600@main-rheiner.de> Hallo, danke erstmal für den Tipp. Habe es erstmal so versucht und bekomme bei 95% der Anzeigen auch ein gutes Ergebnis. Leider ist die Lieferdatei nicht sauber gebaut und es gibt diverse Sonderformen. aber der Weg ist erstmal klar. Lösungsansatz: Perfekte Anzeige: if($volltext =~ /.*?(.*?)<\/lps:style>(.*?)\?(.*?)<\/lps:style><\/lps:structure>/gi){ $titel = $1; $resttext = $2; $kontakt = $3; } Den Resttext werde ich versuchen zu extrahieren, indem ich, wenn ich einen Titel finde, diesen aus dem $volltext rausschneide. Nachdem ich sämtliche Formatierungen entfernt habe Vermutlich so: $volltext =~ s///g; $volltext =~ s/<\/lps:.*?>//g; if($titel){ $resttext = substr(....) } Oder so ähnlich.... GRuß Andreas Steffen Schwigon wrote: >Steffen Schwigon writes: > > >>Wenn Du $kontakt im Regex verwendest, bringen die runden Klammern >>vielleicht Deine Sub-Regex-Nummerierung durcheinander. >> >> > >Hm, nee, die Nummierierung dürfte es trotzdem nicht sein. Aber die >Grundaussage bleibt, daß die Variablen $titel und $kontakt als Regexe >interpretiert werden. Guck mal in diese Richtung. > >Steffen > > From schwigon at webit.de Wed Jun 23 07:29:47 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Juli-Treffen In-Reply-To: <20040621120225.GA8376@server> (Steffen Liebergeld's message of "Mon, 21 Jun 2004 14:02:25 +0200") References: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> <20040621120225.GA8376@server> Message-ID: <87oena5uf8.fsf@lamebrain.teufelkommraus.webit.de> Steffen Liebergeld writes: >> [ ] eine Ersatzorganisation anstoßen oder >> [X] soll ich versuchen, daß wir es in der Folgewoche durchführen? Zwischenstand: Ich arbeite dran. Prinzipiell wär's wohl möglich, es war aber grad kein Plan da. > [X]diesmal sollen mehr als zwei Leute zum Treffen kommen. [x] Jo, wär cool. Hallo? Alle gehört? :-) Haltet euch schonmal den 8.Juli frei für's nächste Treffen. Selbst, wenn's in der Wir AG nicht klappt, gehen wir halt wieder mal in 'ne Kneipe in der Neustadt. >> PS: Neue Homepage entwickelt sich. > > Sehr gut. Wenn du Hilfe/Arbeitskraft brauchst, sag Bescheid. Ich komm' drauf zurück, danke. Momentan bin ich allerdings nur medium verfügbar - Arbeit und PerlWorkshop-Vorbereitungen. Vielleicht kommt allerdings trotzdem nochmal 'n Schub diese Woche, mal sehen. GreetinX Steffen -- Steffen Schwigon Dresden Perl Mongers From schwigon at webit.de Fri Jun 25 08:24:34 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Juli-Treffen In-Reply-To: <87oena5uf8.fsf@lamebrain.teufelkommraus.webit.de> (Steffen Schwigon's message of "Wed, 23 Jun 2004 14:29:47 +0200") References: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> <20040621120225.GA8376@server> <87oena5uf8.fsf@lamebrain.teufelkommraus.webit.de> Message-ID: <87acyrzs6l.fsf@lamebrain.teufelkommraus.webit.de> Steffen Schwigon writes: > Steffen Liebergeld writes: >>> [ ] eine Ersatzorganisation anstoßen oder >>> [X] soll ich versuchen, daß wir es in der Folgewoche durchführen? > > Zwischenstand: Ich arbeite dran. Prinzipiell wär's wohl möglich, > es war aber grad kein Plan da. Am 8.Juli war leider schon besetzt. Ich habe jetzt den 15. Juli reserviert. Falls wir trotzdem schon am 8.Juli was machen wollen, müßten wir in eine Kneipe gehen, wär auch ok, ansonsten ist hiermit erstmal der offizielle Termin für's nächste Treffen der 15. Juli 2004 2o.oo Uhr "Wir AG" GreetinX Steffen -- Steffen Schwigon Dresden Perl Mongers From joerg.westphal at gmx.de Sat Jun 26 15:50:43 2004 From: joerg.westphal at gmx.de (Joerg Westphal) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Fwd: Newsletter from O'Reilly UG Program, June 25 Message-ID: <200406262250.43588.joerg.westphal@gmx.de> ---------- Weitergeleitete Nachricht ---------- Subject: Newsletter from O'Reilly UG Program, June 25 Date: Samstag, 26. Juni 2004 02:08 From: Marsee Henon To: joerg.westphal@gmx.de ================================================================ O'Reilly News for User Group Members June 25, 2004 ================================================================ ---------------------------------------------------------------- Book News ---------------------------------------------------------------- -Programming Jakarta Struts, 2nd Edition -The Best Damn Windows 2003 Server Book -Java Cookbook, 2nd Edition -Google: The Missing Manual -Richard Thieme's Islands in the Clickstream -CYA: Securing IIS 6.0 -CYA: Securing Exchange Server 2003 & Outlook Web Access ---------------------------------------------------------------- Upcoming Events ---------------------------------------------------------------- -Apple WWDC, San Francisco, CA--June 28-July 2 -JavaOne, San Francisco, CA--June 28-July 1 -Edd Dumbill ("Linux Unwired"), GNOME User and Developer European Conference, Kristiansand, Norway--June 28-30 -James Duncan Davidson ("Mac OS X Panther Hacks," "Running Mac OS X Panther"), Apple Store, San Francisco, CA--June 30 -Steve Bass ("PC Annoyances"), Anchorage Borders, Anchorage, AK--July 7 -Steve Bass ("PC Annoyances"), Alaska Computer Society PC Users Group, Anchorage, AK--July 8 ---------------------------------------------------------------- Conference News ---------------------------------------------------------------- -O'Reilly Open Source Convention User Group Discount ---------------------------------------------------------------- News ---------------------------------------------------------------- -Don't forget--Visit with O'Reilly Editors at 2004 USENIX Annual Tech Boston, MA--June 27-July 2 -O'Reilly Network Launches eDocuments -The Open Source Paradigm Shift -A Linux Quick Reference to Useful Commands -The Pragmatic Programmers Interview -Voice Recording Magic with the iPod -RSS: The Next Generation -A Brief Introduction to GPS Photo Linking -Windows Server Hacks: Using Saved Queries to Find Locked Accounts -Easily Purge Spyware, Adware, and Other Malware -Using a JMS Provider with MDBs via the J2EE Connector Architecture -Working with Hibernate in Eclipse -SP.NET Forms Security by Jesse Liberty ---------------------------------------------------------------- News From Your Peers ---------------------------------------------------------------- -Share your Group's Secrets to Success on the O'Reilly UG Wiki. ================================================ Book News ================================================ Did you know you can request a free book to review for your group? Ask your group leader for more information. For book review writing tips and suggestions, go to: http://ug.oreilly.com/bookreviews.html Don't forget, you can receive 20% off any O'Reilly, No Starch, Paraglyph, Pragmatic Bookshelf, or Syngress book you purchase directly from O'Reilly. Just use code DSUG when ordering online or by phone 800-998-9938. http://www.oreilly.com/ ***Free ground shipping is available for online orders of at least $29.95 that go to a single U.S. address. This offer applies to U.S. delivery addresses in the 50 states and Puerto Rico. For more details, go to: http://www.oreilly.com/news/freeshipping_0703.html ---------------------------------------------------------------- New Releases ---------------------------------------------------------------- ***Programming Jakarta Struts, 2nd Edition Publisher: O'Reilly ISBN: 0596006519 "Programming Jakarta Struts, 2nd Edition" covers everything the successful first edition did and more. Now fully up to date with Struts 1.1, this new edition covers the latest material on tag libraries and the new JavaServerFaces (JSF) APIs, and it includes all-new chapters on JSF, JSTL/EL, and security. This book will save you time and headaches with its practical, here's-how-to-do-it approach to using the Struts Framework to its fullest potential. http://www.oreilly.com/catalog/0596006519/ Chapter 11, "The Validator Framework," is available online: http://www.oreilly.com/catalog/0596006519/chapter/index.html ***The Best Damn Windows 2003 Server Book Publisher: Syngress ISBN: 1931836124 Windows Server 2003 has more features and functionality in any one of its component services than existed in the entire Windows NT 4 operating system. This book distills the tens of thousands of pages of documentation for this complex enterprise OS into a concise, applied format that system administrators can use. Every aspect of planning, installing, configuring, and troubleshooting a Windows Server 2003 network is documented, with plenty of examples and illustrations. http://www.oreilly.com/catalog/1931836124/ ***Java Cookbook, 2nd Edition Publisher: O'Reilly ISBN: 0596007019 "Java Cookbook, 2nd Edition" has been completely revised and updated to cover all the major APIs from Java 1.4 as well as significant first-look recipes for the most important features of the new 1.5 version. Packed with hundreds of tried-and-true Java recipes, the book also covers many specialized APIs--like those for working with Struts, Ant, and other open source tools--and delivers expanded Mac OS X Panther coverage. This comprehensive collection of problems, solutions, and practical examples will serve well Java developers at all levels of expertise. http://www.oreilly.com/catalog/0596007019/ Chapter 8, "Data Structuring with Generics, foreach, and Enumerations (JDK 1.5)," is available online: http://www.oreilly.com/catalog/0596007019/chapter/index.html ***Google: The Missing Manual Publisher: O'Reilly ISBN: 0596006136 Google, the planet's most popular program for finding stuff on the web, has no manual. It may seem like an easy-to-use program, but Google has many hidden tricks and tools that can turn your simple searching into powerful--and successful--discoveries. You just have to know where to look. This book is your guide, covering search techniques and tricks, must-have tools, and those little-known corners of Google. Get more out of your Google searches with this friendly deskside companion. http://www.oreilly.com/catalog/googletmm/ Chapter 3, "Googling Further: Images, News, and the Directory," is available online: http://www.oreilly.com/catalog/googletmm/chapter/index.html ***Richard Thieme's Islands in the Clickstream Publisher: Syngress ISBN: 1931836221 "Islands in the Clickstream" is a series of thousand-word essays exploring social and cultural dimensions of technology and the larger concerns of our lives. Their focus ranges beyond the impact of technology to spirituality, psychological insight, and social commentary. The author's credibility and work as a professional speaker immersed in technology who was also an Episcopal priest for sixteen years provides a perfect platform for supporting the book. http://www.oreilly.com/catalog/1931836221/ ***CYA: Securing IIS 6.0 Publisher: Syngress ISBN: 1931836256 http://www.oreilly.com/catalog/1931836256/ ***CYA: Securing Exchange Server 2003 & Outlook Web Access Publisher: Syngress ISBN: 1931836248 http://www.oreilly.com/catalog/1931836248/ The CYA series are highly portable, easily digestible road-maps to configuring, maintaining and troubleshooting essential features, assuring that the reader has in fact covered their behind. ================================================ Upcoming Events ================================================ ***For more events, please see: http://events.oreilly.com/ ***Apple WWDC, San Francisco, CA--June 28-July 2 We'll have a great new selection of Mac developers books to choose from at this show. Moscone West Convention Center http://developer.apple.com/wwdc/ ***JavaOne, San Francisco, CA--June 28-July 1 Drop by our booth (#1416) to check out our latest Java offerings. Moscone Center, San Francisco, CA http://java.sun.com/javaone/ ***Edd Dumbill ("Linux Unwired"), GNOME User and Developer European Conference, Kristiansand, Norway--June 28-30 Author Edd Dumbill (Linux Unwired) speaks at the fifth annual GUADEC. Agder University College, Kristiansand, Norway http://2004.guadec.org/ ***James Duncan Davidson ("Mac OS X Panther Hacks," "Running Mac OS X Panther"), Apple Store, San Francisco, CA--June 30 James is a special guest speaker at the SF Apple Store, telling his story as a Java developer moving to the Mac and becoming a Cocoa developer. http://www.apple.com/retail/sanfrancisco/ ***Steve Bass ("PC Annoyances"), Anchorage Borders, Anchorage, AK--July 7, 2004 Steve visits the Anchorage Borders beginning at 7:00 p.m. Stop by to say hello and get your very own copy signed! http://www.bordersstores.com/stores/store_pg.jsp?storeID=88 ***Steve Bass ("PC Annoyances"), Alaska Computer Society PC Users Group, Anchorage, AK--July 8 Join Steve at the ACSPCUG monthly meeting. http://www.acs-pcug.org/index.htm ================================================ Conference News ================================================ ***O'Reilly Open Source Convention User Group Discount User Group use code DSUG when you register, and you'll get 20% To register, go to: http://conferences.oreillynet.com/cs/os2004/create/ord_os04 O'Reilly Open Source Convention Portland Marriott Downtown Portland, OR July 26-30, 2004 http://conferences.oreilly.com/oscon/ ================================================ News From O'Reilly & Beyond ================================================ --------------------- General News --------------------- ***Don't forget--Visit with O'Reilly Editors at 2004 USENIX Annual Tech Boston, MA--June 27-July 2 Come visit O'Reilly in the Partner Publisher Suite June 28-30. This conference includes: 6 days of training; renowned plenary speakers every morning; technical sessions every day; daily SIG sessions; and General and Freenix/Open Source refereed papers. Free exhibit & BOF registration available online. The conference runs June 27-July 2 in Boston, MA. http://www.usenix.org/usenix04/ ***O'Reilly Network Launches eDocuments Affordable, downloadable PDFs of premium O'Reilly Network content are now available covering topics such as digital media, Java versus .NET security, and web services, with new titles to be added regularly. There are no restrictions on your ability to save, copy, or print these documents, and you can instantly download a PDF from your O'Reilly account management page once you've purchased it online. For a closer look at our first batch of offerings, visit edocuments.oreilly.com/. http://www.oreillynet.com/pub/wlg/5112 ***Got an Gmail invite to share? Listen to Wil Wheaton ("Just a Geek") on the David Lawrence Show discussing his new project gmail4troops.com, which makes it easy to donate Google Gmail accounts to the US troops overseas. http://thedavidlawrenceshow.com/002007.html Just a Geek By Wil Wheaton Publisher: O'Reilly ISBN: 059600768X http://www.oreilly.com/catalog/jag/ --------------------- Open Source --------------------- ***The Open Source Paradigm Shift Tim O'Reilly writes about the lessons to be learned from the Open Source Movement in this article based on a talk he first gave at the Warburg-Pincus technology conference in May 2003. Find out why Tim says the open source story is far from over. http://tim.oreilly.com/opensource/paradigmshift_0504.html For more of Tim's writings, pay a visit to tim.oreilly.com. ***A Linux Quick Reference to Useful Commands Daniel J. Barrett, author of O'Reilly's "Linux Pocket Guide," has compiled a quick-reference guide to the most essential Linux commands and the tasks they perform. We are presenting this quick reference as a PDF download. Print it and keep it by your keyboard for quick answers to problems that arise. http://www.linuxdevcenter.com/pub/a/linux/excerpt/LinuxPG_quickref/index .html ***The Pragmatic Programmers Interview The Pragmatic Programmers, Andy Hunt and Dave Thomas, recently launched their own line of books on pragmatic software development. Since O'Reilly distributes their books, we convinced them to do an interview about self-publishing, the state of the software industry, and how to become better developers. http://www.onlamp.com/pub/a/onlamp/2004/06/24/pragmatic_programmers.html ***The Pragmatic Bookshelf: Pragmatic Unit Testing in C# with NUnit ISBN: 0974514020 http://www.oreilly.com/catalog/0974514020/ Pragmatic Unit Testing in Java with JUnit ISBN: 0974514012 http://www.oreilly.com/catalog/0974514012/ Pragmatic Version Control using CVS ISBN: 0974514004 http://www.oreilly.com/catalog/0974514004/ --------------------- Mac --------------------- ***Voice Recording Magic with the iPod Everyone knows that the iPod plays music unlike any other device, but many don't realize that it records clean audio, too. Here's a handy tutorial that shows you how to get started, then challenges your creativity with some nifty ideas about how to use these tools. http://www.macdevcenter.com/pub/a/mac/2004/06/22/ipod_recorder.html ***RSS: The Next Generation Syndicated summaries of web content are more popular than ever before, and the recent explosion of users has prompted some dramatic changes in the world of RSS software. Giles Turnbull takes a look at some of the latest offerings, including PulpFiction, Shrook, and of course, NetNewsWire. http://www.macdevcenter.com/pub/a/mac/2004/06/15/rss.html ***A Brief Introduction to GPS Photo Linking Digital cameras record EXIF data that tells us when we took a picture, but what if we want to know where too? David Goldwasser introduces us to using GPS positioning data with EXIF timestamps to build interactive maps showing pictures of markers. Typical of the kinds of hacks David contributed to O'Reilly's recently released "Digital Photography Hacks." http://www.macdevcenter.com/pub/a/mac/2004/06/15/gps_photo.html --------------------- Windows --------------------- ***Windows Server Hacks: Using Saved Queries to Find Locked Accounts Locked accounts can represent a serious security hole on your network. Mitch Tulloch, author of "Windows Server Hacks," shows you how to use saved queries to find them. http://www.windowsdevcenter.com/pub/a/windows/2004/06/22/locked_accounts .html ***Easily Purge Spyware, Adware, and Other Malware Think you're protected against spyware? Most likely you're not. J.W. Olsen reviews two of the best spyware killers you'll find anywhere: Ad-aware and Spybot. http://www.windowsdevcenter.com/pub/a/windows/2004/06/22/Spyware.html --------------------- Java --------------------- ***Using a JMS Provider with MDBs via the J2EE Connector Architecture Message-Driven Beans (MDBs) get a big boost in J2EE 1.4 via integration with the J2EE Connector Architecture (JCA), which opens up interesting possibilities to use messaging to and from legacy systems. Debu Panda shows how this can be accomplished. http://www.onjava.com/pub/a/onjava/2004/06/23/mdbjca.html ***Working with Hibernate in Eclipse Jim Elliott was curious about whether anyone had written plugins to work with Hibernate in Eclispe, as he'd just finished writing "Hibernate: A Developer's Notebook." It turns out there are several such efforts underway. In this article, Jim explores Hibernate Synchronizer--a plugin that automatically updates your Java code when you change your mapping document. http://www.onjava.com/pub/a/onjava/2004/06/23/hibernate.html --------------------- .NET --------------------- ***SP.NET Forms Security Jesse Liberty shows how easy it is to provide forms-based security via login screens and authentication in Whidbey. http://www.ondotnet.com/pub/a/dotnet/2004/06/14/liberty_whidbey.html ================================================ News From Your Peers ================================================ ***Share your Group's Secrets to Success on the O'Reilly UG Wiki List you tricks and experiences to share: http://wiki.oreillynet.com/usergroups/null?UGSuggestions Until next time-- Marsee ------------------------------------------------------- -- _/_ _ _ _/_ _ Perl-Usergroup Dresden (// (-_) (/(-/)./)//) immer am 1. Donnerstag / in der Lutherstraße 21 http://dresden.pm.org - mailto: info@dresden-pm.org From joerg.westphal at gmx.de Sat Jun 26 15:57:16 2004 From: joerg.westphal at gmx.de (Joerg Westphal) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Juli-Treffen In-Reply-To: <87acyrzs6l.fsf@lamebrain.teufelkommraus.webit.de> References: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> <87oena5uf8.fsf@lamebrain.teufelkommraus.webit.de> <87acyrzs6l.fsf@lamebrain.teufelkommraus.webit.de> Message-ID: <200406262257.16043.joerg.westphal@gmx.de> Und das schnitzte Steffen Schwigon ins Brett: > 15. Juli 2004 > 2o.oo Uhr > "Wir AG" Mifft. Da bin ich bis 15.00 Uhr in Fulda. Schätze, das wird verdammt knapp. Jörg From schwigon at webit.de Mon Jun 28 01:14:18 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:45 2004 Subject: [Dresden-pm] Re: Juli-Treffen In-Reply-To: <200406262257.16043.joerg.westphal@gmx.de> (Joerg Westphal's message of "Sat, 26 Jun 2004 22:57:16 +0200") References: <87u0x77m9c.fsf@lamebrain.teufelkommraus.webit.de> <87oena5uf8.fsf@lamebrain.teufelkommraus.webit.de> <87acyrzs6l.fsf@lamebrain.teufelkommraus.webit.de> <200406262257.16043.joerg.westphal@gmx.de> Message-ID: <877jtsky4l.fsf@lamebrain.teufelkommraus.webit.de> Joerg Westphal writes: > Und das schnitzte Steffen Schwigon ins Brett: > >> 15. Juli 2004 >> 2o.oo Uhr >> "Wir AG" > > Mifft. Da bin ich bis 15.00 Uhr in Fulda. Schätze, das wird verdammt > knapp. Ihr könnt ja diese Woche noch bissel beratschlagen. Die Option "8.Juli in einer Kneipe" ist ja auch noch offen. Was sagen die anderen? GreetinX Steffen -- Steffen Schwigon From schwigon at webit.de Wed Jun 30 10:13:53 2004 From: schwigon at webit.de (Steffen Schwigon) Date: Mon Aug 2 21:29:46 2004 Subject: [Dresden-pm] Gruesse Message-ID: <87y8m5f58u.fsf@lamebrain.teufelkommraus.webit.de> Hi Leute! Gruesse vom Perlworkshop! Dresden Perl Mongers sind jetzt deutschlandweit einen Tick bekannter. :-) GreetinX Steffen -- Steffen Schwigon