From rabbbit at gmail.com Fri Aug 1 13:32:57 2014 From: rabbbit at gmail.com (=?UTF-8?Q?Pawe=C5=82_Kr=C3=B3likowski?=) Date: Fri, 1 Aug 2014 12:32:57 +0100 Subject: [python-nl] Moving to Amsterdam [to do Python] Message-ID: Hello out there! I hope this list is fine with this kind of adds (London's is), if not, please don't shoot :) So, I'll be moving to Amsterdam in early October. I would like to do Python but I know nothing of the pyAmsterdam universe. I was hoping you could help me track some cool, new, interesting, challenging, amazing, fabulous companies that do Python in Amsterdam. About me - I've been working on back-endy things in a sports betting company, mostly on (xml) data consumption bits. I've recently started playing with some cool things like tornado, celery, rabbitmq, riak, elasticsearch and would be *very* happy to continue doing so. I am also afraid of css and, to some extent, javascript. Thanks a lot, Pawe? p.s. - if you can think of a 'cool' company, but you're not working not working there, I will very happily accept the name/link and then hassle them myself. -------------- next part -------------- An HTML attachment was scrubbed... URL: From stommepoes at stommepoes.nl Fri Aug 1 17:53:45 2014 From: stommepoes at stommepoes.nl (Mallory van Achterberg) Date: Fri, 1 Aug 2014 17:53:45 +0200 Subject: [python-nl] Moving to Amsterdam [to do Python] In-Reply-To: References: Message-ID: <20140801155345.GA16824@jkva-vps.colo.transip.net> On Fri, Aug 01, 2014 at 12:32:57PM +0100, Pawe? Kr?likowski wrote: > Hello out there! > > So, I'll be moving to Amsterdam in early October. I would like to do Python > but I know nothing of the pyAmsterdam universe. I was hoping you could help > me track some cool, new, interesting, challenging, amazing, fabulous > companies that do Python in Amsterdam. If it's possible for you to jump over for a day next week, there's a Python meetup at Byte in Amsterdam where various Pythony people show up and have talks... which incidentally might be a good place to do some networking and learning about what's in Amsterdam before you actually move here. http://www.meetup.com/Amsterdam-Python-Meetup-Group/events/181668162/ cheers, Mallory From a.esselink at gmail.com Tue Aug 5 15:32:59 2014 From: a.esselink at gmail.com (Dexter) Date: Tue, 5 Aug 2014 15:32:59 +0200 Subject: [python-nl] Help tool for websites Message-ID: Hi, I don't remember where I saw/read the thing I'm looking for. But I can vaguely recall it being on a Python meetup. I'm looking for a explanation tool for a webapplication, which can highlight important components, and show a help text there. I hope you can help me :). Greetings, Dexter -------------- next part -------------- An HTML attachment was scrubbed... URL: From rabbbit at gmail.com Wed Aug 6 21:25:26 2014 From: rabbbit at gmail.com (=?UTF-8?Q?Pawe=C5=82_Kr=C3=B3likowski?=) Date: Wed, 6 Aug 2014 20:25:26 +0100 Subject: [python-nl] Moving to Amsterdam [to do Python] In-Reply-To: <20140801155345.GA16824@jkva-vps.colo.transip.net> References: <20140801155345.GA16824@jkva-vps.colo.transip.net> Message-ID: I answered Mallory's email directly earlier, but since the idea seems to be coming up pretty often - yes, I'm aware of the meetup (and I've been browsing through profiles for a while now :)), but I cannot attend anything in Amsterdam before October. I fully intend to be at every meetup since then though :) Also, I wanted to say - thanks for all the help python-nl. I've received a number of links/suggestions/messages, it made me feel welcome + and might even find a job through you : Thanks. On 1 August 2014 16:53, Mallory van Achterberg wrote: > On Fri, Aug 01, 2014 at 12:32:57PM +0100, Pawe? Kr?likowski wrote: > > Hello out there! > > > > So, I'll be moving to Amsterdam in early October. I would like to do > Python > > but I know nothing of the pyAmsterdam universe. I was hoping you could > help > > me track some cool, new, interesting, challenging, amazing, fabulous > > companies that do Python in Amsterdam. > > If it's possible for you to jump over for a day next week, there's > a Python meetup at Byte in Amsterdam where various Pythony people > show up and have talks... which incidentally might be a good place > to do some networking and learning about what's in Amsterdam before > you actually move here. > > http://www.meetup.com/Amsterdam-Python-Meetup-Group/events/181668162/ > > cheers, > Mallory > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > https://mail.python.org/mailman/listinfo/python-nl > -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcs at ziggo.nl Tue Aug 12 18:08:34 2014 From: marcs at ziggo.nl (Marc Stevens) Date: Tue, 12 Aug 2014 18:08:34 +0200 (CEST) Subject: [python-nl] afsluiten programma Message-ID: <1155530786.129936.1407859714907.open-xchange@oxbe6.tb.mail.iss.local> Hoi met marc, Om maar meteen met de deur in huis te vallen: ik ben een beetje Pietje Precies. Ik heb allelei experimentele programma's gescheven en ben nog lerende. ik probeer van allerlij voorbeelden te leren. Maar er is een ding dat bij mij nooit mooi werkt, en dat is het afsluiten van een lopend programma. ik heb nog nooit een programma in gezien waar het afsluiten van het programma fatsoenlijk werkt. Vandaar Pietje Precies. Ik had tot op heden nog hoop omdat ik me nog iets kon herinnneren van een programma dat werkte met 'keys'. Het programma zou moeten reageren op invoer vanaf het toetsenbord. Dat doet hij ook, hij reageerd op de cursor toetsen en verplaatst een sprite over het scherm. Alleen zou hij moeten afsluiten bij het drukken op de escape-toets. Maar helaas dat werkt dus ook niet. Hieronder het voorbeeld, misschien dat je het kunt corrigeren of iets toevoegen. Bijvoorbaatdank, Marc Stevens. import pygame from sys import exit pygame.init() size=[800,600] screen=pygame.display.set_mode(size) while 1: for event in pygame.event.get(): if event.key==k_ESCAPE: keys = pygame.key.get_pressed() pygame.display.flip() pygame.quit() From j.bakker at atmind.nl Tue Aug 12 18:53:52 2014 From: j.bakker at atmind.nl (Jeroen Bakker) Date: Tue, 12 Aug 2014 18:53:52 +0200 Subject: [python-nl] afsluiten programma In-Reply-To: <1155530786.129936.1407859714907.open-xchange@oxbe6.tb.mail.iss.local> References: <1155530786.129936.1407859714907.open-xchange@oxbe6.tb.mail.iss.local> Message-ID: <53EA46A0.4080402@atmind.nl> Hey Marc, Ik ben geen pygame expert, Een standaard event based programma heeft de volgende structuur: .. setup program .. still_running = True while still_running: for event: if event = esc: still_running = False .. break down program .. Groeten, Jeroen Bakker - At Mind - On 08/12/2014 06:08 PM, Marc Stevens wrote: > Hoi met marc, > > Om maar meteen met de deur in huis te vallen: ik ben een beetje Pietje Precies. > Ik heb allelei experimentele programma's gescheven en ben nog lerende. > ik probeer van allerlij voorbeelden te leren. Maar er is een ding dat bij mij > nooit mooi werkt, > en dat is het afsluiten van een lopend programma. ik heb nog nooit een programma > in gezien waar het afsluiten van het programma fatsoenlijk werkt. Vandaar Pietje > Precies. > Ik had tot op heden nog hoop omdat ik me nog iets kon herinnneren van een > programma dat werkte met 'keys'. Het programma zou moeten reageren op invoer > vanaf het toetsenbord. > Dat doet hij ook, hij reageerd op de cursor toetsen en verplaatst een sprite > over het scherm. > Alleen zou hij moeten afsluiten bij het drukken op de escape-toets. Maar helaas > dat werkt dus ook niet. > > Hieronder het voorbeeld, misschien dat je het kunt corrigeren of iets toevoegen. > Bijvoorbaatdank, > > Marc Stevens. > > > import pygame > from sys import exit > > pygame.init() > size=[800,600] > screen=pygame.display.set_mode(size) > while 1: > for event in pygame.event.get(): > if event.key==k_ESCAPE: > keys = pygame.key.get_pressed() > pygame.display.flip() > pygame.quit() > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > https://mail.python.org/mailman/listinfo/python-nl > From rob at hooft.net Tue Aug 12 19:03:38 2014 From: rob at hooft.net (Rob Hooft) Date: Tue, 12 Aug 2014 19:03:38 +0200 Subject: [python-nl] afsluiten programma In-Reply-To: <1155530786.129936.1407859714907.open-xchange@oxbe6.tb.mail.iss.local> References: <1155530786.129936.1407859714907.open-xchange@oxbe6.tb.mail.iss.local> Message-ID: Marc, Je schrijft dat het programma moet termineren op een escape, maar ik zie daarvoor geen code. De while loop wordt nooit afgebroken. Ik ken pygame niet, maar het lijkt me genoeg om de pygame.quit() call binnen het If-statement te zetten, of als netter alternatief daar een "break" toe te voegen. Rob On Tuesday, August 12, 2014, Marc Stevens wrote: > Hoi met marc, > > Om maar meteen met de deur in huis te vallen: ik ben een beetje Pietje > Precies. > Ik heb allelei experimentele programma's gescheven en ben nog lerende. > ik probeer van allerlij voorbeelden te leren. Maar er is een ding dat bij > mij > nooit mooi werkt, > en dat is het afsluiten van een lopend programma. ik heb nog nooit een > programma > in gezien waar het afsluiten van het programma fatsoenlijk werkt. Vandaar > Pietje > Precies. > Ik had tot op heden nog hoop omdat ik me nog iets kon herinnneren van een > programma dat werkte met 'keys'. Het programma zou moeten reageren op > invoer > vanaf het toetsenbord. > Dat doet hij ook, hij reageerd op de cursor toetsen en verplaatst een > sprite > over het scherm. > Alleen zou hij moeten afsluiten bij het drukken op de escape-toets. Maar > helaas > dat werkt dus ook niet. > > Hieronder het voorbeeld, misschien dat je het kunt corrigeren of iets > toevoegen. > Bijvoorbaatdank, > > Marc Stevens. > > > import pygame > from sys import exit > > pygame.init() > size=[800,600] > screen=pygame.display.set_mode(size) > while 1: > for event in pygame.event.get(): > if event.key==k_ESCAPE: > keys = pygame.key.get_pressed() > pygame.display.flip() > pygame.quit() > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > https://mail.python.org/mailman/listinfo/python-nl > -- Rob W. W. Hooft || rob at hooft.net || http://hooft.net/rob || @rwwh -------------- next part -------------- An HTML attachment was scrubbed... URL: From brian at python.org Thu Aug 14 04:58:16 2014 From: brian at python.org (Brian Curtin) Date: Thu, 14 Aug 2014 02:58:16 -0000 Subject: [python-nl] PyCon 2015 Call for Proposals is open! Message-ID: Hi Dutch Python Users Group! The PyCon organizers invite you to submit proposals for talks, tutorials, and posters to be presented at PyCon 2015 - https://us.pycon.org/2015/. The conference takes place April 8-16 in Montreal, Queubec, Canada and we'll be accepting talk and tutorial proposals through September 15, with posters accepted through November 1! We want everyone to be a part of making PyCon what it is, which is why we invite everyone to submit proposals, and we invite everyone to be a part of the program committee. It's your PyCon, not mine. Whether you started with Python yesterday or you've been writing it since the 90s, everyone has different experiences, different knowledge, and a different story to tell. This is why we aim to strike a balance between beginner, intermediate, and advanced talks. We want the entire community to level up as a result of PyCon. Over the years, we've put together proposal resources and advice to help answer some common topics surrounding our CFP (https://us.pycon.org/2015/speaking/proposal-resources/). We even put together a sample proposal and reviewed it for you at https://us.pycon.org/2015/speaking/proposal_advice/samples/SpacePug/. If you have any questions or tips that may help others, please email them to pycon-pc at python.org, or feel free to respond and I'll help you out. The full details of our Call for Proposals are available at https://us.pycon.org/2015/speaking/cfp/. Keep an eye on that page as well as https://twitter.com/pycon and http://pycon.blogspot.com/ for details about ticket sales, financial aid, and more PyCon news! Thanks for your time! Brian Curtin, brian at python.org Publicity Coordinator, PyCon 2015 From reinout at vanrees.org Mon Aug 18 10:52:53 2014 From: reinout at vanrees.org (Reinout van Rees) Date: Mon, 18 Aug 2014 10:52:53 +0200 Subject: [python-nl] Help tool for websites In-Reply-To: References: Message-ID: On 05-08-14 15:32, Dexter wrote: > I don't remember where I saw/read the thing I'm looking for. But I can > vaguely recall it being on a Python meetup. > > I'm looking for a explanation tool for a webapplication, which can > highlight important components, and show a help text there. Normally this is all done in javascript. Here's an example: http://bootstraptour.com/ Reinout -- Reinout van Rees http://reinout.vanrees.org/ reinout at vanrees.org http://www.nelen-schuurmans.nl/ "Learning history by destroying artifacts is a time-honored atrocity" From nicolaas at l1nda.nl Mon Aug 18 11:10:19 2014 From: nicolaas at l1nda.nl (Nicolaas Heyning | L1NDA.nl) Date: Mon, 18 Aug 2014 11:10:19 +0200 Subject: [python-nl] Avontuurlijke Django programmeur gezocht Message-ID: Beste Django-helden en Pythonistas, Een vriend van mij, Wouter Dijkstra, zoekt een goede django programmeur voor een avontuurlijke klus in Tanzania. Zie onderstaand bericht. Ik hoop dat iemand hem kan helpen. Groeten, Nicolaas Ik zoek dus iemand voor een klus, geen full-time baan. Maar gaat zeker 3 tot 4 weken werk in zitten (en wat nazorg). Inclusief een 7-10 daagse trip naar Tanzania om daar met ondere ontwikkelaars te werken aan een interactief platform. Een soort nieuwe versie van TRAC FM www.tracfm.org. Betaald en inclusief safari! Maar we hebben wel een goed iemand nodig die mee kan denken aan het design en daarbij ook de huidige code onder de knie kan krijgen. Mijn email adres is wdijkstra at tracfm.org , telefoon nummer 0633714515. Ik zoek iemand die al eind september mee kan naar Tanzania! TRAC.fm www.tracfm.org -- *L1NDA B.V.* * www.l1nda.nl * * www.facebook.com/L1NDA.NL * Nieuwezijds Voorburgwal 101-III 1012 RG, Amsterdam 020-7526690 KvK: 57861765 -------------- next part -------------- An HTML attachment was scrubbed... URL: From reinout at vanrees.org Mon Aug 18 10:49:39 2014 From: reinout at vanrees.org (Reinout van Rees) Date: Mon, 18 Aug 2014 10:49:39 +0200 Subject: [python-nl] Speech at EuroPython 2014 Berlin In-Reply-To: References: Message-ID: <53F1BE23.3000800@vanrees.org> On 26-07-14 18:51, Remco Wendt wrote: > > You see, the thing is we are not mere developers, but engineers building > and thus defining our future society. By doing so we have great power > and with that great responsibility. Leuke speech! Deze quote deed me denken aan een quote uit de laatste keynote van de EU djangocon: "Programmers are now building the world. Anyone in the world will live in the world we build. The systems that govern us. The systems that govern our relations. The way we are educated. The way we are formed. Programmers are quite important." http://reinout.vanrees.org/weblog/2014/05/15/programmer-body.html Reinout -- Reinout van Rees http://reinout.vanrees.org/ reinout at vanrees.org http://www.nelen-schuurmans.nl/ "Learning history by destroying artifacts is a time-honored atrocity" From a.esselink at gmail.com Mon Aug 18 13:50:38 2014 From: a.esselink at gmail.com (Dexter) Date: Mon, 18 Aug 2014 13:50:38 +0200 Subject: [python-nl] Help tool for websites In-Reply-To: References: Message-ID: Ah, thanks.. I was looking for something like this.. On Mon, Aug 18, 2014 at 10:52 AM, Reinout van Rees wrote: > On 05-08-14 15:32, Dexter wrote: > >> I don't remember where I saw/read the thing I'm looking for. But I can >> vaguely recall it being on a Python meetup. >> >> I'm looking for a explanation tool for a webapplication, which can >> highlight important components, and show a help text there. >> > > Normally this is all done in javascript. Here's an example: > http://bootstraptour.com/ > > > > Reinout > > -- > Reinout van Rees http://reinout.vanrees.org/ > reinout at vanrees.org http://www.nelen-schuurmans.nl/ > "Learning history by destroying artifacts is a time-honored atrocity" > > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > https://mail.python.org/mailman/listinfo/python-nl > -------------- next part -------------- An HTML attachment was scrubbed... URL: From remco.wendt at gmail.com Tue Aug 19 15:03:46 2014 From: remco.wendt at gmail.com (Remco Wendt) Date: Tue, 19 Aug 2014 15:03:46 +0200 Subject: [python-nl] Speech at EuroPython 2014 Berlin In-Reply-To: <53F1BE23.3000800@vanrees.org> References: <53F1BE23.3000800@vanrees.org> Message-ID: Wow die is even next level! Thanks voor de tip ? Remco Wendt about.me/remco.wendt ? On 18 Aug 2014 at 13:20:32, Reinout van Rees (reinout at vanrees.org) wrote: On 26-07-14 18:51, Remco Wendt wrote: > > You see, the thing is we are not mere developers, but engineers building > and thus defining our future society. By doing so we have great power > and with that great responsibility. Leuke speech! Deze quote deed me denken aan een quote uit de laatste keynote van de EU djangocon: "Programmers are now building the world. Anyone in the world will live in the world we build. The systems that govern us. The systems that govern our relations. The way we are educated. The way we are formed. Programmers are quite important." http://reinout.vanrees.org/weblog/2014/05/15/programmer-body.html Reinout -- Reinout van Rees http://reinout.vanrees.org/ reinout at vanrees.org http://www.nelen-schuurmans.nl/ "Learning history by destroying artifacts is a time-honored atrocity" _______________________________________________ Python-nl mailing list Python-nl at python.org https://mail.python.org/mailman/listinfo/python-nl -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 718 bytes Desc: Message signed with OpenPGP using AMPGpg URL: From folkje at byte.nl Wed Aug 20 13:13:16 2014 From: folkje at byte.nl (Folkje) Date: Wed, 20 Aug 2014 13:13:16 +0200 Subject: [python-nl] Python Meetup Octobre 22nd Message-ID: <53F482CC.8030209@byte.nl> Hi all, The Amsterdam Python Meetup Group is doing a Python Meetup on Octobre 22nd. It would be nice if you would join us! http://www.meetup.com/Amsterdam-Python-Meetup-Group/events/202046722/ If there's also still a Python-Perl thing going on somewhere we'd be happy to join too. There can never be enough Python Meetups :) Hope to see you all soon, -- *Folkje Lips* Teamco?rdinator Techniek W http://www.byte.nl E folkje at byte.nl De Ruyterkade 139 1011 AC Amsterdam T +31 (0) 20 5216 226 F +31 (0) 20 5216 227 FAQ: veelgestelde vragen staan op http://www.byte.nl/wiki ------------- volgend deel ------------ Een HTML-bijlage is gescrubt... URL: From stephan at preeker.net Wed Aug 20 13:29:41 2014 From: stephan at preeker.net (Stephan Preeker) Date: Wed, 20 Aug 2014 13:29:41 +0200 Subject: [python-nl] Avontuurlijke Django programmeur gezocht In-Reply-To: References: Message-ID: Hey Nicolaas! Ik vroeg me af hoe het nu met je gaat? En waar je nu werkzaam bent, De laatste keer dat ik Wouter Suren sprak zou je in Berlijn gaan uitbreiden. groetjes, Stephan. 2014-08-18 11:10 GMT+02:00 Nicolaas Heyning | L1NDA.nl : > Beste Django-helden en Pythonistas, > > Een vriend van mij, Wouter Dijkstra, zoekt een goede django programmeur > voor een avontuurlijke klus in Tanzania. Zie onderstaand bericht. Ik hoop > dat iemand hem kan helpen. > > Groeten, > Nicolaas > > > Ik zoek dus iemand voor een klus, geen full-time baan. Maar gaat zeker 3 > tot 4 weken werk in zitten (en wat nazorg). Inclusief een 7-10 daagse trip > naar Tanzania om daar met ondere ontwikkelaars te werken aan een > interactief platform. Een soort nieuwe versie van TRAC FM www.tracfm.org. > Betaald en inclusief safari! Maar we hebben wel een goed iemand nodig die > mee kan denken aan het design en daarbij ook de huidige code onder de knie > kan krijgen. Mijn email adres is wdijkstra at tracfm.org , telefoon nummer > 0633714515. > Ik zoek iemand die al eind september mee kan naar Tanzania! > TRAC.fm > www.tracfm.org > > -- > *L1NDA B.V.* > * www.l1nda.nl * > > * www.facebook.com/L1NDA.NL > * Nieuwezijds Voorburgwal 101-III > 1012 RG, Amsterdam > 020-7526690 > KvK: 57861765 > > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > https://mail.python.org/mailman/listinfo/python-nl > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From otten.johan at gmail.com Wed Aug 20 13:31:54 2014 From: otten.johan at gmail.com (Johan Otten) Date: Wed, 20 Aug 2014 13:31:54 +0200 Subject: [python-nl] Avontuurlijke Django programmeur gezocht In-Reply-To: References: Message-ID: Ah die reply all button is verradelijk On Aug 20, 2014 1:30 PM, "Stephan Preeker" wrote: > Hey Nicolaas! > > Ik vroeg me af hoe het nu met je gaat? En waar je nu werkzaam bent, De > laatste keer dat ik Wouter Suren sprak zou je in Berlijn gaan uitbreiden. > > groetjes, > > Stephan. > > > 2014-08-18 11:10 GMT+02:00 Nicolaas Heyning | L1NDA.nl > : > >> Beste Django-helden en Pythonistas, >> >> Een vriend van mij, Wouter Dijkstra, zoekt een goede django programmeur >> voor een avontuurlijke klus in Tanzania. Zie onderstaand bericht. Ik hoop >> dat iemand hem kan helpen. >> >> Groeten, >> Nicolaas >> >> >> Ik zoek dus iemand voor een klus, geen full-time baan. Maar gaat zeker 3 >> tot 4 weken werk in zitten (en wat nazorg). Inclusief een 7-10 daagse trip >> naar Tanzania om daar met ondere ontwikkelaars te werken aan een >> interactief platform. Een soort nieuwe versie van TRAC FM www.tracfm.org. >> Betaald en inclusief safari! Maar we hebben wel een goed iemand nodig die >> mee kan denken aan het design en daarbij ook de huidige code onder de knie >> kan krijgen. Mijn email adres is wdijkstra at tracfm.org , telefoon nummer >> 0633714515. >> Ik zoek iemand die al eind september mee kan naar Tanzania! >> TRAC.fm >> www.tracfm.org >> >> -- >> *L1NDA B.V.* >> * www.l1nda.nl * >> >> * www.facebook.com/L1NDA.NL >> * Nieuwezijds Voorburgwal 101-III >> 1012 RG, Amsterdam >> 020-7526690 >> KvK: 57861765 >> >> _______________________________________________ >> Python-nl mailing list >> Python-nl at python.org >> https://mail.python.org/mailman/listinfo/python-nl >> >> > > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > https://mail.python.org/mailman/listinfo/python-nl > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From eromijn at solidlinks.nl Tue Aug 26 14:38:20 2014 From: eromijn at solidlinks.nl (Erik Romijn) Date: Tue, 26 Aug 2014 14:38:20 +0200 Subject: [python-nl] Django Under the Hood Message-ID: Hello all, A new Django conference is coming to The Netherlands! Django: Under the Hood is a one day conference to be held on the 14th of November 2014 in Amsterdam. There will be six highly technical talks covering a range of django related topics. Our target audience are experienced Django developers wishing to gain greater understanding of how and why Django does what it does, and to help shape future work. In particular, we hope to bring many of the core team together for the event, spreading knowledge within the team and allowing easier review and contribution processes for the community. There will be around 120 attendees. The conference will be followed by a sprint day on the Saturday. More information: http://www.djangounderthehood.com/ I'm one of the organisers, and I'm sending this to the list as a heads up of what's coming, and because we are still looking for sponsors. If you're interested in contributing, see our sponsorship brochure on http://erik.io/j/djangounderhood.pdf and get in touch on . We're also open to other sponsorship ideas. Ticket sales will open in the next few weeks, and are expected to sell fairly quickly. As a sponsor though, you can reserve a number of tickets in advance :) Please let us know if you have any questions, we'd love to help you. Have a great day, Erik Romijn From marcs at ziggo.nl Wed Aug 27 19:49:01 2014 From: marcs at ziggo.nl (Marc Stevens) Date: Wed, 27 Aug 2014 19:49:01 +0200 (CEST) Subject: [python-nl] Afbreken pygame vanaf toetsenbord Message-ID: <389296597.524848.1409161743494.open-xchange@oxbe3.tb.mail.iss.local> Aan de specialisten onder python, Ik probeer al een tijdje pygame's programma's netjes af te werken door een mogelijkheid in te bouwen om het programma af te sluiten op een professionele manier. Ik heb ook veel programma's bekeken en het afsluiten hiervan afgekeken, maar het pygame programma moest altijd 'geforceerd' afgesloten worden, tot op het moment dat ik een programma probeerde dat geschreven was voor een spel en met de cursor toetsen werkte. En warempel..... het programma reageerde op het toesenbord. Je kon met de cursortoetsen een sprite bewegen. Ik heb toen het een en ander afgekeken en het het onderstaande programmaatje bedacht, om eenvoudig te beginnen. Helaas werkt het niet. Wat doe ik fout? import pygame from pygame.locals import * from sys import exit pygame.init() size=[400,300] screen=pygame.display.set_mode(size) while 1: for event in pygame.event.get(): if event.type==QUIT: return pygame.draw.circle(screen,(255,0,0),[60,250],40) pygame.display.flip() keys=pygame.key.get_pressed() if key[K_ESCAPE]: break pygame.quit() From j.bakker at atmind.nl Wed Aug 27 21:58:25 2014 From: j.bakker at atmind.nl (Jeroen Bakker) Date: Wed, 27 Aug 2014 21:58:25 +0200 Subject: [python-nl] Afbreken pygame vanaf toetsenbord In-Reply-To: <389296597.524848.1409161743494.open-xchange@oxbe3.tb.mail.iss.local> References: <389296597.524848.1409161743494.open-xchange@oxbe3.tb.mail.iss.local> Message-ID: <53FE3861.7070805@atmind.nl> Hey Marc, Je identation is niet goed overgekomen om precies te zien hoe je code eruit ziet. Het is beter om websites zoals pasteall.org te gebruiken om sources te plakken. Dan weet je zeker dat de identation er goed uit ziet. Ik neem aan dat de fout "SyntaxError: 'return' outside function" is de "return" staat op een vreemde plek. Return zorgt dat je de huidige functie afbreekt. Aangezien je programma geen functie kent, is dat een beetje gek. best om een vlag toe te voegen (running). Ook heb je een type fout Je kent een variable toe aan "keys", maar vraag deze dan op aan "key". Zie hier de aangepaste code: http://www.pasteall.org/53683/python Groeten, Jeroen On 08/27/2014 07:49 PM, Marc Stevens wrote: > Aan de specialisten onder python, > > Ik probeer al een tijdje pygame's programma's netjes af te werken door een > mogelijkheid in te bouwen om het programma af te sluiten op een professionele > manier. > Ik heb ook veel programma's bekeken en het afsluiten hiervan afgekeken, maar het > pygame programma moest altijd 'geforceerd' afgesloten worden, tot op het moment > dat ik een programma probeerde dat geschreven was voor een spel en met de cursor > toetsen werkte. En warempel..... het programma reageerde op het toesenbord. Je > kon met de cursortoetsen een sprite bewegen. > Ik heb toen het een en ander afgekeken en het het onderstaande programmaatje > bedacht, om eenvoudig te beginnen. Helaas werkt het niet. Wat doe ik fout? > > > > > import pygame > from pygame.locals import * > from sys import exit > > pygame.init() > size=[400,300] > screen=pygame.display.set_mode(size) > > while 1: > for event in pygame.event.get(): > if event.type==QUIT: > return > pygame.draw.circle(screen,(255,0,0),[60,250],40) > pygame.display.flip() > keys=pygame.key.get_pressed() > if key[K_ESCAPE]: > break > > pygame.quit() > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > https://mail.python.org/mailman/listinfo/python-nl > From jmh31415 at gmail.com Wed Aug 27 21:04:20 2014 From: jmh31415 at gmail.com (JMH) Date: Wed, 27 Aug 2014 21:04:20 +0200 Subject: [python-nl] Afbreken pygame vanaf toetsenbord In-Reply-To: <389296597.524848.1409161743494.open-xchange@oxbe3.tb.mail.iss.local> References: <389296597.524848.1409161743494.open-xchange@oxbe3.tb.mail.iss.local> Message-ID: <98F023A1-97BA-41F4-9BE2-CA114854A5BC@gmail.com> QUIT event komt van Windows als je op de Close button klikt. Misschien dat de event.pump function nog toegevoegd moet worden. Voor quit mbv ESC key, gebruik keys.get_pressed() en check the logical van de ESC key. Met vriendelijke groeten, Jacco Hoekstra > On 27 aug. 2014, at 19:49, Marc Stevens wrote: > > Aan de specialisten onder python, > > Ik probeer al een tijdje pygame's programma's netjes af te werken door een > mogelijkheid in te bouwen om het programma af te sluiten op een professionele > manier. > Ik heb ook veel programma's bekeken en het afsluiten hiervan afgekeken, maar het > pygame programma moest altijd 'geforceerd' afgesloten worden, tot op het moment > dat ik een programma probeerde dat geschreven was voor een spel en met de cursor > toetsen werkte. En warempel..... het programma reageerde op het toesenbord. Je > kon met de cursortoetsen een sprite bewegen. > Ik heb toen het een en ander afgekeken en het het onderstaande programmaatje > bedacht, om eenvoudig te beginnen. Helaas werkt het niet. Wat doe ik fout? > > > > > import pygame > from pygame.locals import * > from sys import exit > > pygame.init() > size=[400,300] > screen=pygame.display.set_mode(size) > > while 1: > for event in pygame.event.get(): > if event.type==QUIT: > return > pygame.draw.circle(screen,(255,0,0),[60,250],40) > pygame.display.flip() > keys=pygame.key.get_pressed() > if key[K_ESCAPE]: > break > > pygame.quit() > _______________________________________________ > Python-nl mailing list > Python-nl at python.org > https://mail.python.org/mailman/listinfo/python-nl From reinout at vanrees.org Sun Aug 31 04:19:03 2014 From: reinout at vanrees.org (Reinout van Rees) Date: Sun, 31 Aug 2014 04:19:03 +0200 Subject: [python-nl] Python Meetup Octobre 22nd In-Reply-To: <53F482CC.8030209@byte.nl> References: <53F482CC.8030209@byte.nl> Message-ID: On 20-08-14 13:13, Folkje wrote: > The Amsterdam Python Meetup Group is doing a Python Meetup on Octobre > 22nd. It would be nice if you would join us! > http://www.meetup.com/Amsterdam-Python-Meetup-Group/events/202046722/ > > If there's also still a Python-Perl thing going on somewhere we'd be > happy to join too. There can never be enough Python Meetups :) Not entirely sure about that last comment. There *can* be too much fragmentation so that it isn't clear anymore when/where there are python meetings. There ought to be a PUN python meeting more or less every three months. Is this Amsterdam meeting intended to be the PUN-in-Amsterdam meeting? The one someone said he'd organize somewhere in sept/okt? I'm asking as there was a possibility that the PUN one would be organized in december instead of sept/okt... So I need to know if I need to poke someone else to organize a meeting. (I'm making a bit of a point about it as I don't want to default to Amsterdam as the default meeting location for the 10-year-old PUN meetings just because someone decided to start a python group in Amsterdam a few months ago :-) ) Meetup.com makes it too easy to start new groups IMHO :-) Reinout -- Reinout van Rees http://reinout.vanrees.org/ reinout at vanrees.org http://www.nelen-schuurmans.nl/ "Learning history by destroying artifacts is a time-honored atrocity"