From c.duehl at gmx.de Fri Apr 3 00:04:25 2009 From: c.duehl at gmx.de (c.duehl at gmx.de) Date: Fri, 03 Apr 2009 09:04:25 +0200 Subject: [Bielefeld-pm] Fwd: UG News: Discount for O'Reilly Open Source Convention (OSCON) Message-ID: <20090403070425.255840@gmx.net> -------- Original-Nachricht -------- Datum: Thu, 02 Apr 2009 12:16:02 -0800 Von: "Marsee Henon" An: c.duehl at gmx.de Betreff: UG News: Discount for O\'Reilly Open Source Convention (OSCON) Hi-- OSCON Registration is open. Here's a discount you can pass along to your members through your mailing list or at your meetings: The 2009 O'Reilly Open Source Convention Moves to San Jose, CA-- Registration Now Open, So Make Your Plans. In trying times such as these, saving money becomes a bigger priority for everyone. While challenging, the current global situation provides the open source community with the opportunity to sustain, apply, and expand open source to change the world. Use code "os09usrg" when you register, and receive 20% off the registration price. Early registration ends on June 2. To register for the conference, go to: OSCON 2009 July 20-24, 2009 San Jose McEnery Convention Center 150 West San Carlos St. San Jose, CA 95113 Follow OSCON on your favorite social networking site: Facebook Twitter (or look for #OSCON) Identi.ca LinkedIn Hope to see you there, Marsee ================================================================ Marsee Henon User Group Manager O'Reilly 1005 Gravenstein Highway North Sebastopol, CA   95472 800-998-9938, 707-827-7103 marsee at oreilly.com http://ug.oreilly.com/ Follow us on Twitter at http://twitter.com/OReillyMedia You are receiving this email because you are a User Group  contact with O'Reilly Media. If you would like to stop  receiving these newsletters or announcements from O'Reilly,  send an email to marsee at oreilly.com ================================================================ From taulmarill at xgn.de Wed Apr 15 04:23:50 2009 From: taulmarill at xgn.de (taulmarill at xgn.de) Date: Wed, 15 Apr 2009 13:23:50 +0200 (CEST) Subject: [Bielefeld-pm] =?iso-8859-1?q?Sudoku_l=F6sen_in_D?= Message-ID: <36318.88.198.157.42.1239794630.squirrel@webmail.xgn.de> Hallo, hatte nach dem letzten Treffen ganz vergessen, dass ich ja noch was schreiben wollte. Also, ich bin Momentan dabei, mir D anzuschauen und habe mir zum lernen vorgenommen, mein Sudoku-Löseprogramm von Perl nach D zu übersetzen. Hier erst mal die Perlversion: -------- my $fieldstring = $ARGV[0]; if ( ! $fieldstring or $fieldstring !~ /^[\d.]{81}$/ ) { die 'Fehlerhaftes Feld!'; } my @block = ( [ 1, 2 ], [ 0, 2 ], [ 0, 1 ], [ 4, 5 ], [ 3, 5 ], [ 3, 4 ], [ 7, 8 ], [ 6, 8 ], [ 6, 7 ], ); my @fieldr = map{ [ split //, $_ ] } $fieldstring =~ /(.{9})/g; print join(' ',@$_) . "\n" for @fieldr; my @fieldc = map{ my $x = $_; [ map{ $fieldr[$_]->[$x] } 0 .. 8 ] } 0 .. 8; my @empty = map{ @$_ } sort{ @$a <=> @$b } map{ my $y = $_; [ map{ [ $_, $y ] }grep{ $fieldr[$y]->[$_] eq '.' } 0..8 ] } 0..8; my %candidates; brute_force( @empty ); sub brute_force { unless ( @_ ) { print_solved(); return; } my( $x, $y ) = @{ shift() }; @candidates{ 1,2,3,4,5,6,7,8,9, @{ $fieldr[$y] }, @{ $fieldc[$x] }, @{ $fieldr[$block[$y]->[0]] }[@{ $block[$x] }], @{ $fieldr[$block[$y]->[1]] }[@{ $block[$x] }], } = (1,1,1,1,1,1,1,1,1, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0, 0,0,0,0,0,); for ( grep{ $candidates{$_} } keys %candidates ) { $fieldc[$x]->[$y] = $fieldr[$y]->[$x] = $_; brute_force( @_ ); } $fieldc[$x]->[$y] = $fieldr[$y]->[$x] = '.'; } sub print_solved { print "\n"; print join( ' ', @$_ ) . "\n" for @fieldr; print "\n"; } -------- Zur Erinnerung: das Script erwartet als erstes Argument ein Sudoku in Form eine 81 Zeichen langen Strings. Zum testen nehme ich bei mir folgendes: ...........9.6.3...7.3.4.9...72.86...4.....7...21.65...1.9.5.4...8.2.7........... Mit meiner D-Version bin ich zwar noch nicht fertig (vermisse doch einigen Komfort von Perl) aber hier ist was ich bis jetzt habe: -------- import std.stdio; void main( char[][] args ) { if ( (args.length != 2) || (args[1].length != 81) ) { writefln( "Fehlerhaftes Feld!" ); return 0; } int[][] block = [ [ 1, 2 ], [ 0, 2 ], [ 0, 1 ], [ 4, 5 ], [ 3, 5 ], [ 3, 4 ], [ 7, 8 ], [ 6, 8 ], [ 6, 7 ], ]; char[9][9] fieldr, fieldc; int[2][] empty; for (int x = 0; x <= 8; x++ ) { fieldr[x][0..9] = args[1][x*9..x*9+9]; for (int y = 0; y <= 8; y++) { fieldc[y][x] = fieldr[x][y]; if ( fieldr[x][y] == '.' ) { empty ~= [x,y]; } } } print_field( fieldr ); } void print_field ( char[9][9] field ) { foreach ( row; field ) { foreach ( square; row ) { writef( "%s ", square ); } writefln(); } } -------- Zur Zeit frage ich mich ein bisschen, wie ich das Array empty möglicht einfach sortieren kann. So was wie Perls sort habe ich nicht finden können. Gruß, Jürgen From c.duehl at gmx.de Thu Apr 16 23:50:53 2009 From: c.duehl at gmx.de (c.duehl at gmx.de) Date: Fri, 17 Apr 2009 08:50:53 +0200 Subject: [Bielefeld-pm] Fwd: Newsletter from O'Reilly UG Program, April 16 Message-ID: <20090417065053.81360@gmx.net> -------- Original-Nachricht -------- Datum: Thu, 16 Apr 2009 14:21:46 -0700 Von: "Marsee Henon" An: c.duehl at gmx.de Betreff: Newsletter from O\'Reilly UG Program, April 16 Hi there, We've got a couple of ug/community leader events to share-- Coming up on May 2nd we've joined with Microsoft to organize a Northeast community/user group leader summit. Together we can help each other by sharing our experiences of running a user group. We'll discuss building community, finding relevant meeting topics in today's economy, attracting and keeping members, using social media and other tools to get the word out, working with vendors, and collaborating on group events. We're going to focus on the mechanics of running a group and not the technical content. This event is open to UG leaders in the Northeast region of the US only. For more details and to RSVP go to Then in July, Jono Bacon, the author of the upcoming "Art Of Community" to be published by O'Reilly in August, and Ubuntu Community Manager, has organized a Community Leadership Summit designed for community managers, leaders and organizers of all kinds (that includes user group leaders too!). The summit takes place July 18th and 19th at the San Jose McEnery Convention Center in San Jose immediately before O'Reilly's Open Source Convention (OSCON). The summit is entirely free but requires pre-registration at . O'Reilly needs your help! Dave Hoover and Adewale Oshineye, authors of the upcoming book "Apprenticeship Patterns," are looking for people to share stories of career development that may be relevant to the book . Please email Dave Hoover with your story to share about your own career development experiences as you think it relates to aprenticeship patterns. Here's a recent Rubiverse podcast by Dave Hoover on Software Craftsmanship: And if you haven't yet, make sure you check out our new Ignite shows --weekly releases of talks for and by geeks. The latest episode features Monica Guzman on Being an Awesome News Commenter. You can find the Ignite Show on iTunes at http://bit.ly/ignite or our site at Travel update: I'll be in the Cambridge/Boston area on May 1-3 for the Northeast UG summit. If you can't make it on Saturday, let me know if there's another time we can get together. Then I'll be making my way to New York City for a couple of days if anyone would like to get together there. Send me an email. I'll also be attending TechEd in Mid May in Los Angeles. --Marsee ================================================================ O'Reilly UG Program News--Just for User Group Leaders April 16, 2009 ================================================================ Put Up a Banner, Get a Free Book We're looking for user groups to display our discount banners on their web sites. If you send me your group's site with one or more banners, I'll send you the O'Reilly book(s) of your choice. Choose from the following list: OSCON Banners O'Reilly School of Technology Banners Customizable O'Reilly Book Widgets 35% off User Group Discount Banners ================================================================ O'Reilly News for User Group Members April 16, 2009 ================================================================ --------------------------------------------------------------- New Releases--Books, Short Cuts, and Rough Cuts ---------------------------------------------------------------- Get 35% off from O'Reilly, No Starch, Paraglyph, PC Publishing, Pragmatic Bookshelf, Rocky Nook, SitePoint, or YoungJin books and ebooks you purchase directly from O'Reilly. Just use code DSUG when ordering online or by phone 800-998-9938. Free ground shipping on orders of $29.95 or more. For more details, go to: Did you know you can request a free book, ebook, or PDF to review for your group? Ask your group leader for more information. For book review writing tips and suggestions, go to: New Releases: Beautiful Security Cloud Application Architectures Colin Moock's Lost ActionScript 3.0 Weekend Course 1 Colin Moock's Lost ActionScript 3.0 Weekend Course 2 Computer Orchestration Tips and Tricks (PC Publishing) Gray Hat Python (No Starch) iMovie '09 and iDVD: The Missing Manual iPhone Hacks iPhoto '09: The Missing Manual Learning Flash CS4 Professional Learning SQL, Second Edition Practical Programming (Pragmatic Bookshelf) Programming Clojure (Pragmatic Bookshelf) Programming Ruby 1.9 (Pragmatic Bookshelf) Sound Equalization Tips and Tricks (PC Publishing) The DAM Book, Second Edition MAKE Magazine Subscriptions The annual subscription price for four issues is $34.95. When you subscribe with this link, you'll get a free issue--one plus four more for $34.95. So subscribe for yourself or friends with this great offer for UG Members: five volumes for the cost of four. Subscribe at: ================================================ Upcoming Author Events ================================================ For more events, please see: Dux Raymond Sy presents "5 Ways to Enhance SharePoint Site Usability" at SharePoint Saturday Atlanta Apr 18, 2009 Microsoft Atlanta Alpharetta, GA, USA SharePoint is unlike existing technologies users are familiar with. In certain cases, out of the box SharePoint site interface and layout is not as intuitive to the greater user community. In this presentation from Dux Raymond Sy (SharePoint for Project Management), you will acquire the practical knowledge of improving SharePoint usability to increase user adoption in leveraging SharePoint for collaboration. Allison Randal at BALUG Apr 21, 2009 San Francisco, CA Allison Randal (Perl 6 and Parrot Essentials) is chief architect and lead developer of the open source project Parrot. She also works for O'Reilly Media, planning the program for their Open Source Convention (OSCON). O'Reilly Authors at JSConf 2009 Apr 24-25, 2009 Hotel Palomar Arlington, VA Meet industry experts and learn how to use JavaScript to build cutting edge mobile, desktop, server and web applications. Author Chris Anderson (Couchdb: The Definitive Guide Rough Cuts Version) will walk attendees through hello world with CouchApps and explain new possibilities they open up; author Andrew Turner (Introduction to Neogeography) will discuss the ability to script real-world events and behaviors such as traffic patterns, pedestrians, urban situations, warfare simulations, and vehicle testing. Ben Fry at Western Mass Developers Group May 5, 2009 243 King St Northampton, MA Author Ben Fry (Visualizing Data) will be presenting "Computational Information Design"--a mix of his work in visualization and coding, plus just a quick introduction/mention of Processing. George Heineman Presents "Algorithms Unleashed: A Practical Approach to Programming Algorithms" May 9, 2009 MIT Tang Center/E51-345 Cambridge, MA, USA The Greater Boston Chapter of the ACM will sponsor a full-day seminar by George Heineman, co-author of Algorithms in a Nutshell. This seminar is designed for software practitioners, programmers, and designers. Here you will find algorithmic templates to solve common problems that arise in many types of software systems. You will learn how to evaluate trade-offs between algorithms and how to test whether the algorithm is working correctly in your system. ================================================ Conferences and Special Events ================================================ User Group Discount Information for our upcoming conferences: OSCON 2009 July 20-24, 2009 San Jose, CA The 2009 O'Reilly Open Source Convention Moves to San Jose, CA-- Registration Now Open, So Make Your Plans Use code "os09usrg" when you register, and receive 20% off the registration price. Early registration ends on June 2. To register for the conference, go to: --- O'Reilly Velocity Conference June 22-24, 2009 The Fairmont San Jose, San Jose, CA Attending Velocity makes you competitive immediately because it is rooted in practical application, sending you back to work with a deeper understanding of how the technology and applications you deploy can accelerate performance and deliver a better front end experience. Use code "vel09usrg" when you register, and receive 20% off the registration price. Early registration ends on May 3. To register for the conference, go to: For a complete list of conferences, go to: http://conferences.oreilly.com/ --- Ignite If you had five minutes on stage what would you say? What if you only got 20 slides and they rotated automatically after 15 seconds? Around the world geeks have been putting together Ignite nights to show their answers. Create your own Ignite in your area Upcoming Ignite events: Ignite Santa Fe April 29, 2009 624 Agua Fria Santa Fe NM, USA http://ignite.oreilly.com/2009/03/ignite-santa-fe.html Ignite Sydney 2 May 14, 2009 2-4 Oxford St Darlinghurst NSW, Australia http://ignite.oreilly.com/2009/04/announcing-ignite-sydney-2.html For more events, go to ================================================ O'Reilly School of Technology ================================================ O'Reilly School of Technology Courses: UG Members Receive a 30% Discount By enrolling in the O'Reilly School of Technology, you can stay competitive in Information Technology without the high cost or huge time commitment. Our courses work around YOUR schedule, not the other way around. And within months, not only will you have the University of Illinois Certificate to display on your resume, you'll also have a portfolio of projects that are sure to impress in your interviews! OST's full-price tuitions are already lower than comparable continuing education or community college courses. However, as an O'Reilly User Group member, you save an additional 30% on all the courses in the following University of Illinois Certificate Series: -New--Database Administration Certificate -Java Programming -PHP/SQL Programming -Linux/Unix System Administration -Web Programming -Open Source Programming -.NET Programming -Client-Side Web Programming featuring AJAX To redeem, use Promotion Code "ORALL1" good for a 30% discount, in Step #2 of the enrollment process. Each course comes with a free O'Reilly book and a 7-day money-back guarantee. Register online: (This discount is not combinable with other offers.) ================================================ News From O'Reilly & Beyond ================================================ --------------------- News & Blogs --------------------- Learn to Build iPhone Apps in 2 days with O'Reilly's New Workshop If you have familiarity with the Mac and basic experience with object-oriented programming (such as Java or Visual Studio), you have what it takes to build today's most popular--and lucrative-- applications. Instructor Joe Heck, iPhone app developer from Walt Disney Interactive Media Group, will quickly get you up to speed on the basics, including the Cocoa programming environment, Xcode suite of tools, the Objective-C language, and a new tool to help you debug your applications. During the workshop, you'll create two real iPhone apps, compile them, and install them on a device. Dates and locations: * May 16 & 17 in San Francisco * June 27 & 28 in Chicago * August 8 & 9 in Los Angeles * September 19 & 20 in Seattle User Group members receive a 30% discount with code DSUG when you register online 2 Upcoming Webcasts--XBRL and How to Build a Lean Startup We have upcoming webcasts you will not want to miss! Join us April 22nd for XBRL: the what, why and who... - learn from Charlie Hoffman, credited as the "Father of XBRL." And on May 1st, Eric Ries presents How to Build a Lean Startup, step-by-step. Register online or watch past webcasts at BarCamp Boston 4, Cambridge, MA--April 25th and 26th BarCamp is an unConference, organized on the fly by attendees, for attendees. There is no registration fee, but you don't just attend a BarCamp--you can participate in discussions, demo your projects, or join into another cooperative event. Topics may include, but are not limited to: open source software, startups, UI design, entrepreneurship, AJAX, hardware hacking, robotics, mobile computing, bioinformatics, RSS, Social Software, programming languages, and the future of technology. Open Source Bridge, Portland, OR--June 17-19 Open Source Bridge is a new conference for developers working with open source technologies. It will take place June 17-19 in Portland, OR, with five tracks connecting people across projects, languages, and experience to explore how we do our work, and why we participate in open source. The conference structure is designed to provide developers with an opportunity to learn from people they might not connect with at other events. Open Source Bridge is intended as a call to action to become better citizens, by sharing our knowledge with each other. All members of User Groups are entitled to a substantial discount on registration. Find out more at: Submit your proposal: Cloud Computing--an Excerpt from Cloud Application Architectures The hallmark of any buzzword is its ability to convey the appearance of meaning without conveying actual meaning. To many people, the term cloud computing has the feel of a buzzword. In this excerpt from Cloud Application Architectures, author George Reese explains just what the cloud is--in terms anyone can understand--and why it has value to your organization. New O'Reilly Insights on Forbes--Joshua-Michele Ross on Why Business Needs to Get Social "There is a reason that the word "social" is being applied as a prefix everywhere--from social media, social computing and the social Web to social capital and the social enterprise," writes Joshua-Michele Ross in a new O'Reilly Insights column on Forbes.com. "Why is our society massively adopting social technologies? Because we can." In the column, Ross explores how new social technologies are changing the way business is conducted. Find out if you agree with Ross' views. Safari Books Online lets you carry around over 7,000 books in your pocket The new website, m.safaribooksonline.com, optimizes Safari Books Online's content and reading experience for the majority of mobile phones (such as Nokia, BlackBerry, iPhone, and Windows Mobile), making it possible for users to read while on-the-go. The streamlined interface includes the most popular features such as basic search, advanced search, bookmarks, and favorites. Also included is new functionality like "Last viewed page" and "Last search" for quick access from your cell phone or mobile device. Guess the Book, Episode Two - Back on the Streets of Sebastopol This second episode of Guess the Book leads Sara Peyton and her trusty videographer, armed with a copy of Programming ASP.NET 3.5, to the offices of a local newspaper where one willing volunteer attempts to decipher the book's cover. Now it's your turn to help out--which book should we use for our next episode and why? Did Cartoonist Robert Crumb Predict Twitter? An Excerpt from Twitter API: Up and Running Face it. Few of us can resist Twitter's magnetic tug. We want more and more. And now you can indulge your Twitter addiction with a new book from O'Reilly, Twitter API: Up and Running by Kevin Makice. The new book gives you the skills and resources necessary to build web apps for Twitter. And to whet your appetite we offer a brief excerpt and this question. Did cartoonist Robert Crumb predict Twitter? Until next time-- Marsee Henon ================================================================ O'Reilly 1005 Gravenstein Highway North Sebastopol, CA 95472 800-998-9938 http://ug.oreilly.com/ Follow us on Twitter at http://twitter.com/OReillyMedia You are receiving this email because you are a User Group contact with O'Reilly Media. If you would like to stop receiving these newsletters or announcements from O'Reilly, send an email to marsee at oreilly.com ================================================================ From taulmarill at xgn.de Thu Apr 23 07:13:56 2009 From: taulmarill at xgn.de (taulmarill at xgn.de) Date: Thu, 23 Apr 2009 16:13:56 +0200 (CEST) Subject: [Bielefeld-pm] =?iso-8859-1?q?Sudoku_l=F6sen_in_D?= In-Reply-To: <36318.88.198.157.42.1239794630.squirrel@webmail.xgn.de> References: <36318.88.198.157.42.1239794630.squirrel@webmail.xgn.de> Message-ID: <42821.88.198.157.42.1240496036.squirrel@webmail.xgn.de> Hallo, so, ich hab mir das Programm noch mal vorgenommen und es zu einer lauffähigen Version geschafft. Am Mi, 15.04.2009, 13:23, schrieb taulmarill at xgn.de: > Zur Zeit frage ich mich ein bisschen, wie ich das Array empty möglicht > einfach sortieren kann. So was wie Perls sort habe ich nicht finden > können. Ich weiß zwar immer noch nicht, wie ich das Array vernünftig sortieren kann und hab's daher einfach erst mal außen vor gelassen. Die Sortierung von empty war eh nur eine Performanceoptimierung und da D ja wesentlich schneller ist als Perl, fällt das noch nicht mal auf. Btw. nächsten Dienstag ist wieder der letzte des Montas, hast du zeit? Gruß, Jürgen -------------- nächster Teil -------------- Ein Dateianhang mit Binärdaten wurde abgetrennt... Dateiname : sudoku.d Dateityp : application/octet-stream Dateigröße : 1797 bytes Beschreibung: nicht verfügbar URL : From taulmarill at xgn.de Sun Apr 26 13:33:36 2009 From: taulmarill at xgn.de (=?ISO-8859-1?Q?J=FCrgen_Peters?=) Date: Sun, 26 Apr 2009 22:33:36 +0200 Subject: [Bielefeld-pm] =?iso-8859-1?q?N=E4chstes_Treffen?= Message-ID: Hallo, da ich auf meine letzte Mail keine Antwort bekommen habe wollte ich noch mal nachfragen, ob diesen Dienstag jemand zu Treffen kommt. Gruß, Jürgen From mailinglisten at renee-baecker.de Wed Apr 29 00:32:34 2009 From: mailinglisten at renee-baecker.de (mailinglisten at renee-baecker.de) Date: Wed, 29 Apr 2009 09:32:34 +0200 Subject: [Bielefeld-pm] Fwd: send-a-newbie Message-ID: <20090429_073234_050531.mailinglisten@renee-baecker.de> Ich finde, das ist eine tolle Idee um mehr junge Leute in die Perl-Community zu integrieren. ====== Hello, Please could you pass this email on to your PM group if you think it would be of interest to them. The Send-a-Newbie project is raising money for young Perl programmers to attend YAPC::Europe this year in Lisbon, Portugal. http://www.send-a-newbie.com/ So far they've raised 965 Euros - which will be enough to send at least two people. However there are 21 applicants for funding so more donations are needed. If you're able to donate please do so. By getting people into the community earlier they'll contribute more and we'll all benefit. It'll also demonstrate to the outside world that the Perl community is alive, vibrant and supportive (we all know this of course). Please also help by spreading the word. You can do this by adding a link in your email signature, blogging and so on. Especially useful would be to forward this email to internal mailing lists to reach people who might not read the main lists. The more people we reach the more we can help. Thank you, Edmund. From felix.ostmann at thewar.de Wed Apr 29 01:00:52 2009 From: felix.ostmann at thewar.de (Felix Antonius Wilhelm Ostmann) Date: Wed, 29 Apr 2009 10:00:52 +0200 Subject: [Bielefeld-pm] Fwd: send-a-newbie In-Reply-To: <20090429_073234_050531.mailinglisten@renee-baecker.de> References: <20090429_073234_050531.mailinglisten@renee-baecker.de> Message-ID: <49F80934.4070306@thewar.de> Wo wir gerade dabei sind: http://www.heise.de/newsticker/Blogging-fuer-Perl--/meldung/136876 Matt hat auf dem nordic perlworkshop in Oslo dies in einem extra Vortrag laut angekündigt und ich finde es auch eine sehr gute Idee (wie send-a-newbie), allerdings bin ich kein wirklicher Blogger :-/ Aber vielleicht findet sich unter euch ja jemand, der da gerne mitmachen möchte :) Sprache ist egal, wir sprechen alle Perl ;) mailinglisten at renee-baecker.de schrieb: > Ich finde, das ist eine tolle Idee um mehr junge Leute in die Perl-Community zu integrieren. > > ====== > > Hello, > > Please could you pass this email on to your PM group if you think it > would be of interest to them. > > The Send-a-Newbie project is raising money for young Perl programmers > to attend YAPC::Europe this year in Lisbon, Portugal. > > http://www.send-a-newbie.com/ > > So far they've raised 965 Euros - which will be enough to send at > least two people. However there are 21 applicants for funding so more > donations are needed. > > If you're able to donate please do so. By getting people into the > community earlier they'll contribute more and we'll all benefit. It'll > also demonstrate to the outside world that the Perl community is > alive, vibrant and supportive (we all know this of course). > > Please also help by spreading the word. You can do this by adding a > link in your email signature, blogging and so on. Especially useful > would be to forward this email to internal mailing lists to reach > people who might not read the main lists. The more people we reach the > more we can help. > > Thank you, > Edmund. > > _______________________________________________ > Bielefeld-pm mailing list > Bielefeld-pm at pm.org > http://mail.pm.org/mailman/listinfo/bielefeld-pm > -- Reserve your abuse for your true friends. -- Larry Wall in <199712041852.KAA19364 at wall.org> From mailinglisten at renee-baecker.de Wed Apr 29 01:29:44 2009 From: mailinglisten at renee-baecker.de (=?ISO-8859-1?Q?Renee_B=E4cker?=) Date: Wed, 29 Apr 2009 10:29:44 +0200 Subject: [Bielefeld-pm] Fwd: send-a-newbie In-Reply-To: <49F80934.4070306@thewar.de> References: <20090429_073234_050531.mailinglisten@renee-baecker.de> <49F80934.4070306@thewar.de> Message-ID: <49F80FF8.3080705@renee-baecker.de> Hi! Felix Antonius Wilhelm Ostmann schrieb: > Wo wir gerade dabei sind: > > http://www.heise.de/newsticker/Blogging-fuer-Perl--/meldung/136876 Da muss ich doch mal hemmungslos Eigenwerbung betreiben: http://perl-nachrichten.de/index.cgi/details/480 Ich war schneller als Heise ;-) > > Matt hat auf dem nordic perlworkshop in Oslo dies in einem extra Vortrag > laut angekündigt und ich finde es auch eine sehr gute Idee (wie > send-a-newbie), allerdings bin ich kein wirklicher Blogger :-/ Aber > vielleicht findet sich unter euch ja jemand, der da gerne mitmachen > möchte :) Allein mir fehlt die Zeit :-( > Sprache ist egal, wir sprechen alle Perl ;) > -- Perl-Magazin: http://perl-magazin.de Perl-Nachrichten: http://perl-nachrichten.de