From domm at cpan.org Tue Jun 6 11:20:39 2006 From: domm at cpan.org (Thomas Klausner) Date: Tue, 6 Jun 2006 20:20:39 +0200 Subject: [Vienna-pm] Pre-Workshop-Treffen Message-ID: <20060606182039.GF8262@domm2.zsi.at> Hi! Wer es schon vor offiziellem Beginn des Perlworkshops nicht mehr aushaelt: Am MI, ab 19:30, findet das Pre-workhsop-Treffen im Roanhi statt: http://www.ronahi.at/ Schottenfeldgasse 18 Mit gratis WLan. Ein Tisch ist oben reserviert auf Vienna.pm! -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} From domm at cpan.org Wed Jun 7 07:00:21 2006 From: domm at cpan.org (Thomas Klausner) Date: Wed, 7 Jun 2006 16:00:21 +0200 Subject: [Vienna-pm] regex-foo Message-ID: <20060607140021.GK11053@domm2.zsi.at> Hi! Ich bin hier grad auf dieses "Problem" gestossen (worden): my $string="Use Python"; (my $besser=$string)=~s/Python/Perl/; print $besser; Use Perl passt. my $string="Use Python"; say((my $besser=$string)=~s/Python/Perl/); sub say { print @_ } 1 passt nicht, was ja auch klar ist. Eingentlich war gefragt, ob sowas geht: my $string="Use Python"; say(($string)=~s/Python/Perl/); sub say { print @_ } Use Perl Also ein Replace mit eine Regex, wobei der modifizierte String an eine Funktion uebergeben werden soll ?? -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} From KlausRusch at atmedia.net Wed Jun 7 06:47:29 2006 From: KlausRusch at atmedia.net (Klaus Johannes Rusch) Date: Wed, 07 Jun 2006 15:47:29 +0200 Subject: [Vienna-pm] regex-foo In-Reply-To: <20060607140021.GK11053@domm2.zsi.at> References: <20060607140021.GK11053@domm2.zsi.at> Message-ID: <4486D8F1.1030701@atmedia.net> Thomas Klausner wrote: >Eingentlich war gefragt, ob sowas geht: > > my $string="Use Python"; > say(($string)=~s/Python/Perl/); > sub say { print @_ } > > Use Perl > >Also ein Replace mit eine Regex, wobei der modifizierte String an eine Funktion uebergeben werden soll ?? > > Nicht wahnsinnig elegant, aber es funktioniert: my $string="Use Python"; say(eval { $string=~s/Python/Perl/; $string }); sub say { print @_ } -- Klaus Johannes Rusch KlausRusch at atmedia.net http://www.atmedia.net/KlausRusch/ From pilsl at goldfisch.at Wed Jun 7 07:12:23 2006 From: pilsl at goldfisch.at (peter pilsl) Date: Wed, 07 Jun 2006 16:12:23 +0200 Subject: [Vienna-pm] regex-foo In-Reply-To: <4486D8F1.1030701@atmedia.net> References: <20060607140021.GK11053@domm2.zsi.at> <4486D8F1.1030701@atmedia.net> Message-ID: <4486DEC7.60809@goldfisch.at> > > Nicht wahnsinnig elegant, aber es funktioniert: > > my $string="Use Python"; > say(eval { $string=~s/Python/Perl/; $string }); > sub say { print @_ } > ich glaube, manchmal ist die verwendung von hilfsvariablen einfach ganz einfach :) lgp -- mag. peter pilsl goldfisch.at IT- & dataconsulting tel: +43 650 3574035 tel: +43 1 8900602 fax: +43 1 8900602 15 pilsl at goldfisch.at From boehm at isis.wu-wien.ac.at Thu Jun 8 01:32:51 2006 From: boehm at isis.wu-wien.ac.at (Walter Boehm) Date: 08 Jun 2006 10:32:51 +0200 Subject: [Vienna-pm] Bitte um einen Tip Message-ID: <1149755570.649.20.camel@hilbert.uza2.wu-wien.ac.at> Liebe Kollegen, ich habe folgendes Problem: auf einer einer Linux-Maschine (Redhat Shrike) habe ich perl 5.8.0 installiert und ein ein groesseres Perl-script zusammen mit etlichen Modulen, das bisher wunderbar funktioniert hat. Diese Module sind auf Tk.pm angewiesen (Tk::VERSION 800.024), also auch nicht gerade neu. Nun habe ich auf einem anderen PC das letzte debian installiert. Dort laeuft perl 5.8.4 und Tk 804.027. Beim Start des Script erhalte ich die Meldung: Tcl_GetStringFromObj @ 535 not utf8 SV = PV(0x89bf104) at 0x89ee6b8 REFCNT = 1 FLAGS = (POK,pPOK,UTF8) PV = 0x89f0df0 "font \"\260\r\237\10etica -12 bold\" doesn't exist"\0 [UTF8 "font "\x{d7c8}\r\x{7c8}\x{8}etica -12 bold" doesn't exist"] CUR = 39 LEN = 40 SV = PVMG(0x896df08) at 0x89ee6b8 REFCNT = 1 FLAGS = (SMG,POK,pPOK,UTF8) IV = 0 NV = 0 PV = 0x89f0df0 "font \"\260\r\237\10etica -12 bold\" doesn't exist"\0 [UTF8 "font "\x{d7c8}\r\x{7c8}\x{8}etica -12 bold" doesn't exist"] CUR = 39 LEN = 40 MAGIC = 0x89f0e80 MG_VIRTUAL = &PL_vtbl_utf8 MG_TYPE = PERL_MAGIC_utf8(w) MG_LEN = 39 font "?^Metica -12 bold" doesn't exist at /usr/local/lib/perl/5.8.4/Tk/Widget.pm line 190. at /usr/local/lib/perl/5.8.4/Tk/Widget.pm line 203 ... etc. Da ich wahrlich kein Perl-Guru bin, moechte ich Euch bitten, mir vielleicht einen Tipp zu geben, wie ich das Ding wieder zum Laufen bringen koennte. Vielen Dank erstmal W. Boehm. From rl at brabbel.net Fri Jun 9 03:21:58 2006 From: rl at brabbel.net (Roland Lammel) Date: Fri, 9 Jun 2006 12:21:58 +0200 Subject: [Vienna-pm] Bitte um einen Tip In-Reply-To: <1149755570.649.20.camel@hilbert.uza2.wu-wien.ac.at> References: <1149755570.649.20.camel@hilbert.uza2.wu-wien.ac.at> Message-ID: <9b51ffb30606090321s59e2505ai184ac9ac914fc745@mail.gmail.com> Hi, Es scheint als findet Tk die Schrift nicht f?r die Darstellung, die wiederum wohl nicht gefunden wird, da der Schriftname nicht korrekt ist (entweder durch charset conversion, da offensichtlich UTF-8 verwendet wird, oder tippfehler/besch?digte Config-Dateien). Da is sich offenbar um "Helvetica" sollte dies eigentlich auch so im Trace stehen (bzw. der Trace gar nicht auftauchen). Voraussichtlich . Die Fonts werden durch die Xresources bestimmt, bzw. eben die system defaults genommen. -) Applikationssconfig f?r Fonts pr?fen -) Wenn die Applikation die Fonts nicht selbst setzt: User settings $HOME/.XResources bzw. System settings pr?fen /etc/X11/Xresources Wenn die Config selbst passt, ist es vermutlich auf ein fehlerhaftes UTF-8 handling zur?ckzuf?hren. Hoffe das hilft ein wenig +rl On 08 Jun 2006 10:32:51 +0200, Walter Boehm wrote: > > Liebe Kollegen, > ich habe folgendes Problem: auf einer einer Linux-Maschine (Redhat > Shrike) habe ich perl 5.8.0 installiert und ein ein groesseres > Perl-script zusammen mit etlichen Modulen, das bisher wunderbar > funktioniert hat. Diese Module sind auf Tk.pm angewiesen (Tk::VERSION > 800.024), also auch nicht gerade neu. Nun habe ich auf einem anderen PC > das letzte debian installiert. Dort laeuft perl 5.8.4 und Tk 804.027. > Beim Start des Script erhalte ich die Meldung: > > Tcl_GetStringFromObj @ 535 not utf8 > SV = PV(0x89bf104) at 0x89ee6b8 > REFCNT = 1 > FLAGS = (POK,pPOK,UTF8) > PV = 0x89f0df0 "font \"\260\r\237\10etica -12 bold\" doesn't exist"\0 > [UTF8 "font "\x{d7c8}\r\x{7c8}\x{8}etica -12 bold" doesn't exist"] > CUR = 39 > LEN = 40 > SV = PVMG(0x896df08) at 0x89ee6b8 > REFCNT = 1 > FLAGS = (SMG,POK,pPOK,UTF8) > IV = 0 > NV = 0 > PV = 0x89f0df0 "font \"\260\r\237\10etica -12 bold\" doesn't exist"\0 > [UTF8 "font "\x{d7c8}\r\x{7c8}\x{8}etica -12 bold" doesn't exist"] > CUR = 39 > LEN = 40 > MAGIC = 0x89f0e80 > MG_VIRTUAL = &PL_vtbl_utf8 > MG_TYPE = PERL_MAGIC_utf8(w) > MG_LEN = 39 > font "?^Metica -12 bold" doesn't exist at > /usr/local/lib/perl/5.8.4/Tk/Widget.pm line 190. > at /usr/local/lib/perl/5.8.4/Tk/Widget.pm line 203 > > ... > etc. > Da ich wahrlich kein Perl-Guru bin, moechte ich Euch bitten, mir > vielleicht einen Tipp zu geben, wie ich das Ding wieder zum Laufen > bringen koennte. > > Vielen Dank erstmal > W. Boehm. > > > _______________________________________________ > Vienna-pm mailing list > Vienna-pm at pm.org > http://mail.pm.org/mailman/listinfo/vienna-pm > -- * Sonja & Roland Lammel * * Herbalife & Wellness Beratung * http://www.xund.biz * mailto:lammel at xund.biz * Telefon: +43676 87835935 * * Gesunde Gewichtskontrolle * Energie & Vitalit?t * Wellness & Fitness * Selbstst?ndig arbeiten von zu Hause * Nebenverdienst * 2. Standbein? * * Sind Sie interessiert an Ver?nderung? Holen Sie sich die Fakten! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/vienna-pm/attachments/20060609/b393026e/attachment.html From gooly at gmx.at Fri Jun 9 07:15:58 2006 From: gooly at gmx.at (Carl A. Schreiber) Date: Fri, 9 Jun 2006 16:15:58 +0200 Subject: [Vienna-pm] SuSE 9.3 und Net::Pcap bzw Net::PcapUtils Message-ID: <200606091615.58796.gooly@gmx.at> Hallo, ich brauch die Paket auf SuSE 9.3 (unter 9.1 war/ist alles ohne Probleme), also sollte cpan das installieren -- aaaber: looking for -lpcap... no - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - You appear to lack the pcap(3) library. If it is installed in a non-standard location, please try setting the LIBS and INC values on the command line. Or get the sources and install the pcap library from ttp://www.tcpdump.org/ aus yast habe ich das dortige libpcap 0.8.3 installiert. Wenn ich mal davon ausgehe, dass das also bei Eignung finbar ist, ist es wohl nicht das richtige, also auf zu ftp://www.tcpdump.org/ und das aktuelle libpcap-0.9.4 geholt, entpackt und beim ./configure -- aus die Maus: configure:1859: error: C compiler cannot create executables See `config.log' for more details. (Der entsch. Teil ist unten, es felhlt offenbar crt.o) h??? Ich hab dann in yast versucht diverse Zusatz glibc zu installieren, was alles nicht funktionierte, weil - trotz Auflistung und Install.Entscheid - nicht findbar waren!! Weiss jemand Rat, wie ich weiter komme - trotz WM? eine ganz, ganz herzlichen Dank - wegen der WM! Calli Auszug aus der config.log .. configure:1785: $? = 0 configure:1787: gcc -V &5 gcc: `-V' option must have argument configure:1790: $? = 1 configure:1814: checking for C compiler default output configure:1817: gcc conftest.c >&5 /usr/lib/gcc-lib/i586-suse-linux/3.3.5/../../../../i586-suse-linux/bin/ld: crt1.o: No such file: No such file or directory collect2: ld returned 1 exit status configure:1820: $? = 1 configure: failed program was: | #line 1793 "configure" | /* confdefs.h. */ | | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:1859: error: C compiler cannot create executables See `config.log' for more details. ... From gooly at gmx.at Fri Jun 9 07:29:19 2006 From: gooly at gmx.at (Carl A. Schreiber) Date: Fri, 9 Jun 2006 16:29:19 +0200 Subject: [Vienna-pm] SuSE 9.3 und Net::Pcap bzw Net::PcapUtils In-Reply-To: <200606091615.58796.gooly@gmx.at> References: <200606091615.58796.gooly@gmx.at> Message-ID: <200606091629.19700.gooly@gmx.at> hab's jetzt doch geschafft, einfach aus rpm-find die aktuelle Version der opensuse auf yast 9.3 mit yast -i libpcap-0.9.3-5.i586.rpm.html installiert. Danach ist cpan bis zum OK durchgelaufen! Danke trotzdem, Calli Am Freitag, 9. Juni 2006 16:15 schrieb Carl A. Schreiber: > Hallo, > > ich brauch die Paket auf SuSE 9.3 (unter 9.1 war/ist alles ohne > Probleme), also sollte cpan das installieren -- aaaber: > > looking for -lpcap... no > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > You appear to lack the pcap(3) library. > If it is installed in a non-standard location, > please try setting the LIBS > and INC values on the command line. > > Or get the sources and install the pcap library from > ttp://www.tcpdump.org/ > > aus yast habe ich das dortige libpcap 0.8.3 installiert. > Wenn ich mal davon ausgehe, dass das also bei Eignung finbar ist, ist > es wohl nicht das richtige, also auf zu ftp://www.tcpdump.org/ und > das aktuelle libpcap-0.9.4 geholt, entpackt und beim ./configure -- > aus die Maus: > configure:1859: error: C compiler cannot create executables > See `config.log' for more details. > (Der entsch. Teil ist unten, es felhlt offenbar crt.o) > > h??? Ich hab dann in yast versucht diverse Zusatz glibc zu > installieren, was alles nicht funktionierte, weil - trotz Auflistung > und > Install.Entscheid - nicht findbar waren!! > > Weiss jemand Rat, wie ich weiter komme - trotz WM? > eine ganz, ganz herzlichen Dank - wegen der WM! > Calli > > Auszug aus der config.log > .. > configure:1785: $? = 0 > configure:1787: gcc -V &5 > gcc: `-V' option must have argument > configure:1790: $? = 1 > configure:1814: checking for C compiler default output > configure:1817: gcc conftest.c >&5 > /usr/lib/gcc-lib/i586-suse-linux/3.3.5/../../../../i586-suse-linux/bi >n/ld: crt1.o: No such file: No such file or directory > collect2: ld returned 1 exit status > configure:1820: $? = 1 > > configure: failed program was: > | #line 1793 "configure" > | /* confdefs.h. */ > | > | #define PACKAGE_NAME "" > | #define PACKAGE_TARNAME "" > | #define PACKAGE_VERSION "" > | #define PACKAGE_STRING "" > | #define PACKAGE_BUGREPORT "" > | /* end confdefs.h. */ > | > | int > | main () > | { > | > | ; > | return 0; > | } > > configure:1859: error: C compiler cannot create executables > See `config.log' for more details. > ... > > > > _______________________________________________ > Vienna-pm mailing list > Vienna-pm at pm.org > http://mail.pm.org/mailman/listinfo/vienna-pm From domm at cpan.org Sun Jun 11 12:17:36 2006 From: domm at cpan.org (Thomas Klausner) Date: Sun, 11 Jun 2006 21:17:36 +0200 Subject: [Vienna-pm] Zusammenfassung Perl Workshop Message-ID: <20060611191736.GB30928@domm2.zsi.at> Hi! Ich hab einen kleinen Bericht auf use.perl gestellt: http://use.perl.org/~domm/journal/29873 Wer aehnliche Berichte irgendwo veroeffentliche oder Fotos hat, bitte entweder mir mitteilen oder als Kommentar an den use.perl-Artikel dranhaengen! http://vienna.pm.org habe ich auch (endlich) upgedated... Nochmal Danke fuers kommen und fuer den nette Workshop! -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} From domm at cpan.org Mon Jun 19 04:27:46 2006 From: domm at cpan.org (Thomas Klausner) Date: Mon, 19 Jun 2006 13:27:46 +0200 Subject: [Vienna-pm] YAPC::Europe 2007 Proposal Meeting Message-ID: <20060619112746.GF31509@domm2.zsi.at> Hi! Vienna.pm wird also ein Proposal fuer die Austragung der YAPC::Europe 2007 in Wien einreichen. Damit das klappt (nicht nur das Proposal, sondern vor allem die Durchfuehrung) brauchen wir allerdings MithelferInnen. Und zwar sowohl beim Organisieren/Planen, als auch bei der Durchfuehrung. Ein erstes Treffen findet diese Woche am MI, 21.6. um 16:00 in der WU statt. Wo genau in der WU moege bitte ein WU-ortskundiger (Klaus, Andrea?) kundtun. Themen sind: - Location checken (welche Raeume etc) - Arbeiten definieren & aufteilen - Proposal Rohfassung erstellen Alle Interessierten (nicht nur an dem Termin am MI, sondern an YAPC-Mithilfe im allgemeinen) moegen sich bitte mal per Email bei mir melden. WICHTIG: Alleine kann ich das unmoeglich durchziehen. Wer also mal div. Perl-Beruehmtheiten [1] in real life & in Wien erleben will, moege bitte beim Organisieren helfen :-) 1: Larry Wall kommt normalerweise, wenn man ihn einlaedt (was wir tun wuerden). Wenn genug Geld da ist (Sponsoren!), waere zB Damian Conway sicher auch ein super Gast (er kommt halt aus Australien...). -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} From domm at cpan.org Mon Jun 19 08:15:33 2006 From: domm at cpan.org (Thomas Klausner) Date: Mon, 19 Jun 2006 17:15:33 +0200 Subject: [Vienna-pm] Fwd: Using Perl in QA departments Message-ID: <20060619151533.GH31509@domm2.zsi.at> Hi! Habs selber noch nicht genau angeschaut, aber auf der qa-liste kam einiges an positivem feedback ----- Forwarded message from Gabor Szabo ----- From: Gabor Szabo Subject: Using Perl in QA departments Date: Sat, 17 Jun 2006 22:12:54 +0300 To: perl-qa at perl.org If anybody is interested on this list, the slides and the examples of my 2 days course are available here: http://www.szabgab.com/perl_in_test_automation.html regards Gabor ----- End forwarded message ----- -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} From hjp-vienna-pm-list at hjp.at Tue Jun 20 16:03:43 2006 From: hjp-vienna-pm-list at hjp.at (Peter J. Holzer) Date: Wed, 21 Jun 2006 01:03:43 +0200 Subject: [Vienna-pm] YAPC::Europe 2007 Proposal Meeting In-Reply-To: <20060619112746.GF31509@domm2.zsi.at> References: <20060619112746.GF31509@domm2.zsi.at> Message-ID: <20060620230343.GD21607@teal.hjp.at> On 2006-06-19 13:27:46 +0200, Thomas Klausner wrote: > Ein erstes Treffen findet diese Woche am MI, 21.6. um 16:00 in der WU > statt. Wo genau in der WU moege bitte ein WU-ortskundiger (Klaus, > Andrea?) kundtun. Ja, w?re nett, damit wir auch hinfinden. Wenn ich mich in der WU einfinde und beliebige Menschen nach "einem Klaus[0] oder einer Andrea" frage, ist f?hrt das zwar m?glicherweise zu einem interessanten, aber eher nicht zum gew?nschten Ergebnis. Wir kennen mittlerweile Bogosort und die Zen-Navigation. F?llt jemandem ein kackiger Name f?r den oben skizzierten Suchalgorithmus ein? hp [0] Ok, ich nehme an, mit Klaus ist Klaus Ita gemeint. -- _ | Peter J. Holzer | Ich sehe nun ein, dass Computer wenig |_|_) | Sysadmin WSR | geeignet sind, um sich was zu merken. | | | hjp at hjp.at | __/ | http://www.hjp.at/ | -- Holger Lembke in dan-am -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.pm.org/pipermail/vienna-pm/attachments/20060621/5de8f8f8/attachment.bin From domm at cpan.org Tue Jun 20 23:45:23 2006 From: domm at cpan.org (Thomas Klausner) Date: Wed, 21 Jun 2006 08:45:23 +0200 Subject: [Vienna-pm] YAPC::Europe 2007 Proposal Meeting In-Reply-To: <20060620230343.GD21607@teal.hjp.at> References: <20060619112746.GF31509@domm2.zsi.at> <20060620230343.GD21607@teal.hjp.at> Message-ID: <20060621064523.GA19551@domm2.zsi.at> Hi! On Wed, Jun 21, 2006 at 01:03:43AM +0200, Peter J. Holzer wrote: > On 2006-06-19 13:27:46 +0200, Thomas Klausner wrote: > > Ein erstes Treffen findet diese Woche am MI, 21.6. um 16:00 in der WU > > statt. Wo genau in der WU moege bitte ein WU-ortskundiger (Klaus, > > Andrea?) kundtun. > > Ja, w?re nett, damit wir auch hinfinden. Wenn ich mich in der WU Ich dachte eigentlich das Andrea oder Klaus hier posten, wo wir uns treffen. Hoffentlich machen sie das noch... Sonst: Ich vermute mal, die WU wird einen Haupteingang haben? Dann koennten wir uns dort treffen... -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} From domm at cpan.org Wed Jun 21 01:29:58 2006 From: domm at cpan.org (Thomas Klausner) Date: Wed, 21 Jun 2006 10:29:58 +0200 Subject: [Vienna-pm] YAPC::Europe 2007 Proposal Meeting In-Reply-To: <20060621064523.GA19551@domm2.zsi.at> References: <20060619112746.GF31509@domm2.zsi.at> <20060620230343.GD21607@teal.hjp.at> <20060621064523.GA19551@domm2.zsi.at> Message-ID: <20060621082957.GF19551@domm2.zsi.at> Hi! On Wed, Jun 21, 2006 at 08:45:23AM +0200, Thomas Klausner wrote: > > > Ein erstes Treffen findet diese Woche am MI, 21.6. um 16:00 in der WU > > > statt. Wo genau in der WU moege bitte ein WU-ortskundiger (Klaus, > > > Andrea?) kundtun. > > > > Ja, w?re nett, damit wir auch hinfinden. Wenn ich mich in der WU OK, hier die Orts-Infos: Wir treffen uns um 16:00 in der Aula im UZA I, WU Hier gibts einen Lageplan: http://wwwai.wu-wien.ac.at/lageplan.html Die Aula ist ungefaehr beimn 'Z' :-) Klaus Ita ist auf der WU unter 5202 erreichbar. Bis dann! -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} From domm at cpan.org Thu Jun 22 06:15:23 2006 From: domm at cpan.org (Thomas Klausner) Date: Thu, 22 Jun 2006 15:15:23 +0200 Subject: [Vienna-pm] YAPC::Europe::2006 - Call For Participation Message-ID: <20060622131523.GA1919@domm2.zsi.at> ----- Forwarded message from Barbie ----- From: Barbie Subject: [Conferences] YAPC::Europe::2006 - Call For Participation Date: Thu, 22 Jun 2006 10:17:56 +0100 To: YAPC Europe Conferences Welcome the ninth official bulletin for the 2006 YAPC::Europe Perl Conference in Birmingham, UK. ==== Call For Participation ==== We've got a venue, scheduled speakers and now have so much momentum, we don't think we could stop this thing if we tried! The next step is to get you lot as excited as we are. As such we are pleased to open up the website and conference registration to everyone. ==== Website Registration ==== Prior to booking a place on the conference register, individuals will need to register on the website. Fill in all your details and submit. The system will create a login for you so you're ready for conference registration. PLEASE NOTE: Registration for the conference website and the conference wiki are two different mechanisms and are not integrated. To register for the website, please click on the 'Registration' link in the top box on the right hand side of the page. From here you will be presented a registration screen. Please enter your details and click the Register button. Once successfully registered, you will be automatically logged into the system. From here you can then register for the conference. ==== Conference Registration ==== As mentioned in a previous backstage bulletin, we have two types of conference fee available, a standard rate and an individual rate. Note that all payment processing will be handled by PayPal, and we will not process any of your credit details. To register for the conference, please click on the 'Registration' link in the second 'Conference' box on the right hand side of each page of the website (http://www.birmingham2006.com). From here you will be presented with either Standard or Individual registration button. Click the appropriate button and complete the following screens. The final confirmation screen will include a PayPal button, which you can click to complete the payment process. The standard rate of ?100 (approximately 150 Euros) per attendee is for businesses who would like to send attendees and make a single payment. On the standard rate registration screen, please enter the appropriate details for each attendee and complete the payment process. Receipts will be available for collection at the conference or can be sent by recorded delivery, fax or email as requested. The individual rate of ?75 (approximately 110 Euros) is for those attendees who will be handling all the registration and payment process themselves. Prior to registering with the individual rate, you will need to login or register to the website. On the individual rate screen, please verify your details and complete the payment process. Attendees registered through the standard process, may register for the website at any time, although the automated process will create a basic login once payment has been cleared. You will then be required to login and complete registration. Note that you will need to register with the same email address as supplied on the standard form. If there is any change to these details, please let us know as soon as possible. ==== Venue Capacity ==== We have a limited capacity venue. Our absolute capacity is 300, which includes attendees, speakers, organisers and conference helpers. If we reach our full capacity we will not be able to accept further online registration or payment "on the door". As such it is recommended you register for conference registration at your earliest convenience. Online registration will close on the morning (GMT) of Saturday 26th August, or when full capacity has been reached, whichever occurs first. Only in the event of online sales not reaching venue capacity will we accept people on the door. Please note that the discounted individual rate will not be available after the close of online registration. Just to make this clear - if you turn up expecting to pay on the day it will cost you ?100 and places will be subject to availability. Therefore you are strongly recommended to purchase your ticket online. ==== Introduction To Our Sponsors ==== Following on from our previous major newsletter, we are extremely pleased to announce a further sponsor. 1) Morgan Stanley Platinum sponsor, Morgan Stanley are set to sponsor Lecture Room 1. We are delighted to have them aboard, helping us to put on a great conference for you all. Morgan Stanley is a global financial services firm offering a complete range of sophisticated financial services to a large and diversified group of clients and customers, including sovereign governments, corporations, institutions and individuals throughout the world. With a unique balance between institutional and retail capabilities, Morgan Stanley maintains leading market positions in its three primary businesses - securities, investment management and credit services. ==== Introducing The Team ==== We've introduced the core members of the organisational team, but now we'd like to introduce you to two press-ganged members of the organisational team. Jon Brookes (http://birmingham.pm.org/cgi-bin/brum.pl?act=user-main&searchname=brookes) first came along to a Birmingham Perl Mongers meeting when he couldn't find who was responsible for the Stafford group (it died a long time ago) and felt Birmingham.pm was easier to get to than Manchester.pm (which has also since died). Jon has been helping us to look after the server that was kindly donated by Positive Internet, and ensuring the upgrades, patches and reboots work as expected. Andrew Stringer (http://birmingham.pm.org/cgi-bin/brum.pl?act=user-main&searchname=stringer) has been a constant source of suggestions for venues, local sponsors and generally opening up the networking within the local government to help us find alternative ways of funding the event. Andrew is an enthusiastic Perl Monger and a keen Linux and Open Source advocate ==== Contact ==== Should you wish to contact us, there is an email address (organisers at birmingham2006.com) available for direct contact, where you can mail us with your questions and suggestions. There is also the regular YAPC::Europe conference mailing list (http://lists.yapceurope.org/mailman/listinfo/conferences), which is open to all. That's all for this release. Look out for more news and announcements in the future. Thanks, The Birmingham 2006 Organisers http://www.birmingham2006.com YAPC::Europe::2006 is sponsored by Morgan Stanley, Shadowcat Systems, Positive Internet, UKUUG and Apress. YAPC::Europe::2006 | 30th August - 1st September 2006 | Birmingham, UK _______________________________________________ Conferences mailing list Conferences at yapceurope.org http://lists.yapceurope.org/mailman/listinfo/conferences ----- End forwarded message ----- -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} From pilsl at goldfisch.at Fri Jun 23 04:05:21 2006 From: pilsl at goldfisch.at (peter pilsl) Date: Fri, 23 Jun 2006 13:05:21 +0200 Subject: [Vienna-pm] mod_perl und GDGraph Message-ID: <449BCAF1.7030803@goldfisch.at> verwendet jemand GDGraph unter mod_perl? F?hrt zu b?sen segfaults hier bei mir. Hab noch nicht n?her analysiert. Vielleicht weiss wer was. danke lgp -- mag. peter pilsl goldfisch.at IT- & dataconsulting tel: +43 650 3574035 tel: +43 1 8900602 fax: +43 1 8900602 15 pilsl at goldfisch.at From robe at amd.co.at Fri Jun 23 05:40:55 2006 From: robe at amd.co.at (Michael Renner) Date: Fri, 23 Jun 2006 14:40:55 +0200 Subject: [Vienna-pm] mod_perl und GDGraph In-Reply-To: <449BCAF1.7030803@goldfisch.at> References: <449BCAF1.7030803@goldfisch.at> Message-ID: <449BE157.5050603@amd.co.at> peter pilsl wrote: > verwendet jemand GDGraph unter mod_perl? F?hrt zu b?sen segfaults hier > bei mir. Hab noch nicht n?her analysiert. Vielleicht weiss wer was. Wir haben aus mir unbekanntem Grund die GD-Sachen als cgi laufen (wird auch nicht extensiv verwendet). Eventuell unterschiedlich kompilierte Binaries? (LFS zB).. mfg michael