From Gerald.Klix at klix.ch Mon Apr 3 14:45:15 2006 From: Gerald.Klix at klix.ch (Gerald Klix) Date: Mon Apr 3 19:41:46 2006 Subject: [pypy-sprint] Won't attend the Leysin-Sprint Message-ID: <443118DB.7080109@klix.ch> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I will not have the time to attend the Leysin Sprint. I am sorry, but I can not influnence the deadlines in other projects. Best Regards, Gerald - -- GPG-Key: http://keyserver.veridis.com:11371/search?q=0xA140D634 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFEMRjbEDg9cqFA1jQRAm1pAJ0fUqJmX40AjjHVB/ER8UfAwbi/5QCcC1kr nQiojWncyPC2/cJapM4D0Js= =2PZ7 -----END PGP SIGNATURE----- From arigo at tunes.org Tue Apr 18 10:44:30 2006 From: arigo at tunes.org (Armin Rigo) Date: Tue Apr 18 10:44:33 2006 Subject: [pypy-sprint] Upcoming Iceland sprint: 21-28 May Message-ID: <20060418084430.GA29917@code0.codespeak.net> Hi folks, We're pleased to announce the next PyPy sprint in Iceland from 21st (arrival) to 28th (depature) of May 2006. This sprint is kindly hosted and sponsored by EWT and CCPgames and thus we should be able to arrange funding for travels and accomodation for interested people. There are also non-PyPy activities going on -- see the full `EWT announcement`_ and people such as Tim Peters and other python-dev core developers plan to attend. If you'd like to help and join PyPy hacking around some geysers (actually we are meeting in Reykjavik, but well :), please mail us, preferrably on the `pypy-sprint mailing list`_. Please state your interest *until end this week* (friday 21st) to help the organizers plan for the sprint. The sprint goals for PyPy are, as usual, kept open to the interest of the participants, especially more so that there will be many non-PyPy people at the sprint to talk to. However, it is also likely that we will have to keep some focus on the goals of the upcoming June 0.9 release: * The extension module compiler. The goal is to be able to use a single RPython source code as an extension module for both PyPy and CPython. The means to get there is -- most likely -- by compiling ctypes-based modules into either pypy-c or a CPython dll/so. * Write some more modules in this style with ctypes. Sockets come to mind :-) * Stackless: the big missing feature is pickling running tasklets. There is also some smaller work that needs to be done, like exposing all the existing RPython-level interfaces to app-level (e.g. greenlets). * Write more documentation. * Misc topics, depending on interests: back-ends (CLI, Squeak), testing framework, modified semantics (security/sandboxing...), etc. A bientot, Armin + Holger .. _`EWT announcement`: http://mail.python.org/pipermail/python-announce-list/2006-April/004849.html .. _`pypy-sprint mailing list`: http://codespeak.net/mailman/listinfo/pypy-sprint From anto.cuni at gmail.com Tue Apr 18 16:28:35 2006 From: anto.cuni at gmail.com (Antonio Cuni) Date: Tue Apr 18 16:31:33 2006 Subject: [pypy-sprint] Re: [pypy-dev] Upcoming Iceland sprint: 21-28 May In-Reply-To: <20060418084430.GA29917@code0.codespeak.net> References: <20060418084430.GA29917@code0.codespeak.net> Message-ID: <4444F793.9050103@gmail.com> Armin Rigo wrote: > Hi folks, > > We're pleased to announce the next PyPy sprint in Iceland from 21st > (arrival) to 28th (depature) of May 2006. This sprint is kindly hosted > and sponsored by EWT and CCPgames and thus we should be able to arrange > funding for travels and accomodation for interested people. There are > also non-PyPy activities going on -- see the full `EWT announcement`_ > and people such as Tim Peters and other python-dev core developers plan > to attend. If you'd like to help and join PyPy hacking around some > geysers (actually we are meeting in Reykjavik, but well :), please mail > us, preferrably on the `pypy-sprint mailing list`_. Please state your > interest *until end this week* (friday 21st) to help the organizers > plan for the sprint. Hi all, I'd like to take part to the sprint. This would be my first sprint, so I don't know what should I do in order to participate. I've read about funding: as I wrote on #pypy, I'd like to come even without fundings, but after I've seen the prices of flights to Reykjavik I've realized that they are too expensive for me :-). About my interests, as you can guess my main interest is completing the CLI backend ;-), but before that we need to improve ootypesystem, so I might work on that; moreover it would be a great occasion to get acquainted with pypy's parts I've never seen, yet. Last question: I absolutely must be in Italy on sunday 28th: would it be a problem to depart before the end of the sprint? ciao Anto From l.oluyede at gmail.com Fri Apr 21 19:59:48 2006 From: l.oluyede at gmail.com (Lawrence Oluyede) Date: Fri Apr 21 20:00:32 2006 Subject: [pypy-sprint] Upcoming Iceland sprint: 21-28 May In-Reply-To: <20060418084430.GA29917@code0.codespeak.net> References: <20060418084430.GA29917@code0.codespeak.net> Message-ID: <9eebf5740604211059m32235406xbc353e6f2e6ebfdc@mail.gmail.com> On 4/18/06, Armin Rigo wrote: > Hi folks, > > We're pleased to announce the next PyPy sprint in Iceland from 21st > (arrival) to 28th (depature) of May 2006. This sprint is kindly hosted > and sponsored by EWT and CCPgames and thus we should be able to arrange > funding for travels and accomodation for interested people. There are > also non-PyPy activities going on -- see the full `EWT announcement`_ > and people such as Tim Peters and other python-dev core developers plan > to attend. If you'd like to help and join PyPy hacking around some > geysers (actually we are meeting in Reykjavik, but well :), please mail > us, preferrably on the `pypy-sprint mailing list`_. Please state your > interest *until end this week* (friday 21st) to help the organizers > plan for the sprint. > > The sprint goals for PyPy are, as usual, kept open to the interest of > the participants, especially more so that there will be many non-PyPy > people at the sprint to talk to. However, it is also likely that we > will have to keep some focus on the goals of the upcoming June 0.9 > release: > > * The extension module compiler. The goal is to be able to use a single > RPython source code as an extension module for both PyPy and CPython. > The means to get there is -- most likely -- by compiling ctypes-based > modules into either pypy-c or a CPython dll/so. > > * Write some more modules in this style with ctypes. Sockets come to > mind :-) > > * Stackless: the big missing feature is pickling running tasklets. > There is also some smaller work that needs to be done, like exposing > all the existing RPython-level interfaces to app-level > (e.g. greenlets). > > * Write more documentation. > > * Misc topics, depending on interests: back-ends (CLI, Squeak), testing > framework, modified semantics (security/sandboxing...), etc. Like Antonio I'd really like taking part of this sprint. Unlike him I've never contributed to pypy project. I'm a CS student here in Italy. I'd like to bring further the development of extension modules of PyPy (if my friend Valentino doesn't complete the task in Japan :) ) and I find the Antonio's work very interesting. Unfortunately I can't afford the trip so there are any chances about being funded? ciao :) -- Lawrence http://www.oluyede.org/blog From hpk at trillke.net Sat Apr 22 01:01:06 2006 From: hpk at trillke.net (holger krekel) Date: Sat Apr 22 01:07:27 2006 Subject: [pypy-dev] Re: [pypy-sprint] Upcoming Iceland sprint: 21-28 May In-Reply-To: <9eebf5740604211059m32235406xbc353e6f2e6ebfdc@mail.gmail.com> References: <20060418084430.GA29917@code0.codespeak.net> <9eebf5740604211059m32235406xbc353e6f2e6ebfdc@mail.gmail.com> Message-ID: <20060421230106.GA10825@solar.trillke> Hi Lawrence, (just posted to pypy-sprint), On Fri, Apr 21, 2006 at 19:59 +0200, Lawrence Oluyede wrote: > On 4/18/06, Armin Rigo wrote: > > We're pleased to announce the next PyPy sprint in Iceland from 21st > > (arrival) to 28th (depature) of May 2006. This sprint is kindly hosted > > and sponsored by EWT and CCPgames and thus we should be able to arrange > > funding for travels and accomodation for interested people. There are > > also non-PyPy activities going on -- see the full `EWT announcement`_ > > and people such as Tim Peters and other python-dev core developers plan > > to attend. If you'd like to help and join PyPy hacking around some > > geysers (actually we are meeting in Reykjavik, but well :), please mail > > us, preferrably on the `pypy-sprint mailing list`_. Please state your > > interest *until end this week* (friday 21st) to help the organizers > > plan for the sprint. > > ... > Like Antonio I'd really like taking part of this sprint. Unlike him > I've never contributed to pypy project. I'm a CS student here in > Italy. ok, not having much experience with PyPy is a bit of a hindrance for this sprint which has to keep some focus on the release goals and will otherwise probably explore performance questions with the attending cpython developers. This is different from the EuroPython sprint in Geneva beginning July where we will definitely welcome all newcomers and are able to mentor to a much higher degree. Are you interested in coming to that sprint? > I'd like to bring further the development of extension modules of PyPy > (if my friend Valentino doesn't complete the task in Japan :) ) and I > find the Antonio's work very interesting. ok. Do you guess you could get rather quickly into doing things or do you guess that it will take a few days before you get into it? I mean, did you follow recent pypy development a bit, read the documentation or so? > Unfortunately I can't afford the trip so there are any chances about > being funded? there are some chances but it's now rather late in the game to sort this out. In any case, could you very very quickly send me your personal details similar to the ones provided in http://codespeak.net/svn/pypy/extradoc/sprintinfo/iceland/people-travel-planning.txt ? thanks and we keep you informed, holger From l.oluyede at gmail.com Sat Apr 22 10:51:16 2006 From: l.oluyede at gmail.com (Lawrence Oluyede) Date: Sat Apr 22 10:51:54 2006 Subject: [pypy-dev] Re: [pypy-sprint] Upcoming Iceland sprint: 21-28 May In-Reply-To: <20060421230106.GA10825@solar.trillke> References: <20060418084430.GA29917@code0.codespeak.net> <9eebf5740604211059m32235406xbc353e6f2e6ebfdc@mail.gmail.com> <20060421230106.GA10825@solar.trillke> Message-ID: <9eebf5740604220151r54faa162ud28c3ef795929dbf@mail.gmail.com> > ok, not having much experience with PyPy is a bit of a hindrance > for this sprint which has to keep some focus on the release goals > and will otherwise probably explore performance questions with the > attending cpython developers. This is different from the EuroPython > sprint in Geneva beginning July where we will definitely welcome all > newcomers and are able to mentor to a much higher degree. Are > you interested in coming to that sprint? I understand the issues and yes I'll be there in Geneva with Valentino, Antonio and the other guys from Italy :) > ok. Do you guess you could get rather quickly into doing things > or do you guess that it will take a few days before you get into > it? I mean, did you follow recent pypy development a bit, read > the documentation or so? It'll take me a few days to get started. Always followed pypy-dev the best I could. > there are some chances but it's now rather late in the game to > sort this out. In any case, could you very very quickly send > me your personal details similar to the ones provided in > > http://codespeak.net/svn/pypy/extradoc/sprintinfo/iceland/people-travel-planning.txt Done > thanks and we keep you informed, Thanks to you Holger. -- Lawrence http://www.oluyede.org/blog From nicolas.chauvat at logilab.fr Mon May 29 17:35:00 2006 From: nicolas.chauvat at logilab.fr (Nicolas Chauvat) Date: Mon, 29 May 2006 17:35:00 +0200 Subject: [pypy-sprint] pypy sprint at EuroPython 2006 Message-ID: <20060529153500.GD28271@crater.logilab.fr> Hi, http://wiki.python.org/moin/EuroPython2006 says there will be a PyPy Sprint from july 6th to 9th. Is this decided for good. If so, I am offering to update the relevant pages at pypy.org for the list of news and events are asking for a refresh. Any other event/news I should add in the same batch ? -- Nicolas Chauvat logilab.fr - services en informatique avanc?e et gestion de connaissances From cfbolz at gmx.de Tue May 30 01:05:01 2006 From: cfbolz at gmx.de (Carl Friedrich Bolz) Date: Tue, 30 May 2006 01:05:01 +0200 Subject: [pypy-sprint] Duesseldorf Logistics Message-ID: <348899050605291605t12d9a507y77bbd7bd0d919e34@mail.gmail.com> Hi all! Sorry about not being very present these days, I have some personal problems. Just a quick hints about where to meet for the Ddorf sprint on thursday/friday: The sprint will take place in a seminar room of the geography department (which is getting assimilated by the cs department and is below it). I don't know the exact room number, though, will post it tomorrow. It is in the building 25.12 of the university campus. For travel instructions see http://stups.cs.uni-duesseldorf.de/anreise/eindex.php I will be in the room 25.12.02.51 (meaning room 51 on the 2nd floor of building 25.12) on thursday afternoon, so whoever wants to meet up can just come there. Cheers, Carl Friedrich From mwh at python.net Tue May 30 11:56:29 2006 From: mwh at python.net (Michael Hudson) Date: Tue, 30 May 2006 10:56:29 +0100 Subject: [pypy-sprint] pypy sprint at EuroPython 2006 In-Reply-To: <20060529153500.GD28271@crater.logilab.fr> (Nicolas Chauvat's message of "Mon, 29 May 2006 17:35:00 +0200") References: <20060529153500.GD28271@crater.logilab.fr> Message-ID: <2mirnnx2cy.fsf@starship.python.net> Nicolas Chauvat writes: > Hi, > > http://wiki.python.org/moin/EuroPython2006 says there will be a PyPy > Sprint from july 6th to 9th. Is this decided for good. Yes. > If so, I am offering to update the relevant pages at pypy.org for > the list of news and events are asking for a refresh. > > Any other event/news I should add in the same batch ? Don't think so... Cheers, mwh -- The Oxford Bottled Beer Database heartily disapproves of the excessive consumption of alcohol. No, really. -- http://www.bottledbeer.co.uk/beergames.html (now sadly gone to the big 404 in the sky) From mistobaan at gmail.com Fri Jun 30 14:14:23 2006 From: mistobaan at gmail.com (Fabrizio Milo) Date: Fri, 30 Jun 2006 14:14:23 +0200 Subject: [pypy-sprint] Pypy-sprint partecipant Message-ID: Hi folks, I am Fabrizio, a Computer Science Student from Italy that will participate to all the 3 days of pypy-sprint at the europython2006. My interest in the pypy-sprint are: - to meet cool people with high skills - to learn a lot of new things from the best programmers - help the project with my knowledge, skills and time I like a lot to do tests, improving existing code (re-factoring), doing software design, coding in python :) See you there then! Fabrizio P.S. I not have a laptop computer. From p_zieschang at yahoo.de Fri Jun 30 18:37:08 2006 From: p_zieschang at yahoo.de (Pieter Zieschang) Date: Fri, 30 Jun 2006 18:37:08 +0200 (CEST) Subject: [pypy-sprint] I'd like to participate at EP2006 sprint Message-ID: <20060630163708.97404.qmail@web26812.mail.ukl.yahoo.com> Hi, I'd like to participate at the europython 2006 sprint. Can you tell me everything I need to know to do so ? Thanks ___________________________________________________________ Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de From cfbolz at gmx.de Fri Jun 30 18:42:35 2006 From: cfbolz at gmx.de (Carl Friedrich Bolz) Date: Fri, 30 Jun 2006 18:42:35 +0200 Subject: [pypy-sprint] I'd like to participate at EP2006 sprint In-Reply-To: <20060630163708.97404.qmail@web26812.mail.ukl.yahoo.com> References: <20060630163708.97404.qmail@web26812.mail.ukl.yahoo.com> Message-ID: <348899050606300942s6c0fc737o883d2f84a77420c6@mail.gmail.com> Hi! 2006/6/30, Pieter Zieschang : > I'd like to participate at the europython 2006 > sprint. Welcome! > Can you tell me everything I need to know to do so ? It would be helpful if you posted a bit about your interests and whether you already have an idea what to work on during the sprint. Apart from that, showing up of course :-). See you next week, Carl Friedrich