From mailinglisten at renee-baecker.de Sun Jan 2 00:57:51 2011 From: mailinglisten at renee-baecker.de (mailinglisten at renee-baecker.de) Date: Sun, 2 Jan 2011 09:57:51 +0100 Subject: [Bielefeld-pm] Aggregator deutschsprachiger Perlblogs Message-ID: <20110102_085751_030947.mailinglisten@renee-baecker.de> Der Vorschlag eines Aggregators deutschsprachiger Perl-Blogs wurde schon vor längerer bei den Frankfurt Perlmongers diskutiert. Gestern habe ich mich dann mal hingesetzt, Perlanet installiert und eingerichtet. Perlanet braucht HTML::Tidy, was widerum tidyp braucht. Auf meinem Server gibt es das nicht als Paket, also musste ich mir das selbst bauen. Danach klappte die Installation von Perlanet und HTML::Tidy einwandfrei. Das Ding ist schnell konfiguriert. Dann noch Cronjob eingerichtet, der momentan alle Stunde läuft - und schon steht planet.perl-magazin.de (http://planet.perl-magazin.de/). Dort gibt's auch die Liste mit den eingebundenen Blogs. Falls noch etwas fehlt, dann bitte Bescheid geben. From taulmarill at xgn.de Sun Jan 2 11:50:27 2011 From: taulmarill at xgn.de (=?iso-8859-1?Q?J=FCrgen_Peters?=) Date: Sun, 2 Jan 2011 20:50:27 +0100 Subject: [Bielefeld-pm] Treffen am Dienstag Message-ID: <3207E76C-FF94-4BB1-A2E5-AD64E93F18D8@xgn.de> Hallo, wollte noch mal an das Treffen erinnern, vor allem da der Termin außer der Reihe ist, und bei der Gelegenheit nachfragen, wer alles kommt. Gruß, Jürgen From nils at diewald-online.de Mon Jan 3 04:39:11 2011 From: nils at diewald-online.de (Nils Diewald) Date: Mon, 03 Jan 2011 13:39:11 +0100 Subject: [Bielefeld-pm] Treffen am Dienstag In-Reply-To: <3207E76C-FF94-4BB1-A2E5-AD64E93F18D8@xgn.de> References: <3207E76C-FF94-4BB1-A2E5-AD64E93F18D8@xgn.de> Message-ID: <6816_1294058320_ZZh0g5713yiq_.00_4D21C36F.4070909@diewald-online.de> Bin dabei! Viele Grüße und ein frohes neues Jahr allerseits! Nils Am 02.01.2011 20:50, schrieb Jürgen Peters: > Hallo, > > wollte noch mal an das Treffen erinnern, vor allem da der Termin außer der Reihe ist, und bei der Gelegenheit nachfragen, wer alles kommt. > > > Gruß, > Jürgen > _______________________________________________ > Bielefeld-pm mailing list > Bielefeld-pm at pm.org > http://mail.pm.org/mailman/listinfo/bielefeld-pm From oberwahrenbrock at gmx.de Tue Jan 4 06:11:53 2011 From: oberwahrenbrock at gmx.de (Stefan Oberwahrenbrock) Date: Tue, 04 Jan 2011 15:11:53 +0100 Subject: [Bielefeld-pm] Treffen am Dienstag In-Reply-To: <3207E76C-FF94-4BB1-A2E5-AD64E93F18D8@xgn.de> References: <3207E76C-FF94-4BB1-A2E5-AD64E93F18D8@xgn.de> Message-ID: <4D232AA9.4010307@gmx.de> Hallo zusammen, ich kann heute leider nicht dabei sein. Grüße, Stefan Am 02.01.2011 20:50, schrieb Jürgen Peters: > Hallo, > > wollte noch mal an das Treffen erinnern, vor allem da der Termin außer der Reihe ist, und bei der Gelegenheit nachfragen, wer alles kommt. > > > Gruß, > Jürgen > _______________________________________________ > Bielefeld-pm mailing list > Bielefeld-pm at pm.org > http://mail.pm.org/mailman/listinfo/bielefeld-pm From nils at diewald-online.de Wed Jan 5 07:57:55 2011 From: nils at diewald-online.de (Nils Diewald) Date: Wed, 05 Jan 2011 16:57:55 +0100 Subject: [Bielefeld-pm] Package-Variablen bei Vererbung Message-ID: <26742_1294243076_ZZh0g3g2jC0PI.00_4D249503.30202@diewald-online.de> Hallo! Gestern diskutierten wir ein Perl-Problemchen, das mir Kopfzerbrechen bereitete und das wir gestern auch nicht lösen konnten: In einer Klasse wollte ich ein globales Array durch eine Basis-Klasse (die nur get-set-Accessors bereitstellt) zur Verfügung stellen lassen, das alle Methoden enthält, die durch die get-setter-Methoden instantiiert wurden. Soeben hat mir Jürgen (Danke!!!) die Lösung gemailt, die vermutlich zu naheliegend war (ich hatte mit Closures in der Import-Methode gespielt, etc.). Das Script, das das Problem illustriert und die Lösung enthält, habe ich beigefügt. Hat mich allerdings auf ein neues Problem gestoßen: "use base '...'" triggert nicht die "import"-Methode, die ich eigentlich zur Zurücksetzung des Arrays missbrauchen wollte (z.B. beim Reloading des Moduls in Mojolicious ...). In dem Fall ist ein Hash statt eines Arrays wohl besser geeignet. Beste Grüße, Nils -------------- nächster Teil -------------- #!/usr/bin/env perl package Fundamental; # Acessor-Klasse use strict; use warnings; no warnings 'once'; sub new { return bless {}, $_[0]; }; # Accessor-Methode: sub get_set { my ($class, $att) = @_; my $code = <{'$att'} if exists \$_[0]->{'$att'}; return undef; }; \$_[0]->{'$att'} = \$_[1]; }; SUBEND no strict 'refs'; *{"${class}::$att"} = eval $code; # Juergens Loesung: push(@{ "${class}::keys" }, $att); }; package Car; use base 'Fundamental'; __PACKAGE__->get_set('door'); __PACKAGE__->get_set('wheel'); sub rally_stripes { 'no' }; package House; use base 'Fundamental'; __PACKAGE__->get_set('door'); __PACKAGE__->get_set('window'); sub garage { 1; }; package main; use strict; use feature 'say'; my $casa = House->new; $casa->door(4); say $casa->door; say $casa->window; # Undef! say 'House has ', join(', ', @House::keys); say 'Car has ', join(', ', @Car::keys); From c.duehl at gmx.de Sun Jan 9 23:22:06 2011 From: c.duehl at gmx.de (c.duehl at gmx.de) Date: Mon, 10 Jan 2011 08:22:06 +0100 Subject: [Bielefeld-pm] Treffen am Dienstag In-Reply-To: <3207E76C-FF94-4BB1-A2E5-AD64E93F18D8@xgn.de> References: <3207E76C-FF94-4BB1-A2E5-AD64E93F18D8@xgn.de> Message-ID: <20110110072206.4710@gmx.net> Hallo zusammen, an dem Tag bin ich gerade umgezogen, nun ist alles so weit geschafft, bis auf einige noch auszupackende Kisten, dass dem nächsten Treffen nun hoffentlich nichts im Wege steht. Ich nehme an, das findet ganz normal am 25. statt? Gruß Christian -------- Original-Nachricht -------- > Datum: Sun, 2 Jan 2011 20:50:27 +0100 > Von: "Jürgen Peters" > An: Mailingliste der Bielefeld Perl Mongers > Betreff: [Bielefeld-pm] Treffen am Dienstag > Hallo, > > wollte noch mal an das Treffen erinnern, vor allem da der Termin außer > der Reihe ist, und bei der Gelegenheit nachfragen, wer alles kommt. > > > Gruß, > Jürgen > _______________________________________________ > Bielefeld-pm mailing list > Bielefeld-pm at pm.org > http://mail.pm.org/mailman/listinfo/bielefeld-pm From taulmarill at xgn.de Mon Jan 10 01:34:28 2011 From: taulmarill at xgn.de (taulmarill at xgn.de) Date: Mon, 10 Jan 2011 10:34:28 +0100 (CET) Subject: [Bielefeld-pm] Treffen am Dienstag In-Reply-To: <20110110072206.4710@gmx.net> References: <3207E76C-FF94-4BB1-A2E5-AD64E93F18D8@xgn.de> <20110110072206.4710@gmx.net> Message-ID: <374844fb725c8ccfe2376f5ddc589a86.squirrel@webmail.xgn.de> Am Mo, 10.01.2011, 08:22, schrieb c.duehl at gmx.de: > Hallo zusammen, > > an dem Tag bin ich gerade umgezogen, nun ist alles so weit geschafft, bis > auf einige noch auszupackende Kisten, dass dem nächsten Treffen nun > hoffentlich nichts im Wege steht. Ich nehme an, das findet ganz normal am > 25. statt? > Davon gehe ich jetzt mal aus. Letztes mal hatte ich nur verschoben, da der Termin ja zwischen die Feiertage gefallen wäre und wir den die letzten Jahre auch immer verschoben haben. >> Hallo, >> >> wollte noch mal an das Treffen erinnern, vor allem da der Termin außer >> der Reihe ist, und bei der Gelegenheit nachfragen, wer alles kommt. >> >> >> Gruß, >> Jürgen From c.duehl at gmx.de Mon Jan 10 23:29:41 2011 From: c.duehl at gmx.de (c.duehl at gmx.de) Date: Tue, 11 Jan 2011 08:29:41 +0100 Subject: [Bielefeld-pm] Fwd: Books and News from the O'Reilly User Group Program--Jan Message-ID: <20110111072941.287020@gmx.net> -------- Original-Nachricht -------- Datum: Mon, 10 Jan 2011 09:02:00 -0800 Von: "Marsee Henon & Jon Johns" An: c.duehl at gmx.de Betreff: Books and News from the O\'Reilly User Group Program--Jan View this information as HTML in your browser, click here: http://post.oreilly.com/rd/9z1zla1d7htb4cjvbj48b5hhaftvujnskh2mj1he2m8 Hi there, We're happy to support GiveCamp, a weekend-long event where technology professionals from designers, developers, and database administrators to marketers and web strategists donate their time to provide solutions for non-profit organizations. Visit their site for more info. http://post.oreilly.com/rd/9z1zulckno0qjlcm4vmmne2bko4s4v5alaqg2g0pie0 Registration is still open for the O'Reilly Strata Conference happening February 1-3, 2011 in Santa Clara, CA. Group members get 30% off the registration price when they use code "str11usrg". http://post.oreilly.com/rd/9z1zjqj33c9bhqst5m11l1apkjuo7skri039qi654bo Read more about Data Science in our free white paper: http://post.oreilly.com/rd/9z1zbl7v2cqhsr7vcjtrog4k36fd46tosmg1srgmf28 To read a bit about Data Science, check out our white paper here: http://post.oreilly.com/rd/9z1zia4bsskk58vto5k6mq1va477pdg25cbprck2bd8 O'Reilly webcasts happening soon: Developing Effective OCUnit and UI Automation Testing for iOS, Presented by James Turner January 11, 10am PT http://post.oreilly.com/rd/9z1zcb5iudspcd2upudauutun2srk5cnkskunlmb1r8 Dow to Decrease the Pain in Building Distributed Systems, presented by Bradford Stephen January 12, 10am PT http://post.oreilly.com/rd/9z1z9tor09j46njav8v7efn6p48s9k3hd9g1naah5to Rethinking the Publishing Business Model: Taking Advantage of Integrated Publisher Solutions to Grow Your Business, presented by Larry Brewster, Mark Ouimet January 13, 11am PT http://post.oreilly.com/rd/9z1zlopobptse6a5tdd200snari3qif1mi0mqofhak8 Hands-on Performance Testing and Analysis with WebPagetest, presented by Patrick Meenan January 19, 10am PT http://post.oreilly.com/rd/9z1z6o4salci774ne3up1du9gqh02923ua3rpubkdb8 Here's our Webcast page for on-demand videos of past webcasts and more upcoming live events. http://post.oreilly.com/rd/9z1zkemssu21s7qvn32qj2369ctg06gb9fcqs74ncl8 Thanks, -- Marsee Henon and Jon Johns P.S. Here's a list of the places the UG team will be. If you're attending or live in the area and have time to get together, please let us know. -Jan 15, Community Leadership Summit West, Daly City, CA http://post.oreilly.com/rd/9z1zu4n3pe6uk9qa2g94cmperfim0oapask4vq62r70 -Jan 26-29, Macworld Conference and Expo, San Francisco, CA -Feb 1-3, O'Reilly Strata Conference, Santa Clara, CA http://post.oreilly.com/rd/9z1z3vj84lhl94oiah2incp36hbqrh0l3vfime8thj8 -Feb 7-9, Sharepoint TechCon, San Francisco, CA http://post.oreilly.com/rd/9z1zmet3hoai1j03e7tef6oo2d6q0e1iu3t9drdsmjg -Feb 25-27, Southern California Linux Expo (SCALE), Los Angeles, CA http://post.oreilly.com/rd/9z1zr7eeah9sjk10jqb506aemmt382nafco1iv789a8 --------------------------------------------------------------------- User Group Discounts --------------------------------------------------------------------- Get 40% off books and videos from O'Reilly, Microsoft Press, No Starch, Paraglyph, PC Publishing, Pragmatic Bookshelf, Rocky Nook, SitePoint, or YoungJin books and 50% off ebooks you purchase directly from O'Reilly. Just use code DSUG when ordering online or by phone 800-998-9938. http://post.oreilly.com/rd/9z1zbculrkhkg5j2rpdciil4vsj30373omj1uede7s8 20% off Safari Books Online for 12 months for UG members (new subscribers only). Safari Books Online provides online access to more than 8,500 books and videos from the world's leading technology publishers. We're offering User Group members an exclusive 20% discount on monthly subscriptions to Safari Books Online for 12 months (new subscribers only). Just use coupon code "QLGSSZG". http://post.oreilly.com/rd/9z1zo4i8fv7bdt71e0g1lkf3084p0otg0u6fi77smdo --------------------------------------------------------------------- UG leaders only--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 posted, I'll send you the O'Reilly book(s) of your choice. Choose from the following list: MySQL Conference & Expo 2011 http://post.oreilly.com/rd/9z1z37ct8i29fuk130h6ep0oo7083odhtqip5c17bdo 40-50% off Discount Book Banners http://post.oreilly.com/rd/9z1zouguq9r1pgrebonkjkc1qcstcdnj4sbgtlvm9a8 O'Reilly Answers http://post.oreilly.com/rd/9z1zbjs57ardmcl9hqnd5gecio1biuq2qhd309o95b0 O'Reilly School of Technology http://post.oreilly.com/rd/9z1zhrharmqdeol9cbb7ieoucegup0bg3m58a2k10o0 Customizable O'Reilly Book Widgets http://post.oreilly.com/rd/9z1zsdqu27nvlrot8p1ft7k5jeqmojra6jflgdqnc0o User Group Discount Slides (PowerPoint, Keynote, and OpenOffice.org versions) http://post.oreilly.com/rd/9z1zr18a6or8nmda0r7fmlobpoislq89grkeutshv48 --------------------------------------------------------------------- New Releases --------------------------------------------------------------------- Inside the Microsoft Build Engine, Second Edition (Microsoft Press) http://post.oreilly.com/rd/9z1zdnda9b8n3nr5i52t3m6f817l3diri13caq31ta8 Developer's Guide to Microsoft Enterprise Library 5, Visual Basic Edition (Microsoft Press) http://post.oreilly.com/rd/9z1zmkikbsuu09q0s6jfsimlhleefd507c9bcmqkq6g Designing Interfaces, Second Edition http://post.oreilly.com/rd/9z1za13pf18pqb20afdpkv90h7lgkrmp5k7ef20d6eo Confessions of a Public Speaker http://post.oreilly.com/rd/9z1zdd39opsnaiufkh02d9jjpropm7q48evf2ra55io Building Wireless Sensor Networks http://post.oreilly.com/rd/9z1zabns4ekphch1j0dv271gtl4smt4u1am6uqtog7g Programming Python, Fourth Edition http://post.oreilly.com/rd/9z1z6n8s5p9h7qd4kpm328aotvhf4dp8vnfs2qdj9l8 Office 2011 for Macintosh: The Missing Manual http://post.oreilly.com/rd/9z1ze6tl6ep74keu9vknuqqq90rj9nt7jr48smgion8 Network Your Computers & Devices Step by Step (Microsoft Press) http://post.oreilly.com/rd/9z1zjtco9mkdsmkrokflt4hdd12ft5fgtk6vqh2e0j8 Microsoft XNA Framework Edition: Programming Windows Phone 7 (Microsoft Press) http://post.oreilly.com/rd/9z1zjkkbq7c81ca1rvbv7vu9dhqc90jgnu2ukhv35gg Microsoft Silverlight Edition: Programming Windows Phone 7 (Microsoft Press) http://post.oreilly.com/rd/9z1zc9c6q1kut2cobq2c74iq7mprpmnm6jpgrohmcg0 Microsoft SharePoint Designer 2010 Step by Step (Microsoft Press) http://post.oreilly.com/rd/9z1z1divli6ujsb83f8tc0bdf9qbtqvpm5i4t8vla5o Microsoft Expression Web 4 Step by Step (Microsoft Press) http://post.oreilly.com/rd/9z1zlr4jtvloo0enbbho9d339fp18sbi3tc8ki84110 jQuery Pocket Reference http://post.oreilly.com/rd/9z1z6q8q7pk6ec8bl1jqetbnq5t81eh44bkl50s9ueg JavaScript Step by Step, Second Edition (Microsoft Press) http://post.oreilly.com/rd/9z1zc4s3u325stjogkmb7nk5m5d03ukfc48ebaf6kn0 Crap Detection 101: How to Distinguish Good and Bad Information Online http://post.oreilly.com/rd/9z1z35n4c9417o2ckhi7pdahu5b8vp5t1f53vco883g HTML5 and CSS3 (Pragmatic Bookshelf) http://post.oreilly.com/rd/9z1zci9cs2d0rt31crgfj3sv53pm3h3v73t2kigeuf8 Connecting to Web Data and APIs with App Inventor http://post.oreilly.com/rd/9z1zjv7t80suj70qh5rruhrjrfg0ib63ufqjkgkhvcg Software Testing Foundations, Third Edition (Rocky Nook) http://post.oreilly.com/rd/9z1zt3jvhme0p7dp8cso8cgrlqo390kjej6hllsa5pg Tapworthy iPhone Design and User Experience http://post.oreilly.com/rd/9z1z8mcfnq0c38uo2sqkjo9ojg1avn5iqijeojqnkso Until next time-- Marsee Henon & Jon Johns Forward this announcement - http://post.oreilly.com/f2f/9z1zeltsssree80dmeumm03oa8cemldjvmjko85ublg ================================================================ O'Reilly 1005 Gravenstein Highway North Sebastopol, CA 95472 800-998-9938 http://post.oreilly.com/rd/9z1z5ipg4evfp2m6c90bp8t6pmgpe3okoteqn46tikg Follow us on Twitter at: http://post.oreilly.com/rd/9z1ze4sepfgj2voh5f3obo9qm8k7ioh1u24glb4s8ag 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 usergroups at oreilly.com ================================================================ From c.duehl at gmx.de Tue Jan 11 23:51:56 2011 From: c.duehl at gmx.de (c.duehl at gmx.de) Date: Wed, 12 Jan 2011 08:51:56 +0100 Subject: [Bielefeld-pm] Fwd: O'Reilly News fuer User-Groups: Neues im Dezember Message-ID: <20110112075156.218550@gmx.net> -------- Original-Nachricht -------- Datum: Tue, 11 Jan 2011 10:54:05 +0100 (CET) Von: ug at oreilly.de An: user_groups at oreilly.de Betreff: O\'Reilly News fuer User-Groups: Neues im Dezember -------------------------------------------------- O'Reilly UserGroup News Dezember 2010 Bitte an Ihre Mitglieder weiterleiten -------------------------------------------------- Liebe O'Reilly UserGroup-Vertreter! Haben Sie auch Vorsaetze an Silvester gefasst, die heute schon vergessen sind? Wie waere es mit diesem: Ein gutes IT-Fachbuch lesen. Mit unseren Neuerscheinungen finden Sie bestimmt die richtige Lektuere! Viel Spass beim Lesen! Ihr O'Reilly Team ----------------------------------------------- Rezensenten gesucht ----------------------------------------------- Gerne stellen wir Ihnen Exemplare unserer Buecher zur Besprechung zur Verfuegung - teilen Sie Ihre Einschaetzung anderen Lesern auf Ihrer Website, Mailingliste, bei amazon.de, auf facebook.com/oreilly.de oder oreilly.de mit! In diesem Monat stehen unsere Neuerscheinungen der Adobe CS5-Reihe zur Verfuegung: http://www.oreilly.de/artikel/2010/12/adobecs5reihe.html Rezensionswuensche senden Sie bitte an ug at oreilly.de. ------------------------------------------------ Deutschsprachige Neuerscheinungen (Details s.u.) -------------------------------------------------- 1) Fotografie fuer Journalisten 2) Webentwicklung mit CakePHP 3) Photoshop CS5 - Einstieg, Praxis, Profitipps 4) Illustrator CS5 - Einstieg, Praxis, Profitipps 5) Flash CS5 - Einstieg, Praxis, Profitipps 6) Web-TV - AV-Streaming im Internet Englischsprachige Neuerscheinungen (Details s.u.) -------------------------------------------------- 1) Data Analysis with Open Source Tools 2) Learning Flex 4 3) Adobe Illustrator CS5 One-on-One 4) Conversion Optimization 5) SQL Pocket Guide, 3rd Ed. 6) Driving Technical Change 7) Real World Instrumentation with Python. 8) Head First Python 9) Building the Perfect PC, 3rd Ed. 10) Cassandra: The Definitive Guide ____________________________________________________ ____________________________________________________ 1) Fotografie fuer Journalisten ------------------------------- Kay-Christian Heine 1. Auflage November 2010 ISBN 978-3-89721-979-3 208 Seiten, 24.90 Euro Von Journalisten wird zunehmend erwartet, dass sie die Fotos, die ihre Beitraege begleiten, selbst machen. Mit der Digitalkamera sind die Bilder ja auch schnell geschossen und stehen fuer die Verwendung in Print- oder Onlinemedien bereit. Koennte man meinen. Doch die Praxis sieht oft komplizierter aus, denn wer gute Pressefotos machen moechte, sollte zumindest ein gutes Grundwissen in Technik und Gestaltung mitbringen. Zumal die Bedingungen oft unguenstig sind: Schlecht ausgeleuchtete Raeume oder verregnete Aussentermine sind nur allzu haeufig. Hier setzt "Fotografie fuer Journalisten an". Es vermittelt das entscheidende Wissen zu Technik, Bildaufbau, den Besonderheiten der Pressefotografie sowie rechtlichen und organisatorischen Fragen. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/fotojournger/index.html 2) Webentwicklung mit CakePHP ------------------------------ Dirk Ammelburger& Robert Scherer 2. Auflage November 2010 ISBN 978-3-89721-659-4 416 Seiten, 34.90 Euro CakePHP ist der schmackhafte Senkrechtstarter unter den Rapid-Development-Frameworks fuer PHP, mit ihm laesst sich die Entwicklungszeit von PHP-Applikationen extrem beschleunigen. CakePHP adaptiert die Konzepte des erfolgreichen Frameworks Ruby On Rails auf PHP, bietet darueber hinaus aber auch zahlreiche nuetzliche eigene Funktionalitaeten. Dieses Buch zeigt Ihnen, wie CakePHP genau funktioniert und wie Sie Ihre Arbeit mithilfe des Frameworks von Ballast befreien koennen. Es deckt ein breites Themenspektrum ab: Ein Crashkurs laesst Sie direkt mit der Webentwicklung starten, danach lernen Sie das MVC-Modell als Basis fuer die CakePHP-Programmierung kennen. Schritt fuer Schritt werden dann alle Elemente der Erstellung einer Webapplikation mit CakePHP erlaeutert. Die 2. Auflage behandelt CakePHP 1.3, dabei wurde ein Schwerpunkt auf die Migration von 1.2 gelegt. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/cakephpwebentw2ger/index.html 3) Photoshop CS5 - Einstieg, Praxis, Profitipps ----------------------------------------------- Barbara Luef, Thomas Kraetschmer& Thomas Lauter 1. Auflage November 2010 ISBN 978-3-89721-985-4 480 Seiten, 39,90 Euro Adobe Photoshop ist der Platzhirsch unter den Bildbearbeitungsprogrammen. Die Software hat in der Version CS5 noch einmal deutlich an Bedienkomfort und nuetzlichen Features gewonnen, so dass sich die Beschaeftigung mit den neuen Funktionen unbedingt lohnt. Dieses Buch richtet sich an Leser, die den enormen Funktionsumfang nutzen moechten, den Photoshop fuer die Bearbeitung digitaler Fotos zu bieten hat. Vermittelt Bildbearbeitungsgrundlagen, die sogleich anhand von umfangreichen Workshops in Aktion gezeigt werden. Damit der Lerneffekt beim Leser noch groesser wird, befindet sich das im Buch behandelte Bildmaterial auf der beigebundenen DVD. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/adocs5photosger/ 4) Illustrator CS5 - Einstieg, Praxis, Profitipps ----------------------------------------------- Einstieg, Praxis, Profitipps Dagmar Loeffler 1. Auflage November 2010 ISBN 978-3-89721-983-0 464 Seiten, inkl. 2 DVDs 39,90 Euro Ob Logo, Schmuck- oder Infografik, ob Print- oder Webprojekt -- Illustrator ist DAS Programm zur Erstellung professioneller vektorbasierter Grafiken. In der CS5-Version wurde es um viele interessante Funktionen erweitert. Alle, die Illustrator neu erlernen oder ihr Wissen vertiefen moechten, finden in diesem Buch die Anleitung, die sie benoetigen. Dagmar Loeffler, Designerin mit eigener Grafikagentur und Adobe-zertifizierte Trainerin, laesst den Leser unmittelbar von ihrer umfangreichen Illustrator-Erfahrung profitieren. Ihr angenehmer, gut verstaendlicher Schreibstil und die vielen schoenen Illustrationen sorgen dafuer, dass das Lesen auch noch richtig Spass macht. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/adocs5illusger/index.html 5) Flash CS5 - Einstieg, Praxis, Profitipps ------------------------------------------- Einstieg, Praxis, Profitipps Sascha Kersken& André Reinegger 1. Auflage November 2010 ISBN 978-3-89721-987-8 504 Seiten, inkl. DVD, 39,90 Euro Dieses Buch richtet sich an Leser, die einen professionellen Einstieg in den Umgang mit Flash CS5 suchen oder ihre Kenntnisse wieder auffrischen wollen. Nachdem Sie die Arbeitsoberflaeche von Flash CS5 kennengelernt haben, geht es sofort an die Gestaltung erster Grafiken und deren Animation. Dabei lernen Sie neben den maechtigen Werkzeugen auch die multimedialen Faehigkeiten von Flash kennen. Nach dem design-orientierten Teil des Buches folgt eine behutsame Einfuehrung in die Programmierung mit ActionScript 3. Dort erfahren Sie, wie Sie Ihre Filme interaktiv gestalten und beispielsweise Nutzereingaben verarbeiten. Das Buch beinhaltet viele Workshops, die Sie dank des Beispielmaterials auf der DVD aktiv nachvollziehen koennen. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/adocs5flashger/index.html 6) Web-TV - AV-Streaming im Internet ------------------------------------ Nikolai Longolius 1. Auflage Dezember 2010 ISBN 978-3-89721-609-9 192 Seiten, 34.90 Euro Internet-Fernsehen boomt und erzeugt Wissensdurst. Welche grundsaetzliche Uebertragungstechnik steht dahinter, welche Formate und Codecs werden verwendet, wie funktioniert ein Streamingprozess im Detail? Wie erstelle ich einen Livestream und wie bekomme ich mein Videomaterial ins Netz? Und wie kann ich meinen eigenen Internet-TV-Sender aufbauen? Mit diesen Fragen beschaeftigt sich "Web-TV - AV-Streaming im Internet". Es richtet sich an den Systemadministrator, der einen Livestream fuer die firmeninterne Kommunikation aufsetzen soll, an den Podcaster, der zukuenftig auch TV-Sendungen produzieren moechte, bis hin zu Lokalzeitungen, die einen Lokalsender im Internet aufbauen wollen. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/webtvavstrger/index.html ________________________________________________________ ________________________________________________________ Englischsprachige Neuerscheinungen ---------------------------------- 1) Data Analysis with Open Source Tools ---------------------------------------- Philipp K. Janert First Edition November 2010 ISBN 978-0-596-80235-6 350 Seiten, 38,00 Euro Turning raw data into something useful requires that you know how to extract precisely what you need. With this insightful book, intermediate to experienced programmers interested in data analysis will learn techniques for working with data in a business environment. You'll learn how to look at data to discover what it contains, how to capture those ideas in conceptual models, and then feed your understanding back into the organization through business plans, metrics dashboards, and other applications. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9780596802356/index.html 2) Learning Flex 4 ------------------- Getting Up to Speed with Rich Internet Application Design and Development Alaric Cole First Edition November 2010 ISBN 978-0-596-80563-0 368 Seiten, 48,00 Euro Learn Adobe Flex 4 in a fun and engaging way with this book's unique, hands-on approach. Using clear examples and step-by-step instructions, you'll create four applications that demonstrate fundamental Flex programming concepts, including how to enhance user interaction with ActionScript, create and skin a user interface with Flex's UI components, manage dynamic data, connect to a database using server-side script, and deploy applications to both the Web and the desktop. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9780596805630/index.html 3) Adobe Illustrator CS5 One-on-One ----------------------------------- Deke McClelland First Edition November 2010 ISBN 978-0-596-80801-3 544 Seiten, 48.00 Euro Master the fundamentals of Adobe Illustrator and watch your designs come to life. With Deke McClelland's unique and effective learning system, you get step-by-step tutorials, hours of DVD-video demonstrations, and lots of hands-on projects to help you improve your knowledge and hone your skills. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9780596808013/index.html 4) Conversion Optimization -------------------------- Khalid Saleh, Ayat Shukairy First Edition November 2010 ISBN 9781449377564 272 Seiten, 34,00 Euro Turn website visitors into customers with "Conversion Optimization". This book offers practical advice on how to give your visitors the material they need to make a quick buying decision - without driving them away through navigation or information overload. You'll examine various techniques for blending successful website sales approaches with the particular needs of your business and the people you want to attract. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9781449377564/index.html 5) SQL Pocket Guide ------------------- Jonathan Gennick Third Edition November 2010 ISBN 9781449394097 208 Seiten, 12,00 Euro If you're a programmer or database administrator who uses SQL in your day-to-day work, this popular pocket guide is the ideal on-the-job reference. It uses numerous examples to address the language's complexity, and covers key aspects of SQL used in Oracle, DB2, SQL Server, MySQL, and PostgreSQL. That includes the syntax for querying, managing transactions, and making changes to data, as well as SQL functions, type conversion functions and formats, and regular expression syntax. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9781449394097/index.html 6) Driving Technical Change --------------------------- Terrence Ryan First Edition November 2010 ISBN 9781934356609 200 Seiten, 32.00 Euro Your co-workers' resistance to new technologies can be baffling. Logical arguments can fail. If you don't do politics, you will fail. With Driving Technical Change, by Terrence Ryan, you'll learn to read users' "patterns of resistance"-and then dismantle their objections. Every developer must master the art of evangelizing. With these techniques and strategies, you'll help your organization adopt your solutions-without selling your soul to organizational politics. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9781934356609/index.html 7) Real World Instrumentation with Python ------------------------------------------ John M. Hughes First Edition Dezember 2010 ISBN 978-0-596-80956-0 500 Seiten, 48.00 Euro Learn how to develop your own applications to monitor or control instrumentation hardware. Whether you need to acquire data from a device or automate its functions, this practical book shows you how to use Python's rapid development capabilities to build interfaces that include everything from software to wiring. You get step-by-step instructions, clear examples, and hands-on tips for interfacing a PC to a variety of devices. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9780596809560/index.html 8) Head First Python --------------------- Paul Barry First Edition Dezember 2010 ISBN 9781449382674 496 Seiten, 48.00 Euro Ever wished you could learn Python from a book? Head First Python is a complete learning experience for Python that helps you learn the language through a unique method that goes beyond syntax and how-to manuals, helping you understand how to be a great Python programmer. You'll quickly learn the language's fundamentals, then move onto persistence, exception handling, web development, SQLite, data wrangling, and Google App Engine. You'll also learn how to write mobile apps for Android, all thanks to the power that Python gives you. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9781449382674/index.html 9) Building the Perfect PC --------------------------- Robert Bruce Thompson, Barbara Fritchman Thompson Third Edition Dezember 2010 ISBN 9781449388249 368 Seiten, 38,00 Euro Even if you're not a total geek, you can build your own PC - and it's worth it. You'll discover that the quality is better and the cost is much lower than any comparable off-the-shelf PC you can buy. Written by hardware experts, this book delivers complete instructions for building your own dream machine with high-quality components, whether it's a PC for general use, extreme gaming, a media center, or home server. Straightforward language, clear directions, and easy-to-follow illustrations make this guide a breeze for computer builders of any skill level, even those with no experience. Design the custom computer you want, and have fun doing it. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9781449388249/index.html 10) Cassandra: The Definitive Guide ----------------------------------- Eben Hewitt First Edition Dezember 2010 ISBN 9781449390419 336 Seiten, 38,00 Euro With this hands-on guide, you'll learn how Apache Cassandra handles hundreds of terabytes of data while remaining highly available across multiple data centers - capabilities that have attracted Facebook, Twitter, and other data-intensive companies. "Cassandra: The Definitive Guide" provides the technical details and practical examples you need to assess this database management system and put it to work in a production environment. Eine ausfuehrliche Beschreibung des Buches finden Sie hier: http://www.oreilly.de/catalog/9781449390419/index.html ========================================================= Weitere Fragen und Anforderungen von Rezensionsexemplaren (bitte unter Angabe der gewünschten Lieferanschrift) richten Sie bitte an ug at oreilly.de Coverabbildungen unserer Buecher finden Sie nach ISBN sortiert unter: ftp://ftp.oreilly.de/pub/ora/graphics/book_covers/hi-res/ Bitte lassen Sie uns Belegexemplare/Urls Ihrer Rezensionen zukommen. Vielen Dank! Wenn Sie diesen Informationsservice abbestellen moechten, schicken Sie bitte eine Mail mit folgendem Inhalt an majordomo at oreilly.de: unsubscribe user_groups IHRE-E-MAILADRESSE Tragen Sie diesen Text bitte nicht in die Betreffzeile, sondern in das Mitteilungsfeld des Mailprogramms ein. Wenn Sie Schwierigkeiten haben, wenden Sie sich bitte an listmaster at oreilly.de. ========================================================= O'Reilly Verlag GmbH & Co.KG, Balthasarstr. 81 50670 Koeln Tel.: +(49)-221-9731600 Fax.: +(49)-221-9731608 Geschaeftsfuehrer: Timothy O'Reilly, Elke Hansel Amtsgericht Koeln, HRA 13894, UST-IdNr.: DE 163372785 From c.duehl at gmx.de Mon Jan 17 00:12:43 2011 From: c.duehl at gmx.de (c.duehl at gmx.de) Date: Mon, 17 Jan 2011 09:12:43 +0100 Subject: [Bielefeld-pm] Fwd: UG News: *Free to Choose* Ebook Deal/Day - All 24 Make Magazine Issues - $5.99 each Message-ID: <20110117081243.37330@gmx.net> -------- Original-Nachricht -------- Datum: Fri, 14 Jan 2011 00:01:03 -0800 Von: "Marsee Henon & Jon Johns" An: c.duehl at gmx.de Betreff: UG News: *Free to Choose* Ebook Deal/Day - All 24 Make Magazine Issues - $5.99 each View in browser: http://post.oreilly.com/rd/9z1zrf35e6ovkfegsbg0n1dv9a65ks9qss60bq43h5o Forward this announcement to your user group or a friend: http://post.oreilly.com/f2f/9z1z4e7g916hgfvmnkd3a8po743t0uc8n9a2sdqglk8 ** $5.99 Exclusive Ebook Deal of the Day - Free to Choose: Make Magazine ** All 24 volumes of MAKE are now available in ebook format. If you like to tweak, disassemble, recreate, and invent cool new uses for technology, you'll love MAKE, our quarterly publication for the inquisitive do-it-yourselfer. Ebooks from oreilly.com are DRM-free. You get free lifetime access, and free updates. One day only. Use discount code DDMAK in the shopping cart. Make: Technology on Your Time Volume 24 http://post.oreilly.com/rd/9z1z6fgl13o6ik8pl6r36n5h6t2u745ufcbhl61mjlo Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1ze5fbpdaeeaqipmvp78t0hksp9onn0j315eahs68 Make: Technology on Your Time Volume 23 http://post.oreilly.com/rd/9z1zubauehgl0dctu590vr31qkfvoverrbk7cq1pa1g Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1zt1fau8v8p44vego5g6jnnjte6ocbg3m98h45o98 Make: Technology on Your Time Volume 22 http://post.oreilly.com/rd/9z1zo3p0o7dhidm68h5o18sj1orqq6imtfsluv6lqdo Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1ze0h992jdonoias9j8rulovptb5eeljg88k6vq10 Make: Technology on Your Time Volume 21 http://post.oreilly.com/rd/9z1z94utk366ej5j226da7nkje6403vckpd7f37msno Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1zi0sue7j0s4pfha9oag6f17k7ahnvshp73nn4nig Make: Technology on Your Time Volume 20 http://post.oreilly.com/rd/9z1zke0hf0dd0v94t6d4igontqtqt40pd8bkpb5fevg Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1zkknmdnfrqa5q3jbpmt7u9tjphn3k91eapate5qg Make: Technology on Your Time Volume 19 http://post.oreilly.com/rd/9z1z1dic2ij8o9qmfbi12hedimceoqkvjqr690fe7t0 Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1z6dhs6t1fataor23j195sj8vpf31thvdid372g2g Make: Technology on Your Time Volume 18 http://post.oreilly.com/rd/9z1zl79uotc0kn88n6eiglidhsmvvv9a8g0c9a5gn28 Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1zr2a3f5vod7g6dot5pmbe8hgo1b01ha8h9hi6ft8 Make: Technology on Your Time Volume 17 http://post.oreilly.com/rd/9z1ziaosg0veb7fetedepgt15aqcd513o6lvjbobq6g Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1zo2t6saks8vkpuo8hebcheggbngkh2uliorqas78 Make: Technology on Your Time Volume 16 http://post.oreilly.com/rd/9z1z4340cg30uu66f65mobeis12a5vtlahg1qditm68 Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1ztsauuo7fsacq21v9stc7q2bcrtafq7k0bt2t358 Make: Technology on Your Time Volume 15 http://post.oreilly.com/rd/9z1z8e8usu0hhrsidje1ev3nidt7b4o27669m81ml20 Was: $9.99 Now: $5.99 Add to cart: http://post.oreilly.com/rd/9z1z61or9j9u4ha7hmfedtg9neku5f9r0r348ju05po View all 24 Volumes of MAKE: http://post.oreilly.com/rd/9z1zi8utn05228djqe32m4ebvb97bdatj2162sq84vo Forward this special offer to a friend: http://post.oreilly.com/f2f/9z1z4e7g916hgfvmnkd3a8po743t0uc8n9a2sdqglk8 -------------------------------------------------------------- O'Reilly - Spreading the knowledge of innovators | oreilly.com -------------------------------------------------------------- You are receiving this email because you are a User Group contact with O'Reilly Media. Forward this announcement: http://post.oreilly.com/f2f/9z1z4e7g916hgfvmnkd3a8po743t0uc8n9a2sdqglk8. If you would like to stop receiving these newsletters or announcements from O'Reilly, send an email to marsee at oreilly.com. O'Reilly Media, Inc. 1005 Gravenstein Highway North, Sebastopol, CA 95472 (707) 827-70000 If c.duehl at gmx.de should not be subscribed or if you need to change your subscription information for O'Reilly Media Inc., please use this preferences page: http://post.oreilly.com/prefs/9z1zc6l2hvbudl452l8g71d7pejfv9ri1ohrj1p249o From c.duehl at gmx.de Wed Jan 19 23:33:58 2011 From: c.duehl at gmx.de (c.duehl at gmx.de) Date: Thu, 20 Jan 2011 08:33:58 +0100 Subject: [Bielefeld-pm] Fwd: UG News - Best of Ebook Deal of the Day - Save 60% - Top 25 of 2010 Message-ID: <20110120073358.217710@gmx.net> -------- Original-Nachricht -------- Datum: Wed, 19 Jan 2011 00:07:16 -0800 Von: "Marsee Henon & Jon Johns" An: c.duehl at gmx.de Betreff: UG News - Best of Ebook Deal of the Day - Save 60% - Top 25 of 2010 View in browser: http://post.oreilly.com/rd/9z1zv3bdouptlh0858h59orklb05vtj66ja0tsarflo Forward this announcement to your user group or a friend: http://post.oreilly.com/f2f/9z1zaksjh9dosn5jltr9f49qvdpi20iggnel1ce0ap8 *** Best of Ebook Deal of the Day - Save 60% - Top 25 of 2010 *** For one day only, you can get our Best of "Ebook Deal of the Day" - Top 25 of 2010 titles for 60% off. O'Reilly ebooks are DRM-free. You get free lifetime access, multiple file formats, free updates. Use discount code DDT25 in the shopping cart. Cheers! Regular Expressions Cookbook http://post.oreilly.com/rd/9z1zadgp2i1js95o2aq30gt7od3tsfcp0ojohudht28 Was: $31.99 Now: $12.80 Add to cart: http://post.oreilly.com/rd/9z1zbu6r0ochlipk8b5d91r40k5e5spl499pp0m8fng Learning Python, Fourth Edition http://post.oreilly.com/rd/9z1z5t02jpvlmgjfvsi94mlin8ctrpdcktb3e1bpsfg Was: $39.99 Now: $16.00 Add to cart: http://post.oreilly.com/rd/9z1ziherrrl4i8c3h83s9k2qpvvgjh8dj947pjqsv3o jQuery Cookbook http://post.oreilly.com/rd/9z1zmsus6dhnegoh56k3ivu5aklplir3r4flheoltuo Was: $27.99 Now: $11.20 Add to cart: http://post.oreilly.com/rd/9z1z6tfk02gt5u4mkj11am9r86f2mnnflvt8jur8u78 HTML5: Up and Running http://post.oreilly.com/rd/9z1z97bpaf7mleq4643933sq9sioq9a35ah5sac3ve0 Was: $23.99 Now: $9.60 Add to cart: http://post.oreilly.com/rd/9z1zluertidohntsqropc5v7qsrnt1jui9jsnl3qn8g JavaScript Cookbook http://post.oreilly.com/rd/9z1zata6rd06pta5hfk7ufhdngprpgqstdahol0p8ug Was: $39.99 Now: $16.00 Add to cart: http://post.oreilly.com/rd/9z1zk8gsp21lv6folf6gr15hkj5rjhi9nhgl1u2rf80 Cooking for Geeks http://post.oreilly.com/rd/9z1zdsl4qub4e2sbcm8iadve8u5intbcmf4qijfepgg Was: $27.99 Now: $11.20 Add to cart: http://post.oreilly.com/rd/9z1ziot17rac96veffcm7fjuai1rcpgukpkbekukbv0 Make: Electronics http://post.oreilly.com/rd/9z1zckrm2cas6j3angata9a32i1a5dku73ngss3hsf8 Was: $27.99 Now: $11.20 Add to cart: http://post.oreilly.com/rd/9z1zrlofsu84ra7trc3q9s4hd37vjfg4f2uek7i6bbo CSS Cookbook, Third Edition http://post.oreilly.com/rd/9z1zqp4d1r0ma1fh3c9ft5nhr2o5sevccetgpssc71o Was: $39.99 Now: $16.00 Add to cart: http://post.oreilly.com/rd/9z1zcn788d9654qh0ds5hthk5p37rqpqj32hgei9tlo Tapworthy http://post.oreilly.com/rd/9z1z2vkgq5k1m30cpsdd9476gq8bcpn9t90oigb2of8 Was: $31.99 Now: $12.80 Add to cart: http://post.oreilly.com/rd/9z1zs5k774acag3k3cph4jum0m4gij2o1nri46d3gbg Building iPhone Apps with HTML, CSS, and JavaScript http://post.oreilly.com/rd/9z1zkmt14m6q2g1kg2gh99tflu1l8hgs2peno4pbrf0 Was: $23.99 Now: $9.60 Add to cart: http://post.oreilly.com/rd/9z1zagpvm5mlemf90q9k3j7ob5gb64vn3vtfn4pcb80 Beautiful Visualization http://post.oreilly.com/rd/9z1z0v57hj93mia2t1g73hav2mb03nlt2cp3gp03hp0 Was: $47.99 Now: $19.20 Add to cart: http://post.oreilly.com/rd/9z1zd6ssqnteh912ctaglj9q9jh6472qcnvvh3tp4po JavaScript: The Good Parts http://post.oreilly.com/rd/9z1z45804agt5s4jalaa4rh346uketti1ead5rca76g Was: $23.99 Now: $9.60 Add to cart: http://post.oreilly.com/rd/9z1zr0fui8i2ito4nfvt3l9oj95okuvfnjarnqml0h8 R in a Nutshell http://post.oreilly.com/rd/9z1zhoqbl2b4keg6gqpl9cvm68gu76fr2nfdpbg60sg Was: $35.99 Now: $14.40 Add to cart: http://post.oreilly.com/rd/9z1zonspr3bd4o7kg20kmrk812iubt8e76hc47lqohg iPhone App Development: The Missing Manual http://post.oreilly.com/rd/9z1z4mi07cu814oukiv71jki9f0s2kbarsh27ddkn48 Was: $31.99 Now: $12.80 Add to cart: http://post.oreilly.com/rd/9z1zs2ma505mjii1f2rsi80a6gm1ekav7seevtluj40 bash Cookbook http://post.oreilly.com/rd/9z1z0n5o1qa0rbm0fpoc5j6h02k8qa5nd183ls1aupo Was: $39.99 Now: $16.00 Add to cart: http://post.oreilly.com/rd/9z1zbdt5bf01p6thm13f5g6ekkf4sg2p8c9i5ogbbi8 RESTful Web Services Cookbook http://post.oreilly.com/rd/9z1z9ncss1a17n4udcbev420g29oa5kms33h8051vjg Was: $31.99 Now: $12.80 http://post.oreilly.com/rd/9z1zhtefdv42s6vo417fi9q1qm74l3en2vi0fuvs7jg Algorithms in a Nutshell http://post.oreilly.com/rd/9z1zndbti5v1dorg9ld71pkjdb3tit300c49mot5uu8 Was: $39.99 Now: $16.00 Add to cart: http://post.oreilly.com/rd/9z1zvp3fks4sbqh5b8cent64pqjdvtltj5hm76b3h6o Linux in a Nutshell, Sixth Edition http://post.oreilly.com/rd/9z1zd8as3g7e60p6snjjbcu529tugn0haksd4if38n8 Was: $35.99 Now: $14.40 Add to cart: http://post.oreilly.com/rd/9z1zm93k9t9lgvpvdrkda3nug8nrl6usr4cc7vakjbo Programming Collective Intelligence http://post.oreilly.com/rd/9z1zbq8ll289tru8nql2l6v24509bkp0ts2ud56v3u8 Was: $31.99 Now: $12.80 Add to cart: http://post.oreilly.com/rd/9z1z3ichd1p7afun0tkqejgo98eafdapebn9vh0kh4o Beautiful Data http://post.oreilly.com/rd/9z1z8jd20b8rklk1dehluf3srs0m4sdrv57asqbm6rg Was: $35.99 Now: $14.40 Add to cart: http://post.oreilly.com/rd/9z1z0ing8mftm75hdidrc319atkkp7i19fc5r6s2obo Learning iPhone Programming http://post.oreilly.com/rd/9z1z84a33it2b3lj79np95591v8ck1omi9beieqjsf0 Was: $23.99 Now: $9.60 Add to cart: http://post.oreilly.com/rd/9z1zld6p5jmp3rokkgt8sdhgldlbm9ahc86b38h7u4g 97 Things Every Programmer Should Know http://post.oreilly.com/rd/9z1zmb34knvrbr94re7j64h926dqlldl1ap7dag1he8 Was: $23.99 Now: $9.60 Add to cart: http://post.oreilly.com/rd/9z1zvqi1kngltk292lepnesq8je9u0squalcv33dg98 High Performance JavaScript http://post.oreilly.com/rd/9z1zr0lks0ssld2c9adcvco6d2p9br1teuqik1hfo5g Was: $27.99 Now: $11.20 Add to cart: http://post.oreilly.com/rd/9z1z568p2spbbjgl0q0rn8ommil9coijj98a2ct46c0 SQL Cookbook http://post.oreilly.com/rd/9z1z0di9ghqmgrq65ngso033cfr9fbsmsvu0hulkku8 Was: $31.99 Now: $12.80 Add to cart: http://post.oreilly.com/rd/9z1z049s81u2i48ttglk9pi2ci5fapiodu4q3466dbo Data Analysis with Open Source Tools http://post.oreilly.com/rd/9z1z2on8ntuvvr9rtjj34aquck8p5mbqvdajsi6h4o8 Was: $31.99 Now: $12.80 http://post.oreilly.com/rd/9z1z26neif6aussvirucbm2orbuohujra49lpqvh3e8 Forward this announcement to a friend: http://post.oreilly.com/f2f/9z1zaksjh9dosn5jltr9f49qvdpi20iggnel1ce0ap8 -------------------------------------------------------------- O'Reilly - Spreading the knowledge of innovators | oreilly.com -------------------------------------------------------------- You are receiving this email because you are a User Group contact with O'Reilly Media. Forward this announcement: http://post.oreilly.com/f2f/9z1zaksjh9dosn5jltr9f49qvdpi20iggnel1ce0ap8. If you would like to stop receiving these newsletters or announcements from O'Reilly, send an email to marsee at oreilly.com. O'Reilly Media, Inc. 1005 Gravenstein Highway North, Sebastopol, CA 95472 (707) 827-70000 From oberwahrenbrock at gmx.de Sun Jan 23 08:55:17 2011 From: oberwahrenbrock at gmx.de (Stefan Oberwahrenbrock) Date: Sun, 23 Jan 2011 17:55:17 +0100 Subject: [Bielefeld-pm] Perl-Literatur Message-ID: <4D3C5D75.5010502@gmx.de> Hallo zusammen, auf "heise Developer" habe ich gerade einen Artikel zum Buch "Modern Perl" entdeckt (http://www.heise.de/developer/artikel/Modern-Perl-1171973.html). Das Werk ist sowohl in gedruckter Form erhältlich, als auch auch komplett online verfügbar (http://www.onyxneon.com/books/modern_perl/index.html). Der Author betreibt zudem einen Blog zum Thema Perl (http://www.modernperlbooks.com/mt/). Mir scheint das recht interessant zu sein - vielleicht euch auch :) Gruß, Stefan From taulmarill at xgn.de Mon Jan 24 06:19:41 2011 From: taulmarill at xgn.de (taulmarill at xgn.de) Date: Mon, 24 Jan 2011 15:19:41 +0100 (CET) Subject: [Bielefeld-pm] Treffen am Dienstag In-Reply-To: <293A2775-E495-49DA-B7CE-1EC439FCB426@xgn.de> References: <293A2775-E495-49DA-B7CE-1EC439FCB426@xgn.de> Message-ID: <416da95a83442a7888bbd1d3e8616f4f.squirrel@webmail.xgn.de> Hallo, meine Neugierde treibt mich auch heute wieder dazu an, unter dem Vorwand einer Erinnerung einmal in die Runde zu fragen, wer beim morgigen Treffen wieder dabei sein wird. Gruß, Jürgen From oberwahrenbrock at gmx.de Mon Jan 24 12:44:42 2011 From: oberwahrenbrock at gmx.de (Stefan Oberwahrenbrock) Date: Mon, 24 Jan 2011 21:44:42 +0100 Subject: [Bielefeld-pm] Treffen am Dienstag In-Reply-To: <416da95a83442a7888bbd1d3e8616f4f.squirrel@webmail.xgn.de> References: <293A2775-E495-49DA-B7CE-1EC439FCB426@xgn.de> <416da95a83442a7888bbd1d3e8616f4f.squirrel@webmail.xgn.de> Message-ID: <4D3DE4BA.3060901@gmx.de> Hallo zusammen, ich muss morgen leider passen. Bis demnächst, Stefan Am 24.01.2011 15:19, schrieb taulmarill at xgn.de: > Hallo, > > meine Neugierde treibt mich auch heute wieder dazu an, unter dem Vorwand > einer Erinnerung einmal in die Runde zu fragen, wer beim morgigen Treffen > wieder dabei sein wird. > > > Gruß, > Jürgen > > _______________________________________________ > Bielefeld-pm mailing list > Bielefeld-pm at pm.org > http://mail.pm.org/mailman/listinfo/bielefeld-pm > From nils at diewald-online.de Mon Jan 24 17:40:29 2011 From: nils at diewald-online.de (Nils Diewald) Date: Tue, 25 Jan 2011 02:40:29 +0100 Subject: [Bielefeld-pm] Treffen am Dienstag In-Reply-To: <416da95a83442a7888bbd1d3e8616f4f.squirrel@webmail.xgn.de> References: <293A2775-E495-49DA-B7CE-1EC439FCB426@xgn.de> <416da95a83442a7888bbd1d3e8616f4f.squirrel@webmail.xgn.de> Message-ID: <11918_1295919647_ZZh0h7SrE1764.00_4D3E2A0D.8090806@diewald-online.de> Hallo, ich werde morgen da sein. Bis dahin! Gruß, Nils taulmarill at xgn.de schrieb: > Hallo, > > meine Neugierde treibt mich auch heute wieder dazu an, unter dem Vorwand > einer Erinnerung einmal in die Runde zu fragen, wer beim morgigen Treffen > wieder dabei sein wird. > > > Gruß, > Jürgen > > _______________________________________________ > Bielefeld-pm mailing list > Bielefeld-pm at pm.org > http://mail.pm.org/mailman/listinfo/bielefeld-pm > From c.duehl at gmx.de Tue Jan 25 00:02:50 2011 From: c.duehl at gmx.de (c.duehl at gmx.de) Date: Tue, 25 Jan 2011 09:02:50 +0100 Subject: [Bielefeld-pm] Treffen am Dienstag In-Reply-To: <416da95a83442a7888bbd1d3e8616f4f.squirrel@webmail.xgn.de> References: <293A2775-E495-49DA-B7CE-1EC439FCB426@xgn.de> <416da95a83442a7888bbd1d3e8616f4f.squirrel@webmail.xgn.de> Message-ID: <20110125080250.132440@gmx.net> Hallo, ich werde heute mal wieder dabei sein. Gruß Christian -------- Original-Nachricht -------- > Datum: Mon, 24 Jan 2011 15:19:41 +0100 (CET) > Von: taulmarill at xgn.de > An: "Mailingliste der Bielefeld Perl Mongers" > Betreff: [Bielefeld-pm] Treffen am Dienstag > Hallo, > > meine Neugierde treibt mich auch heute wieder dazu an, unter dem Vorwand > einer Erinnerung einmal in die Runde zu fragen, wer beim morgigen Treffen > wieder dabei sein wird. > > > Gruß, > Jürgen > > _______________________________________________ > Bielefeld-pm mailing list > Bielefeld-pm at pm.org > http://mail.pm.org/mailman/listinfo/bielefeld-pm