From harald.joerg at ts.fujitsu.com Tue Sep 16 03:59:27 2014 From: harald.joerg at ts.fujitsu.com (Harald Joerg) Date: Tue, 16 Sep 2014 12:59:27 +0200 Subject: [Munich-pm] Neue Syntax-Konstrukte der Perl-Versionen Message-ID: <87ppevzv8w.fsf@mch5832n.mch.fsc.net> Hallo Mongers, ein Thema, das mich schon länger beschäftigt, wenn ich meinen eigenen Perl-Code oder auch den anderer Leute nach längerer Zeit wieder mal anschaue: Wie lange dauert es, bis ein neues Perl-Feature auch tatsächlich in den aktiven Wortschatz der Perl-Gemeinde übergeht? Klar, wenn Code weit verteilt werden muss, richtet man sich nach der ältesten Version. Ältere als 5.10 finde ich auf keinem meiner Systeme, und trotzdem nutze ich kaum die Neuerungen, weil's anders auch schnell genug aus den Fingern fließt und weil ich es für extrem mühsam halte, durch die Perldeltas zu wühlen. Nun hat Herbert Breunung grade auf Heise die Neuerungen von 5.20 zusammengestellt, was an sich schon eine feine Sache ist: http://www.heise.de/developer/artikel/Syntaktische-Neuheiten-in-Perl-5-20-2391923.html Dabei ist mir auch ein Verweis auf ein Modul aufgefallen, das ich bisher nicht kannte: Syntax::Construct, https://metacpan.org/pod/Syntax::Construct. Im Inhaltsverzeichnis sieht man auf einem Blick, wann was gekommen ist (wenn man ungefähr weiß, was sich hinter den Dingern verbirgt, aber den kriegt man schnell). Wow. Wird Zeit, mich endlich an //. Ich war dabei, als Damian Conway das auf YAPC::EU in München vorgestellt hat und trotzdem war bei mir immer noch im Kleinhirn verdrahtet, das erstmal noch brav auszuschreiben. Etliche Zeilen wie die folgende sollten endlich aus meinem Code verschwinden: $foo = "" unless defined $foo; # avoid "uninitalized" warning -- Cheers, haj From pm.list at perl-services.de Tue Sep 16 04:16:12 2014 From: pm.list at perl-services.de (Renee B) Date: Tue, 16 Sep 2014 13:16:12 +0200 Subject: [Munich-pm] Neue Syntax-Konstrukte der Perl-Versionen In-Reply-To: <87ppevzv8w.fsf@mch5832n.mch.fsc.net> References: <87ppevzv8w.fsf@mch5832n.mch.fsc.net> Message-ID: <54181BFC.3090902@perl-services.de> Hallo, On 16.09.2014 12:59, Harald Joerg wrote: > Hallo Mongers, > > ein Thema, das mich schon länger beschäftigt, wenn ich meinen eigenen > Perl-Code oder auch den anderer Leute nach längerer Zeit wieder mal > anschaue: Wie lange dauert es, bis ein neues Perl-Feature auch > tatsächlich in den aktiven Wortschatz der Perl-Gemeinde übergeht? Du könntest ja http://grep.cpan.me benutzen und nach Konstrukten suchen. Wenn die in einigen Modulen zum Einsatz kommen, dürften die im DarkPAN stark genutzt werden. Das was ich persönlich nutze wenn ich weiß, dass kein Perl < 5.10 zum Einsatz kommt: // => Einfach genial \K => macht s/// in vielen Fällen viel lesbarer und schont den Speicher /r => wie ich (my $var = $var2) =~ s/// hasse (?<>) => endlich keine $1, $2, $3 mehr hin und wieder auch mal each auf Arrays Ansonsten freue ich mich auf postderef und Signaturen. > Klar, wenn Code weit verteilt werden muss, richtet man sich nach der > ältesten Version. Ältere als 5.10 finde ich auf keinem meiner Systeme, > und trotzdem nutze ich kaum die Neuerungen, weil's anders auch schnell > genug aus den Fingern fließt und weil ich es für extrem mühsam halte, > durch die Perldeltas zu wühlen. Hättest Du immer brav das Perl-Magazin gelesen, wäre Dir diese Aufgabe abgenommen worden ;-) - Renée From harald.joerg at ts.fujitsu.com Tue Sep 16 06:01:30 2014 From: harald.joerg at ts.fujitsu.com (Harald Joerg) Date: Tue, 16 Sep 2014 15:01:30 +0200 Subject: [Munich-pm] Neue Syntax-Konstrukte der Perl-Versionen In-Reply-To: <54181BFC.3090902@perl-services.de> (Renee B.'s message of "Tue, 16 Sep 2014 13:16:12 +0200") References: <87ppevzv8w.fsf@mch5832n.mch.fsc.net> <54181BFC.3090902@perl-services.de> Message-ID: <87egvbzplh.fsf@mch5832n.mch.fsc.net> Renee B schreibt: > Hallo, > > On 16.09.2014 12:59, Harald Joerg wrote: >> Hallo Mongers, >> >> ein Thema, das mich schon länger beschäftigt, wenn ich meinen eigenen >> Perl-Code oder auch den anderer Leute nach längerer Zeit wieder mal >> anschaue: Wie lange dauert es, bis ein neues Perl-Feature auch >> tatsächlich in den aktiven Wortschatz der Perl-Gemeinde übergeht? > > Du könntest ja http://grep.cpan.me benutzen und nach Konstrukten > suchen. Ah, guter Hinweis für statistische Erhebungen. Geht sicher nicht gleich gut für alle Konstrukte, aber für beispielsweise \?\<\w+> ("Named capture buffers") findet man "327 distributions". Da schau an, hätte ich nicht erwartet! > Wenn die in einigen Modulen zum Einsatz kommen, > dürften die im DarkPAN stark genutzt werden. > > Das was ich persönlich nutze wenn ich weiß, dass kein Perl < 5.10 zum > Einsatz kommt: > > // => Einfach genial > \K => macht s/// in vielen Fällen viel lesbarer und schont den Speicher > /r => wie ich (my $var = $var2) =~ s/// hasse > (?<>) => endlich keine $1, $2, $3 mehr > > hin und wieder auch mal > > each auf Arrays > > Ansonsten freue ich mich auf postderef und Signaturen. Ja, das sind auch meine Favoriten! >> Klar, wenn Code weit verteilt werden muss, richtet man sich nach der >> ältesten Version. Ältere als 5.10 finde ich auf keinem meiner Systeme, >> und trotzdem nutze ich kaum die Neuerungen, weil's anders auch schnell >> genug aus den Fingern fließt und weil ich es für extrem mühsam halte, >> durch die Perldeltas zu wühlen. > > Hättest Du immer brav das Perl-Magazin gelesen, wäre Dir diese Aufgabe > abgenommen worden ;-) Stimmt. Dann könnte ich mich statt dessen durch die Perl-Magazine wühlen ;-> Ich verfolge schon brav, was in neuen Perl-Versionen dazukommt und habe immer noch Damian Conways "ööör" als Erläuterung des // im Ohr (YAPC::EU, 2002). Und merke mir das dann "für später". Aber wer weckt mich, wenn "später" dann mal eintritt? Die Fragestellung ist also andersrum: "Hey, da brauche ich eine Closure, das wäre was für 'my sub'. Ab welcher Version geht denn das gleich wieder?" - Mit Syntax::Construct sehe ich das auf einen Blick. -- Cheers, haj From lists at perl-services.de Tue Sep 16 04:14:03 2014 From: lists at perl-services.de (Renee B) Date: Tue, 16 Sep 2014 13:14:03 +0200 Subject: [Munich-pm] Neue Syntax-Konstrukte der Perl-Versionen In-Reply-To: <87ppevzv8w.fsf@mch5832n.mch.fsc.net> References: <87ppevzv8w.fsf@mch5832n.mch.fsc.net> Message-ID: <54181B7B.8070404@perl-services.de> Hallo, On 16.09.2014 12:59, Harald Joerg wrote: > Hallo Mongers, > > ein Thema, das mich schon länger beschäftigt, wenn ich meinen eigenen > Perl-Code oder auch den anderer Leute nach längerer Zeit wieder mal > anschaue: Wie lange dauert es, bis ein neues Perl-Feature auch > tatsächlich in den aktiven Wortschatz der Perl-Gemeinde übergeht? Du könntest ja http://grep.cpan.me benutzen und nach Konstrukten suchen. Wenn die in einigen Modulen zum Einsatz kommen, dürften die im DarkPAN stark genutzt werden. Das was ich persönlich nutze wenn ich weiß, dass kein Perl < 5.10 zum Einsatz kommt: // => Einfach genial \K => macht s/// in vielen Fällen viel lesbarer und schont den Speicher /r => wie ich (my $var = $var2) =~ s/// hasse (?<>) => endlich keine $1, $2, $3 mehr hin und wieder auch mal each auf Arrays Ansonsten freue ich mich auf postderef und Signaturen. > Klar, wenn Code weit verteilt werden muss, richtet man sich nach der > ältesten Version. Ältere als 5.10 finde ich auf keinem meiner Systeme, > und trotzdem nutze ich kaum die Neuerungen, weil's anders auch schnell > genug aus den Fingern fließt und weil ich es für extrem mühsam halte, > durch die Perldeltas zu wühlen. Hättest Du immer brav das Perl-Magazin gelesen, wäre Dir diese Aufgabe abgenommen worden ;-) - Renée From tech at tool.de Tue Sep 23 14:40:19 2014 From: tech at tool.de (Andreas Hernitscheck) Date: Tue, 23 Sep 2014 23:40:19 +0200 Subject: [Munich-pm] Alternative dzil In-Reply-To: <54030CCC.6060300@gmx.de> References: <54030CCC.6060300@gmx.de> Message-ID: <5421E8C3.6030303@tool.de> Servus Gemeinde, .. kennt jemand eine Alternative zu Dist::Zilla? Das (bzw eine Abhängigkeit) will sich auf meinem Mac nicht installieren lassen. Ich brauche ein command line tool, um cpanm libs leicht pflegen zu können. Also auch das Erstellen (Makefile.PL), Packen und Versionieren übernehmen kann. dzil betreffend mein Problem: ! Installing the dependencies failed: Missing version info for module 'App::Cmd::Setup', Missing version info for module 'App::Cmd::Tester' ... --force hilft nicht. From richard.foley at rfi.net Sun Sep 28 08:30:56 2014 From: richard.foley at rfi.net (Richard Foley) Date: Sun, 28 Sep 2014 17:30:56 +0200 Subject: [Munich-pm] Munich online-wohnungs-planner? Message-ID: <20140928153055.GL29721@thpad.site> Hi folks, Es hat jemand einen online tool uns einmal beschrieben, wo man Arbeitsstellen und so-genannten-lieblings-orten-oder-so-was einfügen könnte. Kommt dann wie lang man braucht mit verschiedene hinfahrt Möglichkeiten daraus. Ist das blödsinn, oder kennt jemand wie/wo das zu finden ist...? DIV :) -- Ciao Richard Foley http://www.rfi.net/books.html From tech at tool.de Sun Sep 28 08:31:59 2014 From: tech at tool.de (Andreas Hernitscheck) Date: Sun, 28 Sep 2014 17:31:59 +0200 Subject: [Munich-pm] Munich online-wohnungs-planner? In-Reply-To: <20140928153055.GL29721@thpad.site> References: <20140928153055.GL29721@thpad.site> Message-ID: <542829EF.80706@tool.de> Ja, Robin hat das gemacht. Aber ohne Perl glaube ich. Habe ihn auf BCC gesetzt. Am 28.09.14 17:30, schrieb Richard Foley: > Hi folks, > > Es hat jemand einen online tool uns einmal beschrieben, wo man Arbeitsstellen > und so-genannten-lieblings-orten-oder-so-was einfügen könnte. Kommt dann wie > lang man braucht mit verschiedene hinfahrt Möglichkeiten daraus. Ist das > blödsinn, oder kennt jemand wie/wo das zu finden ist...? > > DIV :) > From robin at robinclarke.net Sun Sep 28 22:44:45 2014 From: robin at robinclarke.net (Robin Clarke) Date: Mon, 29 Sep 2014 07:44:45 +0200 Subject: [Munich-pm] Munich online-wohnungs-planner? In-Reply-To: <20140928153055.GL29721@thpad.site> References: <20140928153055.GL29721@thpad.site> Message-ID: Hi Richard, I did something like that about 3 years ago, resulting in some things like this map which shows the approximate transit time from Hauptbahnhof Muenchen to the surrounding countryside. I wrote WWW::EFA to get the public transport data, and Google::Directions to get the transit time by car (I used this both of these values in another project searching for the best place to live - I've an unpublished library for accessing various immobilien agent web sites too if you're interested). For the map above I generated roughly circular polygons around each station rounding up to the nearest ten minutes of transit time plus walking distance at ~4kmh, then merged all polygons of a given transit time into one or more complex polygons (just looking at the modules used in the project: GIS::Distance, Math::Geometry::Planar, Geo::Calc), generated a KML of the results, and uploaded that to Fusion Tables using Google::Fusion . I haven't looked at that code in ~3 years, so no idea if the modules I wrote still work with current APIs, but you're free to try it out, and if you want to rummage through my unpublished stuff for Immobilien agents or geometry transformations I can send you a git link. Cheers, -Robin- 2014-09-28 17:30 GMT+02:00 Richard Foley : > Hi folks, > > Es hat jemand einen online tool uns einmal beschrieben, wo man > Arbeitsstellen > und so-genannten-lieblings-orten-oder-so-was einfügen könnte. Kommt dann > wie > lang man braucht mit verschiedene hinfahrt Möglichkeiten daraus. Ist das > blödsinn, oder kennt jemand wie/wo das zu finden ist...? > > DIV :) > > -- > Ciao > > Richard Foley > > http://www.rfi.net/books.html > > _______________________________________________ > Munich-pm mailing list http://munich.pm.org/ > Munich-pm at pm.org > http://mail.pm.org/mailman/listinfo/munich-pm > > -- Best winds, -Robin- ~:) -------------- nächster Teil -------------- Ein Dateianhang mit HTML-Daten wurde abgetrennt... URL: From richard.foley at rfi.net Tue Sep 30 00:11:04 2014 From: richard.foley at rfi.net (Richard Foley) Date: Tue, 30 Sep 2014 09:11:04 +0200 Subject: [Munich-pm] Munich online-wohnungs-planner? In-Reply-To: References: <20140928153055.GL29721@thpad.site> Message-ID: <20140930071104.GH12524@thpad.site> Hi Robin, I was looking for an online one-click-reads-my-mind solution. However, should I need to do this myself, I now know where to come as a starting point. Cheers. -- Ciao Richard Foley http://www.rfi.net/books.html On Mon, Sep 29, 2014 at 07:44:45AM +0200, Robin Clarke wrote: > Hi Richard, > > I did something like that about 3 years ago, resulting in some things like this > map which shows the approximate transit time from Hauptbahnhof Muenchen to the > surrounding countryside. > I wrote WWW::EFA to get the public transport data, and Google::Directions to > get the transit time by car (I used this both of these values in another > project searching for the best place to live - I've an unpublished library for > accessing various immobilien agent web sites too if you're interested). > For the map above I generated roughly circular polygons around each station > rounding up to the nearest ten minutes of transit time plus walking distance at > ~4kmh, then merged all polygons of a given transit time into one or more > complex polygons (just looking at the modules used in the project: > GIS::Distance, Math::Geometry::Planar, Geo::Calc), generated a KML of the > results, and uploaded that to Fusion Tables using Google::Fusion. > > I haven't looked at that code in ~3 years, so no idea if the modules I wrote > still work with current APIs, but you're free to try it out, and if you want to > rummage through my unpublished stuff for Immobilien agents or geometry > transformations I can send you a git link. > > Cheers, > -Robin- > > 2014-09-28 17:30 GMT+02:00 Richard Foley : > > Hi folks, > > Es hat jemand einen online tool uns einmal beschrieben, wo man > Arbeitsstellen > und so-genannten-lieblings-orten-oder-so-was einfügen könnte. Kommt dann > wie > lang man braucht mit verschiedene hinfahrt Möglichkeiten daraus. Ist das > blödsinn, oder kennt jemand wie/wo das zu finden ist...? > > DIV :) > > -- > Ciao > > Richard Foley > > http://www.rfi.net/books.html > > _______________________________________________ > Munich-pm mailing list http://munich.pm.org/ > Munich-pm at pm.org > http://mail.pm.org/mailman/listinfo/munich-pm > > > > > > -- > Best winds, > -Robin- > ~:) From robin at robinclarke.net Tue Sep 30 00:18:27 2014 From: robin at robinclarke.net (Robin Clarke) Date: Tue, 30 Sep 2014 09:18:27 +0200 Subject: [Munich-pm] Munich online-wohnungs-planner? In-Reply-To: <20140930071104.GH12524@thpad.site> References: <20140928153055.GL29721@thpad.site> <20140930071104.GH12524@thpad.site> Message-ID: I was hoping for the same when I started, and then got caught into the tunnel of "just one more feature..." development which took me about 6 months of spare time hacking ... was very interesting though exploring into geometric form manipulation and did in the end help us find a great place to live. :) Best winds, -Robin- On 30 September 2014 09:11, Richard Foley wrote: > Hi Robin, > > I was looking for an online one-click-reads-my-mind solution. However, > should I > need to do this myself, I now know where to come as a starting point. > > Cheers. > > -- > Ciao > > Richard Foley > > http://www.rfi.net/books.html > > On Mon, Sep 29, 2014 at 07:44:45AM +0200, Robin Clarke wrote: > > Hi Richard, > > > > I did something like that about 3 years ago, resulting in some things > like this > > map which shows the approximate transit time from Hauptbahnhof Muenchen > to the > > surrounding countryside. > > I wrote WWW::EFA to get the public transport data, and > Google::Directions to > > get the transit time by car (I used this both of these values in another > > project searching for the best place to live - I've an unpublished > library for > > accessing various immobilien agent web sites too if you're interested). > > For the map above I generated roughly circular polygons around each > station > > rounding up to the nearest ten minutes of transit time plus walking > distance at > > ~4kmh, then merged all polygons of a given transit time into one or more > > complex polygons (just looking at the modules used in the project: > > GIS::Distance, Math::Geometry::Planar, Geo::Calc), generated a KML of the > > results, and uploaded that to Fusion Tables using Google::Fusion. > > > > I haven't looked at that code in ~3 years, so no idea if the modules I > wrote > > still work with current APIs, but you're free to try it out, and if you > want to > > rummage through my unpublished stuff for Immobilien agents or geometry > > transformations I can send you a git link. > > > > Cheers, > > -Robin- > > > > 2014-09-28 17:30 GMT+02:00 Richard Foley : > > > > Hi folks, > > > > Es hat jemand einen online tool uns einmal beschrieben, wo man > > Arbeitsstellen > > und so-genannten-lieblings-orten-oder-so-was einfügen könnte. Kommt > dann > > wie > > lang man braucht mit verschiedene hinfahrt Möglichkeiten daraus. Ist > das > > blödsinn, oder kennt jemand wie/wo das zu finden ist...? > > > > DIV :) > > > > -- > > Ciao > > > > Richard Foley > > > > http://www.rfi.net/books.html > > > > _______________________________________________ > > Munich-pm mailing list http://munich.pm.org/ > > Munich-pm at pm.org > > http://mail.pm.org/mailman/listinfo/munich-pm > > > > > > > > > > > > -- > > Best winds, > > -Robin- > > ~:) > > -- Best winds, -Robin- ~:) -------------- nächster Teil -------------- Ein Dateianhang mit HTML-Daten wurde abgetrennt... URL: From richard.foley at rfi.net Tue Sep 30 00:41:32 2014 From: richard.foley at rfi.net (Richard Foley) Date: Tue, 30 Sep 2014 09:41:32 +0200 Subject: [Munich-pm] [philippe.bruhat@free.fr: [pm_groups] Request of sponsorship for the Act fund] Message-ID: <20140930074132.GK12524@thpad.site> ----- Forwarded message from "Philippe Bruhat (BooK)" ----- Date: Tue, 30 Sep 2014 09:07:25 +0200 From: "Philippe Bruhat (BooK)" To: pm_groups at pm.org Subject: [pm_groups] Request of sponsorship for the Act fund User-Agent: Mutt/1.5.21 (2010-09-15) Hello, After sending this to the main Perl organizations and blogging about it, it's probably time for a call targeted at the wider community... Act (A Conference Toolkit) is the conference management tool that has been used to organize more than 175 Perl conferences in the last ten years. Rewritten in 2004, based on the software used to run the YAPC::Europe conference in Paris in 2003, it was open sourced in 2007. Since then, 6 different Act instances have been setup around the world, hosting a grand total of 183 conferences so far. For the last few years, the software has started to show its age: very few new features have been added, and the users and conferences organizers have had to learn to work their way around its limitations. Being the de facto standard for organizing Perl conferences, there have been several attempts to rejuvenate it (the YAPC NA 2012 team forked it to use PSGI, Torsten Raudssus started the YACT project under a TPF Grant, etc.) The latest attempt by Theo van Hoesel, also under a TPF Grant, has managed to round up a lot of goodwill around it, including that of some of the original authors. The French Perl Mongers, who authored 98% of the commits, and are running the biggest Act instance (155 conferences so far), would very much like to push Act in the modern age. In support for the current effort led by Theo van Hoesel (and other future efforts) to improve Act, the French Perl Mongers are setting up an "Act fund" to cover the expenses of Act hackers participating to the improvement of Act. This fund is not meant to pay salaries, or offer grants, but to cover travel and accommodation of hackers involved in the current and future efforts to improve Act. The Act fund will be fully disclosed to the public, on the main Act website, with all income and expenses listed. See for the first few donations, and details about making one. The goal of the fund is to help the people working to improve Act, so that the Perl community can finally have an improved Act to use. Some of it is by getting the keepers of the main database (the French Perl Mongers) more involved with what's happening. Another big part of it is to facilitate communication between the people the more involved in the project. Hackathons have proved their worth, mostly because of the value of face-to-face communication. The next two Act-related events are the upcoming hackathons in Lyon and Oslo, which both will be, in part or full, focused on Act improvements. The purpose of this email is to ask you, as past and future Perl confenrence attendees and organizers (who have benefited from Act in the past and know the value that lies in such software), if you would be willing to participate to the Act fund. Thanks for considering it, Regards, -- Philippe Bruhat (BooK) A wish is only as good as the wisher and what he can achieve. (Moral from Groo The Wanderer #35 (Epic)) -- Request pm.org Technical Support via support at pm.org pm_groups mailing list pm_groups at pm.org http://mail.pm.org/mailman/listinfo/pm_groups ----- End forwarded message ----- -- Ciao Richard Foley http://www.rfi.net/books.html From richard.foley at rfi.net Tue Sep 30 00:45:12 2014 From: richard.foley at rfi.net (Richard Foley) Date: Tue, 30 Sep 2014 09:45:12 +0200 Subject: [Munich-pm] Munich online-wohnungs-planner? In-Reply-To: References: <20140928153055.GL29721@thpad.site> <20140930071104.GH12524@thpad.site> Message-ID: <20140930074512.GL12524@thpad.site> I'm sure this would be a great app. for widespread use. Cc'ing RJ into the thread. (It reminds me a bit of Slaven's Berlin-Bike app.) -- Ciao Richard Foley http://www.rfi.net/books.html On Tue, Sep 30, 2014 at 09:18:27AM +0200, Robin Clarke wrote: > I was hoping for the same when I started, and then got caught into the tunnel > of "just one more feature..." development which took me about 6 months of spare > time hacking ... was very interesting though exploring into geometric form > manipulation and did in the end help us find a great place to live. :) > > Best winds, > -Robin- > > On 30 September 2014 09:11, Richard Foley wrote: > > Hi Robin, > > I was looking for an online one-click-reads-my-mind solution. However, > should I > need to do this myself, I now know where to come as a starting point. > > Cheers. > > -- > Ciao > > Richard Foley > > http://www.rfi.net/books.html > > On Mon, Sep 29, 2014 at 07:44:45AM +0200, Robin Clarke wrote: > > Hi Richard, > > > > I did something like that about 3 years ago, resulting in some things > like this > > map which shows the approximate transit time from Hauptbahnhof Muenchen > to the > > surrounding countryside. > > I wrote WWW::EFA to get the public transport data, and Google::Directions > to > > get the transit time by car (I used this both of these values in another > > project searching for the best place to live - I've an unpublished > library for > > accessing various immobilien agent web sites too if you're interested). > > For the map above I generated roughly circular polygons around each > station > > rounding up to the nearest ten minutes of transit time plus walking > distance at > > ~4kmh, then merged all polygons of a given transit time into one or more > > complex polygons (just looking at the modules used in the project: > > GIS::Distance, Math::Geometry::Planar, Geo::Calc), generated a KML of the > > results, and uploaded that to Fusion Tables using Google::Fusion. > > > > I haven't looked at that code in ~3 years, so no idea if the modules I > wrote > > still work with current APIs, but you're free to try it out, and if you > want to > > rummage through my unpublished stuff for Immobilien agents or geometry > > transformations I can send you a git link. > > > > Cheers, > > -Robin- > > > > 2014-09-28 17:30 GMT+02:00 Richard Foley : > > > >     Hi folks, > > > >     Es hat jemand einen online tool uns einmal beschrieben, wo man > >     Arbeitsstellen > >     und so-genannten-lieblings-orten-oder-so-was einfügen könnte. Kommt > dann > >     wie > >     lang man braucht mit verschiedene hinfahrt Möglichkeiten daraus. Ist > das > >     blödsinn, oder kennt jemand wie/wo das zu finden ist...? > > > >     DIV :) > > > >     -- > >     Ciao > > > >     Richard Foley > > > >     http://www.rfi.net/books.html > > > >     _______________________________________________ > >     Munich-pm mailing list http://munich.pm.org/ > >     Munich-pm at pm.org > >     http://mail.pm.org/mailman/listinfo/munich-pm > > > > > > > > > > > > -- > > Best winds, > > -Robin- > > ~:) > > > > > > -- > Best winds, > -Robin- > ~:) > _______________________________________________ > Munich-pm mailing list http://munich.pm.org/ > Munich-pm at pm.org > http://mail.pm.org/mailman/listinfo/munich-pm