From malvina.koretsky at mentaura.com.au Mon Mar 1 07:42:45 2010 From: malvina.koretsky at mentaura.com.au (Malvina Koretsky) Date: Mon, 1 Mar 2010 17:42:45 +1100 Subject: [melbourne-pug] full time job in Melbourne CBD for Python Developer, junior - mid level Message-ID: <4C6B9F265085F647A5214A9586C9ED4F0174110F@rsa.Mentaura.local> Dear members, I am currently recruiting for a Web Applications Developer with solid Python experience to join dynamic and growing service provider with an excellent reputation and international presence. You will become a member of a friendly, dynamic and competent team of developers and will get exposure to various Web Development Tools and Open Source technologies. If you are interested please call me on 9863 9600 for further discussions or send me your resume. Any referrals will be highly regarded. Kind regards, Malvina Malvina Koretsky | Senior Consultant Mentaura Recruitment Australia Level 2, 1 Queens Road Melbourne Victoria 3004 Australia t: + 61 3 9863 9600 m: 0403 578 298 i: www.mentaura.com.au The information in this e-mail is confidential and may be protected by legal professional privilege. The contents (including attachments) may also be subject to Copyright. It is intended solely for the addressee and access to this e-mail by anyone else is unauthorised. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. If you have received this message in error, please notify us immediately. Please also destroy and delete the message from your computer. ________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From r1chardj0n3s at gmail.com Tue Mar 2 00:00:13 2010 From: r1chardj0n3s at gmail.com (Richard Jones) Date: Tue, 2 Mar 2010 10:00:13 +1100 Subject: [melbourne-pug] Last night, next meeting Message-ID: <249b6faa1003011500o140effa1r4a7b1d286f94b260@mail.gmail.com> Thanks everyone for coming along last night for some fun discussions about Python 3 transitions, translation parties, PyWeek, PyCon Au (and other conferences) and all the other random stuff we talked about :) The next meeting will be on the *12th* of April, to account for the 5th being a public holiday. Tennessee has promised to talk about doing some stupid things with import :) Richard From miked at dewhirst.com.au Wed Mar 3 06:09:03 2010 From: miked at dewhirst.com.au (Mike Dewhirst) Date: Wed, 03 Mar 2010 16:09:03 +1100 Subject: [melbourne-pug] os.walk into a skip Message-ID: <4B8DEEEF.4050101@dewhirst.com.au> Hi all Can someone tell me how to skip some arbitrary directories in os.walk()? for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): # do stuff stuff = test file access times in a fairly deep and widespread directory tree and relocate files to another root if they fit a preset age pattern. I now want to interfere with os.walk - I thought by recognising a flag file in any directory eg., skipthis.dir, and doing this ... for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): if 'skipthis.dir' in filenames: continue # do stuff ... but that doesn't work. I'm missing something. I'll plug away for a bit but if anyone has any ideas I'd be very appreciative. Thanks Mike From tobias.sargeant at gmail.com Wed Mar 3 06:18:59 2010 From: tobias.sargeant at gmail.com (Tobias Sargeant) Date: Wed, 3 Mar 2010 16:18:59 +1100 Subject: [melbourne-pug] os.walk into a skip In-Reply-To: <4B8DEEEF.4050101@dewhirst.com.au> References: <4B8DEEEF.4050101@dewhirst.com.au> Message-ID: <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> On 03/03/2010, at 4:09 PM, Mike Dewhirst wrote: > Hi all > > Can someone tell me how to skip some arbitrary directories in > os.walk()? from the os.walk() docstring: When topdown is true, the caller can modify the dirnames list in- place (e.g., via del or slice assignment), and walk will only recurse into the subdirectories whose names remain in dirnames; this can be used to prune the search, or to impose a specific order of visiting. Modifying dirnames when topdown is false is ineffective, since the directories in dirnames have already been generated by the time dirnames itself is generated. From miked at dewhirst.com.au Wed Mar 3 06:40:19 2010 From: miked at dewhirst.com.au (Mike Dewhirst) Date: Wed, 03 Mar 2010 16:40:19 +1100 Subject: [melbourne-pug] os.walk into a skip In-Reply-To: <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> References: <4B8DEEEF.4050101@dewhirst.com.au> <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> Message-ID: <4B8DF643.9040606@dewhirst.com.au> On 3/03/2010 4:18pm, Tobias Sargeant wrote: > > On 03/03/2010, at 4:09 PM, Mike Dewhirst wrote: > >> Hi all >> >> Can someone tell me how to skip some arbitrary directories in os.walk()? > > > from the os.walk() docstring: > > When topdown is true, the caller can modify the dirnames list in-place > (e.g., via del or slice assignment), and walk will only recurse into the > subdirectories whose names remain in dirnames; this can be used to prune > the search, or to impose a specific order of visiting. Modifying > dirnames when topdown is false is ineffective, since the directories in > dirnames have already been generated by the time dirnames itself is > generated. Duh ... Thanks. I had (must have!) seen that but I was solving a different problem at the time so it didn't take. Cheers Mike > > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > > From sjmachin at lexicon.net Wed Mar 3 06:56:37 2010 From: sjmachin at lexicon.net (John Machin) Date: Wed, 03 Mar 2010 16:56:37 +1100 Subject: [melbourne-pug] os.walk into a skip In-Reply-To: <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> References: <4B8DEEEF.4050101@dewhirst.com.au> <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> Message-ID: <4B8DFA15.3080007@lexicon.net> On 3/03/2010 4:18 PM, Tobias Sargeant wrote: > > On 03/03/2010, at 4:09 PM, Mike Dewhirst wrote: > >> Hi all >> >> Can someone tell me how to skip some arbitrary directories in os.walk()? > > > from the os.walk() docstring: > > When topdown is true, the caller can modify the dirnames list in-place > (e.g., via del or slice assignment), and walk will only recurse into > the > subdirectories whose names remain in dirnames; this can be used to > prune > the search, or to impose a specific order of visiting. Modifying > dirnames when topdown is false is ineffective, since the directories in > dirnames have already been generated by the time dirnames itself is > generated. Anticipating the next question :-) what Mike needs to do is del dirnames[:] # must be in-situ deletion not dirnames = [] # wrong before his continue statement HTH John From miked at dewhirst.com.au Wed Mar 3 07:21:07 2010 From: miked at dewhirst.com.au (Mike Dewhirst) Date: Wed, 03 Mar 2010 17:21:07 +1100 Subject: [melbourne-pug] os.walk into a skip In-Reply-To: <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> References: <4B8DEEEF.4050101@dewhirst.com.au> <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> Message-ID: <4B8DFFD3.8010300@dewhirst.com.au> On 3/03/2010 4:18pm, Tobias Sargeant wrote: > > On 03/03/2010, at 4:09 PM, Mike Dewhirst wrote: > >> Hi all >> >> Can someone tell me how to skip some arbitrary directories in os.walk()? > > > from the os.walk() docstring: > > When topdown is true, the caller can modify the dirnames list in-place > (e.g., via del or slice assignment), and walk will only recurse into the > subdirectories whose names remain in dirnames; this can be used to prune > the search, or to impose a specific order of visiting. Modifying > dirnames when topdown is false is ineffective, since the directories in > dirnames have already been generated by the time dirnames itself is > generated. for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): #do stuff I found adjusting dirnames is too late. If I find a "flag" in a directory that means it exists in the filenames list - which is easy enought to test for. However, the dirnames list is no use because it lists the sub-directories alongside the files in that same parent directory - dirpath. It is dirpath I want to avoid if it contains the flag. I had tried to use 'continue' if the flag was encountered but that didn't work (for me). I had expected the for statement to skip all remaining "stuff" and go on with the next dirpath. I'm obviously missing something there. I have got it working by appending dirpath to a list of excluded dirs and then checking that before doing stuff. Here is the working code: for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): if SKIPFLAG in filenames: #continue self.exclude_dirs.append(dirpath) # case-insensitively check if dirpath is in self.exclude_dirs if self.is_excluded_dir(dirpath): self.logprint('\n' + dirpath + " is excluded") else: #do stuff Thanks again Mike > > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > > From dariusp686 at gmail.com Wed Mar 3 10:43:34 2010 From: dariusp686 at gmail.com (Darius Powell) Date: Wed, 3 Mar 2010 20:43:34 +1100 Subject: [melbourne-pug] os.walk into a skip In-Reply-To: <4B8DFFD3.8010300@dewhirst.com.au> References: <4B8DEEEF.4050101@dewhirst.com.au> <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> <4B8DFFD3.8010300@dewhirst.com.au> Message-ID: <6da0cdc71003030143j234753f2y6ca059164fa99f99@mail.gmail.com> Try adding dirnames[:] = [] in there where you detect the SKIPFLAG file so that it doesn't traverse into the sub dirs. continue only starts the next loop, it does not alter the behaviour of os.walk - modifying dirnames does. On 3 March 2010 17:21, Mike Dewhirst wrote: > On 3/03/2010 4:18pm, Tobias Sargeant wrote: >> >> On 03/03/2010, at 4:09 PM, Mike Dewhirst wrote: >> >>> Hi all >>> >>> Can someone tell me how to skip some arbitrary directories in os.walk()? >> >> >> from the os.walk() docstring: >> >> When topdown is true, the caller can modify the dirnames list in-place >> (e.g., via del or slice assignment), and walk will only recurse into the >> subdirectories whose names remain in dirnames; this can be used to prune >> the search, or to impose a specific order of visiting. Modifying >> dirnames when topdown is false is ineffective, since the directories in >> dirnames have already been generated by the time dirnames itself is >> generated. > > for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): > ? ?#do stuff > > I found adjusting dirnames is too late. If I find a "flag" in a directory > that means it exists in the filenames list - which is easy enought to test > for. However, the dirnames list is no use because it lists the > sub-directories alongside the files in that same parent directory - dirpath. > It is dirpath I want to avoid if it contains the flag. > > I had tried to use 'continue' if the flag was encountered but that didn't > work (for me). I had expected the for statement to skip all remaining > "stuff" and go on with the next dirpath. I'm obviously missing something > there. > > I have got it working by appending dirpath to a list of excluded dirs and > then checking that before doing stuff. Here is the working code: > > for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): > ? ?if SKIPFLAG in filenames: > ? ? ? ?#continue > ? ? ? ?self.exclude_dirs.append(dirpath) > ? ?# case-insensitively check if dirpath is in self.exclude_dirs > ? ?if self.is_excluded_dir(dirpath): > ? ? ? ?self.logprint('\n' + dirpath + " is excluded") > ? ?else: > ? ? ? ?#do stuff > > Thanks again > > Mike > > > > >> >> _______________________________________________ >> melbourne-pug mailing list >> melbourne-pug at python.org >> http://mail.python.org/mailman/listinfo/melbourne-pug >> >> > > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > From tleeuwenburg at gmail.com Wed Mar 3 10:56:43 2010 From: tleeuwenburg at gmail.com (Tennessee Leeuwenburg) Date: Wed, 3 Mar 2010 20:56:43 +1100 Subject: [melbourne-pug] How to get a link to a downloadable file using Google Code Search (or similar) Message-ID: <43c8685c1003030156j4f073den3c13313cd876223e@mail.gmail.com> Hi all, I'm trying to work out how to extract a link to an actual, downloadable, .py file using Google Code Search. Am I missing something obvious? For example, if I perform the following search: http://www.google.com/codesearch?as_q=&btnG=Search+Code&hl=en&as_lang=&as_license_restrict=i&as_license=&as_package=&as_filename=feedparser.py&as_case= I get a list of matching files, with links to a page giving more information each search result, e.g. http://www.google.com/codesearch/p?hl=en#pijz8v3Ot8w/trunk/subscriber/feedparser.py&q=file:feedparser.py&sa=N&cd=1&ct=rc Neither of these pages seems to contain any means to simply download the matched file as a file. Sometimes the file will be buried inside a .tgz archive, or perhaps I need to visit the root of the svn web server then manually visit links until I get a direct link to the file. I also can't figure out how to use the page google gives me to get the content of the file. Any simple suggestions? Thanks, -T -------------- next part -------------- An HTML attachment was scrubbed... URL: From pwdyson at yahoo.com Wed Mar 3 11:52:21 2010 From: pwdyson at yahoo.com (Paul) Date: Wed, 3 Mar 2010 02:52:21 -0800 (PST) Subject: [melbourne-pug] How to get a link to a downloadable file using Google Code Search (or similar) In-Reply-To: <43c8685c1003030156j4f073den3c13313cd876223e@mail.gmail.com> Message-ID: <42464.55635.qm@web53602.mail.re2.yahoo.com> Hi Tennessee, I did a search and found this question asked a few times over the last few years in the Google Code Search Google group. I didn't find an answer, but maybe a closer search of the group would find something. http://groups.google.com/group/Google-Code-Search Cheers, Paul --- On Wed, 3/3/10, Tennessee Leeuwenburg wrote: From: Tennessee Leeuwenburg Subject: [melbourne-pug] How to get a link to a downloadable file using Google Code Search (or similar) To: "Melbourne Python Users Group" Date: Wednesday, March 3, 2010, 8:56 PM Hi all, I'm trying to work out how to extract a link to an actual, downloadable, .py file using Google Code Search. Am I missing something obvious? For example, if I perform the following search: http://www.google.com/codesearch?as_q=&btnG=Search+Code&hl=en&as_lang=&as_license_restrict=i&as_license=&as_package=&as_filename=feedparser.py&as_case= I get a list of matching files, with links to a page giving more information each search result, e.g. http://www.google.com/codesearch/p?hl=en#pijz8v3Ot8w/trunk/subscriber/feedparser.py&q=file:feedparser.py&sa=N&cd=1&ct=rc Neither of these pages seems to contain any means to simply download the matched file as a file. Sometimes the file will be buried inside a .tgz archive, or perhaps I need to visit the root of the svn web server then manually visit links until I get a direct link to the file. I also can't figure out how to use the page google gives me to get the content of the file. Any simple suggestions?? Thanks,-T -----Inline Attachment Follows----- _______________________________________________ melbourne-pug mailing list melbourne-pug at python.org http://mail.python.org/mailman/listinfo/melbourne-pug -------------- next part -------------- An HTML attachment was scrubbed... URL: From number5 at gmail.com Wed Mar 3 11:57:45 2010 From: number5 at gmail.com (Bruce Wang) Date: Wed, 3 Mar 2010 21:57:45 +1100 Subject: [melbourne-pug] How to get a link to a downloadable file using Google Code Search (or similar) In-Reply-To: <43c8685c1003030156j4f073den3c13313cd876223e@mail.gmail.com> References: <43c8685c1003030156j4f073den3c13313cd876223e@mail.gmail.com> Message-ID: <8d581cfd1003030257y7cc8a8fap9ffe506d405b64f1@mail.gmail.com> On Wed, Mar 3, 2010 at 8:56 PM, Tennessee Leeuwenburg < tleeuwenburg at gmail.com> wrote: > Hi all, [snip] > > http://www.google.com/codesearch/p?hl=en#pijz8v3Ot8w/trunk/subscriber/feedparser.py&q=file:feedparser.py&sa=N&cd=1&ct=rc > > > Neither > of these pages seems to contain any means to simply download the matched > file as a file. Sometimes the file will be buried inside a .tgz archive, or > perhaps I need to visit the root of the svn web server then manually visit > links until I get a direct link to the file. I also can't figure out how to > use the page google gives me to get the content of the file. > > Any simple suggestions? > > > Try using google code search api http://code.google.com/apis/codesearch/docs/2.0/developers_guide.html at least they will have a downloadable zip url in the result xml -- simple is good http://brucewang.net http://twitter.com/number5 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sjmachin at lexicon.net Wed Mar 3 13:41:19 2010 From: sjmachin at lexicon.net (John Machin) Date: Wed, 03 Mar 2010 23:41:19 +1100 Subject: [melbourne-pug] os.walk into a skip In-Reply-To: <4B8DEEEF.4050101@dewhirst.com.au> References: <4B8DEEEF.4050101@dewhirst.com.au> Message-ID: <4B8E58EF.4000307@lexicon.net> On 3/03/2010 4:09 PM, Mike Dewhirst wrote: > Hi all > > Can someone tell me how to skip some arbitrary directories in os.walk()? > > for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): > # do stuff > > stuff = test file access times in a fairly deep and widespread directory > tree and relocate files to another root if they fit a preset age pattern. > > I now want to interfere with os.walk - I thought by recognising a flag > file in any directory eg., skipthis.dir, and doing this ... > The following should work. Which part "doesn't work", the if or the continue??? Misspelled the flag name in either or both places? Put flag in wrong dir? Try putting some print statements in ... > for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): if dirpath == path_expected_to_contain_flag: print "dir:", dirpath print filenames > if 'skipthis.dir' in filenames: print "Found the flag file in", dirpath > continue if 'skipthis.dir in filenames: print 'Voodoo, continue is broken' > # do stuff > > ... but that doesn't work. I'm missing something. I'll plug away for a > bit but if anyone has any ideas I'd be very appreciative. > > Thanks > > Mike > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > > From miked at dewhirst.com.au Thu Mar 4 03:27:01 2010 From: miked at dewhirst.com.au (Mike Dewhirst) Date: Thu, 04 Mar 2010 13:27:01 +1100 Subject: [melbourne-pug] os.walk into a skip In-Reply-To: <6da0cdc71003030143j234753f2y6ca059164fa99f99@mail.gmail.com> References: <4B8DEEEF.4050101@dewhirst.com.au> <26649E1C-2E06-4549-AB3A-43AE1BD9DEF7@gmail.com> <4B8DFFD3.8010300@dewhirst.com.au> <6da0cdc71003030143j234753f2y6ca059164fa99f99@mail.gmail.com> Message-ID: <4B8F1A75.8030004@dewhirst.com.au> On 3/03/2010 8:43pm, Darius Powell wrote: > Try adding > > dirnames[:] = [] > > in there where you detect the SKIPFLAG file so that it doesn't > traverse into the sub dirs. continue only starts the next loop, it > does not alter the behaviour of os.walk - modifying dirnames does. That worked properly - Thanks Darius. Now I can skip directories silently with dirnames[:] = [] or use my earlier workaround to note the fact in the log! Ain't Python wonderful? Mike >> >> I have got it working by appending dirpath to a list of excluded dirs and >> then checking that before doing stuff. Here is the working code: >> >> for dirpath, dirnames, filenames in os.walk(self.startin, topdown=True): >> if SKIPFLAG in filenames: >> #continue >> self.exclude_dirs.append(dirpath) >> if self.is_excluded_dir(dirpath): >> self.logprint('\n' + dirpath + " is excluded") >> else: >> #do stuff >> From craig at craigambrose.com Wed Mar 10 02:00:33 2010 From: craig at craigambrose.com (Craig Ambrose) Date: Wed, 10 Mar 2010 14:00:33 +1300 Subject: [melbourne-pug] [job] contract gig in melbourne, in a language with much less active whitespace Message-ID: Hi gang, I'm really a ruby developer, although I use python occasionally. My current client is having trouble finding people who are both good programmers, and already know ruby, and I've assured them that the first of those two is far more important. So, this is just a quick shout out to any experienced web developers who are comfortable in python, and want a contracting gig in ruby on rails (obviously with some training, presumably from me). I figure the languages are similar enough that skills will translate. Anyway, I wont stick a job add here on this list. Drop me an email offlist ( craig at craigambrose.com) if you want to know the details. cheers, Craig -------------- next part -------------- An HTML attachment was scrubbed... URL: From kshipras at packtpub.com Wed Mar 10 12:21:23 2010 From: kshipras at packtpub.com (Kshipra Singh) Date: Wed, 10 Mar 2010 16:51:23 +0530 Subject: [melbourne-pug] Opportunity to author Python Cookbooks-Packt Publishing Message-ID: <57F1E90088034A0D865F88451D12AD52@sonyPC> Hi Python Enthusiasts, I am writing to you for Packt Publishing, the publishers computer related books. We are planning to extend our catalogue of cookbooks and are currently inviting "Python" fanatics interested in writing a cookbook. So, if you love "Python" and are interested in writing a cookbook, please contact us with your book ideas at author at packtpub.com. Even if you do not have a book idea and are simply interested in authoring a cookbook, we are still keen to hear from you. More details about the opportunity are available at: http://authors.packtpub.com/content/python-fanatics-invited-write-packt Thanks Kshipra Singh Author Relationship Manager Packt Publishing www.PacktPub.com Skype: kshiprasingh15 Twitter: http://twitter.com/kshipras Interested in becoming an author? Visit http://authors.packtpub.com for all the information you need about writing for Packt. -------------- next part -------------- An HTML attachment was scrubbed... URL: From craig at craigambrose.com Thu Mar 11 04:50:09 2010 From: craig at craigambrose.com (Craig Ambrose) Date: Thu, 11 Mar 2010 16:50:09 +1300 Subject: [melbourne-pug] [job] contract gig in melbourne, in a language with much less active whitespace In-Reply-To: References: Message-ID: Sorry to harp on about this folks, but just a quick correction to my post before. We're pretty much after people who want a full time job, rather than a short term or part time contractor. However, we're certainly happy to talk about other ideas. cheers, Craig -------------- next part -------------- An HTML attachment was scrubbed... URL: From afort at choqolat.org Tue Mar 16 01:58:51 2010 From: afort at choqolat.org (Andreux Fort) Date: Tue, 16 Mar 2010 11:58:51 +1100 Subject: [melbourne-pug] New to the list Message-ID: <7654d9d1003151758y16d04258m82ccafed1da71036@mail.gmail.com> Greetings pythonistas, I'm new to the group being just recently back in Melbourne, but was wondering if there'd be any interest in a 5 minute talk on a load-balancing xmlrpclib.Transport extension I've written (some old code soon to be updated is at http://code.google.com/p/notch/source/browse/notch/client/lb_transport.py). I'm using it for both jsonrpclib and xmlrpclib clients to allow clients of my Notch service to talk to many server backends independent of their (serving) state. Cheers! -- Andreux Fort (afort at choqolat.org) From r1chardj0n3s at gmail.com Tue Mar 16 02:21:32 2010 From: r1chardj0n3s at gmail.com (Richard Jones) Date: Tue, 16 Mar 2010 12:21:32 +1100 Subject: [melbourne-pug] New to the list In-Reply-To: <7654d9d1003151758y16d04258m82ccafed1da71036@mail.gmail.com> References: <7654d9d1003151758y16d04258m82ccafed1da71036@mail.gmail.com> Message-ID: <249b6faa1003151821p25c27586j79ec3c1f66cc7c5a@mail.gmail.com> On Tue, Mar 16, 2010 at 11:58 AM, Andreux Fort wrote: > I'm new to the group being just recently back in Melbourne, but was > wondering if there'd be any interest in a 5 minute talk on a > load-balancing xmlrpclib.Transport extension I've written (some old > code soon to be updated is at > http://code.google.com/p/notch/source/browse/notch/client/lb_transport.py). > ?I'm using it for both jsonrpclib and xmlrpclib clients to allow > clients of my Notch service to talk to many server backends > independent of their (serving) state. Absolutely! Please sign up at the wiki http://bit.ly/mpug Richard From andrew.fort at gmail.com Tue Mar 16 02:38:49 2010 From: andrew.fort at gmail.com (Andreux Fort) Date: Tue, 16 Mar 2010 12:38:49 +1100 Subject: [melbourne-pug] New to the list In-Reply-To: <249b6faa1003151821p25c27586j79ec3c1f66cc7c5a@mail.gmail.com> References: <7654d9d1003151758y16d04258m82ccafed1da71036@mail.gmail.com> <249b6faa1003151821p25c27586j79ec3c1f66cc7c5a@mail.gmail.com> Message-ID: <7654d9d1003151838h7f606f22k91e6dbcb142a0768@mail.gmail.com> On Tue, Mar 16, 2010 at 12:21 PM, Richard Jones wrote: > On Tue, Mar 16, 2010 at 11:58 AM, Andreux Fort wrote: >> I'm new to the group being just recently back in Melbourne, but was >> wondering if there'd be any interest in a 5 minute talk on a >> load-balancing xmlrpclib.Transport extension I've written (some old > > Absolutely! Please sign up at the wiki http://bit.ly/mpug > Done. I note that the calendar says the next meeting is April 12, whilst the wiki says April 5, which is right? Cheers, -- Andreux Fort (afort at choqolat.org) From r1chardj0n3s at gmail.com Tue Mar 16 02:49:35 2010 From: r1chardj0n3s at gmail.com (Richard Jones) Date: Tue, 16 Mar 2010 12:49:35 +1100 Subject: [melbourne-pug] New to the list In-Reply-To: <7654d9d1003151838h7f606f22k91e6dbcb142a0768@mail.gmail.com> References: <7654d9d1003151758y16d04258m82ccafed1da71036@mail.gmail.com> <249b6faa1003151821p25c27586j79ec3c1f66cc7c5a@mail.gmail.com> <7654d9d1003151838h7f606f22k91e6dbcb142a0768@mail.gmail.com> Message-ID: <249b6faa1003151849j50c5cb2asc3ff6a302dd0b489@mail.gmail.com> On Tue, Mar 16, 2010 at 12:38 PM, Andreux Fort wrote: > On Tue, Mar 16, 2010 at 12:21 PM, Richard Jones wrote: >> On Tue, Mar 16, 2010 at 11:58 AM, Andreux Fort wrote: >>> I'm new to the group being just recently back in Melbourne, but was >>> wondering if there'd be any interest in a 5 minute talk on a >>> load-balancing xmlrpclib.Transport extension I've written (some old >> >> Absolutely! Please sign up at the wiki http://bit.ly/mpug >> > > Done. > > I note that the calendar says the next meeting is April 12, whilst the > wiki says April 5, which is right? The wiki is incorrect - I've fixed it. The 5th is a public holiday. Richard From edschofield at gmail.com Tue Mar 16 03:07:33 2010 From: edschofield at gmail.com (Ed Schofield) Date: Tue, 16 Mar 2010 13:07:33 +1100 Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? Message-ID: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> Hi everyone, I've also moved back to Melbourne recently and I'm new to the list. Is anyone interested in a talk on NumPy / SciPy / Matplotlib? I could give an overview of all three as a 15-minute talk on 12 April if there's enough interest. Cheers, -- Ed -------------- next part -------------- An HTML attachment was scrubbed... URL: From tleeuwenburg at gmail.com Tue Mar 16 03:14:59 2010 From: tleeuwenburg at gmail.com (Tennessee Leeuwenburg) Date: Tue, 16 Mar 2010 13:14:59 +1100 Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? In-Reply-To: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> References: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> Message-ID: <43c8685c1003151914w2c6f3d13uc998e621f2bd494e@mail.gmail.com> I'd be very interested in the easiest way to plot a data set or function using that technology stack... Cheers, -T On Tue, Mar 16, 2010 at 1:07 PM, Ed Schofield wrote: > Hi everyone, > > I've also moved back to Melbourne recently and I'm new to the list. > > Is anyone interested in a talk on NumPy / SciPy / Matplotlib? I could give > an overview of all three as a 15-minute talk on 12 April if there's enough > interest. > > Cheers, > -- Ed > > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > > -- -------------------------------------------------- Tennessee Leeuwenburg http://myownhat.blogspot.com/ "Don't believe everything you think" -------------- next part -------------- An HTML attachment was scrubbed... URL: From nguyenminh2 at gmail.com Tue Mar 16 03:20:02 2010 From: nguyenminh2 at gmail.com (Minh Nguyen) Date: Tue, 16 Mar 2010 13:20:02 +1100 Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? In-Reply-To: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> References: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> Message-ID: <9418b9471003151920k4dbb923cyafc6e3a22a1ffb78@mail.gmail.com> Hi Ed, On Tue, Mar 16, 2010 at 1:07 PM, Ed Schofield wrote: > Hi everyone, > I've also moved back to Melbourne recently and I'm new to the list. > Is anyone interested in a talk on NumPy / SciPy / Matplotlib? Any plan to cover Sage (www.sagemath.org)? Sage is a Python distribution that ships the scientific stack you mentioned. -- Regards Minh Van Nguyen From sorench at gmail.com Tue Mar 16 03:24:48 2010 From: sorench at gmail.com (Soren Christensen) Date: Tue, 16 Mar 2010 13:24:48 +1100 Subject: [melbourne-pug] melbourne-pug Digest, Vol 46, Issue 8 In-Reply-To: References: Message-ID: Hi all, I am new to the list and would like to flag interest in the talk on NymPy/SciPy. Soren On Tue, Mar 16, 2010 at 1:20 PM, wrote: > Send melbourne-pug mailing list submissions to > ? ? ? ?melbourne-pug at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > ? ? ? ?http://mail.python.org/mailman/listinfo/melbourne-pug > or, via email, send a message with subject or body 'help' to > ? ? ? ?melbourne-pug-request at python.org > > You can reach the person managing the list at > ? ? ? ?melbourne-pug-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of melbourne-pug digest..." > > > Today's Topics: > > ? 1. New to the list (Andreux Fort) > ? 2. Re: New to the list (Richard Jones) > ? 3. Re: New to the list (Andreux Fort) > ? 4. Re: New to the list (Richard Jones) > ? 5. Hi! / Talk on scientific computing with Python? (Ed Schofield) > ? 6. Re: Hi! / Talk on scientific computing with Python? > ? ? ?(Tennessee Leeuwenburg) > ? 7. Re: Hi! / Talk on scientific computing with Python? (Minh Nguyen) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 16 Mar 2010 11:58:51 +1100 > From: Andreux Fort > To: melbourne-pug at python.org > Subject: [melbourne-pug] New to the list > Message-ID: > ? ? ? ?<7654d9d1003151758y16d04258m82ccafed1da71036 at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > Greetings pythonistas, > > I'm new to the group being just recently back in Melbourne, but was > wondering if there'd be any interest in a 5 minute talk on a > load-balancing xmlrpclib.Transport extension I've written (some old > code soon to be updated is at > http://code.google.com/p/notch/source/browse/notch/client/lb_transport.py). > ?I'm using it for both jsonrpclib and xmlrpclib clients to allow > clients of my Notch service to talk to many server backends > independent of their (serving) state. > > Cheers! > > -- > Andreux Fort (afort at choqolat.org) > > > ------------------------------ > > Message: 2 > Date: Tue, 16 Mar 2010 12:21:32 +1100 > From: Richard Jones > To: Melbourne Python Users Group > Subject: Re: [melbourne-pug] New to the list > Message-ID: > ? ? ? ?<249b6faa1003151821p25c27586j79ec3c1f66cc7c5a at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On Tue, Mar 16, 2010 at 11:58 AM, Andreux Fort wrote: >> I'm new to the group being just recently back in Melbourne, but was >> wondering if there'd be any interest in a 5 minute talk on a >> load-balancing xmlrpclib.Transport extension I've written (some old >> code soon to be updated is at >> http://code.google.com/p/notch/source/browse/notch/client/lb_transport.py). >> ?I'm using it for both jsonrpclib and xmlrpclib clients to allow >> clients of my Notch service to talk to many server backends >> independent of their (serving) state. > > Absolutely! Please sign up at the wiki http://bit.ly/mpug > > > ? ? ?Richard > > > ------------------------------ > > Message: 3 > Date: Tue, 16 Mar 2010 12:38:49 +1100 > From: Andreux Fort > To: Melbourne Python Users Group > Subject: Re: [melbourne-pug] New to the list > Message-ID: > ? ? ? ?<7654d9d1003151838h7f606f22k91e6dbcb142a0768 at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On Tue, Mar 16, 2010 at 12:21 PM, Richard Jones wrote: >> On Tue, Mar 16, 2010 at 11:58 AM, Andreux Fort wrote: >>> I'm new to the group being just recently back in Melbourne, but was >>> wondering if there'd be any interest in a 5 minute talk on a >>> load-balancing xmlrpclib.Transport extension I've written (some old >> >> Absolutely! Please sign up at the wiki http://bit.ly/mpug >> > > Done. > > I note that the calendar says the next meeting is April 12, whilst the > wiki says April 5, which is right? > > Cheers, > > -- > Andreux Fort (afort at choqolat.org) > > > ------------------------------ > > Message: 4 > Date: Tue, 16 Mar 2010 12:49:35 +1100 > From: Richard Jones > To: Melbourne Python Users Group > Subject: Re: [melbourne-pug] New to the list > Message-ID: > ? ? ? ?<249b6faa1003151849j50c5cb2asc3ff6a302dd0b489 at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > On Tue, Mar 16, 2010 at 12:38 PM, Andreux Fort wrote: >> On Tue, Mar 16, 2010 at 12:21 PM, Richard Jones wrote: >>> On Tue, Mar 16, 2010 at 11:58 AM, Andreux Fort wrote: >>>> I'm new to the group being just recently back in Melbourne, but was >>>> wondering if there'd be any interest in a 5 minute talk on a >>>> load-balancing xmlrpclib.Transport extension I've written (some old >>> >>> Absolutely! Please sign up at the wiki http://bit.ly/mpug >>> >> >> Done. >> >> I note that the calendar says the next meeting is April 12, whilst the >> wiki says April 5, which is right? > > The wiki is incorrect - I've fixed it. The 5th is a public holiday. > > > ? ? ? Richard > > > ------------------------------ > > Message: 5 > Date: Tue, 16 Mar 2010 13:07:33 +1100 > From: Ed Schofield > To: melbourne-pug at python.org > Subject: [melbourne-pug] Hi! / Talk on scientific computing with > ? ? ? ?Python? > Message-ID: > ? ? ? ?<1b5a37351003151907i1ef94c16qeab1ef37200da7de at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > Hi everyone, > > I've also moved back to Melbourne recently and I'm new to the list. > > Is anyone interested in a talk on NumPy / SciPy / Matplotlib? I could give > an overview of all three as a 15-minute talk on 12 April if there's enough > interest. > > Cheers, > -- Ed > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 6 > Date: Tue, 16 Mar 2010 13:14:59 +1100 > From: Tennessee Leeuwenburg > To: Melbourne Python Users Group > Subject: Re: [melbourne-pug] Hi! / Talk on scientific computing with > ? ? ? ?Python? > Message-ID: > ? ? ? ?<43c8685c1003151914w2c6f3d13uc998e621f2bd494e at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > I'd be very interested in the easiest way to plot a data set or function > using that technology stack... > > Cheers, > -T > > On Tue, Mar 16, 2010 at 1:07 PM, Ed Schofield wrote: > >> Hi everyone, >> >> I've also moved back to Melbourne recently and I'm new to the list. >> >> Is anyone interested in a talk on NumPy / SciPy / Matplotlib? I could give >> an overview of all three as a 15-minute talk on 12 April if there's enough >> interest. >> >> Cheers, >> -- Ed >> >> _______________________________________________ >> melbourne-pug mailing list >> melbourne-pug at python.org >> http://mail.python.org/mailman/listinfo/melbourne-pug >> >> > > > -- > -------------------------------------------------- > Tennessee Leeuwenburg > http://myownhat.blogspot.com/ > "Don't believe everything you think" > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > > ------------------------------ > > Message: 7 > Date: Tue, 16 Mar 2010 13:20:02 +1100 > From: Minh Nguyen > To: Melbourne Python Users Group > Subject: Re: [melbourne-pug] Hi! / Talk on scientific computing with > ? ? ? ?Python? > Message-ID: > ? ? ? ?<9418b9471003151920k4dbb923cyafc6e3a22a1ffb78 at mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1 > > Hi Ed, > > On Tue, Mar 16, 2010 at 1:07 PM, Ed Schofield wrote: >> Hi everyone, >> I've also moved back to Melbourne recently and I'm new to the list. >> Is anyone interested in a talk on NumPy / SciPy / Matplotlib? > > Any plan to cover Sage (www.sagemath.org)? Sage is a Python > distribution that ships the scientific stack you mentioned. > > -- > Regards > Minh Van Nguyen > > > ------------------------------ > > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > > > End of melbourne-pug Digest, Vol 46, Issue 8 > ******************************************** > From mikerezny at yahoo.com.au Tue Mar 16 04:03:16 2010 From: mikerezny at yahoo.com.au (Mike Rezny) Date: Mon, 15 Mar 2010 20:03:16 -0700 (PDT) Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? In-Reply-To: <43c8685c1003151914w2c6f3d13uc998e621f2bd494e@mail.gmail.com> Message-ID: <122150.50554.qm@web30607.mail.mud.yahoo.com> Hi, I would be interested. Mike --- On Tue, 16/3/10, Tennessee Leeuwenburg wrote: > From: Tennessee Leeuwenburg > Subject: Re: [melbourne-pug] Hi! / Talk on scientific computing with Python? > To: "Melbourne Python Users Group" > Received: Tuesday, 16 March, 2010, 1:14 PM > I'd be very interested in the easiest > way to plot a data set or function using that technology > stack... > > Cheers, > -T > > On Tue, Mar 16, 2010 at 1:07 PM, > Ed Schofield > wrote: > > Hi everyone, > I've also moved back to Melbourne recently > and I'm new to the list. > > Is anyone interested in a talk on NumPy / SciPy > / Matplotlib? I could give an overview of all three as a > 15-minute talk on 12 April if there's enough > interest. > > Cheers,-- Ed > > _______________________________________________ > > melbourne-pug mailing list > > melbourne-pug at python.org > > http://mail.python.org/mailman/listinfo/melbourne-pug > > > > > > -- > -------------------------------------------------- > Tennessee Leeuwenburg > http://myownhat.blogspot.com/ > "Don't believe everything you think" > > > > -----Inline Attachment Follows----- > > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > From jimmy.briggs at gmail.com Tue Mar 16 07:46:38 2010 From: jimmy.briggs at gmail.com (James Briggs) Date: Tue, 16 Mar 2010 17:46:38 +1100 Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? In-Reply-To: <122150.50554.qm@web30607.mail.mud.yahoo.com> References: <43c8685c1003151914w2c6f3d13uc998e621f2bd494e@mail.gmail.com> <122150.50554.qm@web30607.mail.mud.yahoo.com> Message-ID: <23b1b67f1003152346h4d5897b2r536aa66ea16a748b@mail.gmail.com> Me too. On Tue, Mar 16, 2010 at 2:03 PM, Mike Rezny wrote: > Hi, > I would be interested. > > Mike > > --- On Tue, 16/3/10, Tennessee Leeuwenburg wrote: > > > From: Tennessee Leeuwenburg > > Subject: Re: [melbourne-pug] Hi! / Talk on scientific computing with > Python? > > To: "Melbourne Python Users Group" > > Received: Tuesday, 16 March, 2010, 1:14 PM > > I'd be very interested in the easiest > > way to plot a data set or function using that technology > > stack... > > > > Cheers, > > -T > > > > On Tue, Mar 16, 2010 at 1:07 PM, > > Ed Schofield > > wrote: > > > > Hi everyone, > > I've also moved back to Melbourne recently > > and I'm new to the list. > > > > Is anyone interested in a talk on NumPy / SciPy > > / Matplotlib? I could give an overview of all three as a > > 15-minute talk on 12 April if there's enough > > interest. > > > > Cheers,-- Ed > > > > _______________________________________________ > > > > melbourne-pug mailing list > > > > melbourne-pug at python.org > > > > http://mail.python.org/mailman/listinfo/melbourne-pug > > > > > > > > > > > > -- > > -------------------------------------------------- > > Tennessee Leeuwenburg > > http://myownhat.blogspot.com/ > > "Don't believe everything you think" > > > > > > > > -----Inline Attachment Follows----- > > > > _______________________________________________ > > melbourne-pug mailing list > > melbourne-pug at python.org > > http://mail.python.org/mailman/listinfo/melbourne-pug > > > > > > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew.fort at gmail.com Tue Mar 16 08:15:29 2010 From: andrew.fort at gmail.com (Andreux Fort) Date: Tue, 16 Mar 2010 18:15:29 +1100 Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? In-Reply-To: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> References: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> Message-ID: <7654d9d1003160015q3c52c782u93f15f7e95ccc85b@mail.gmail.com> On Tue, Mar 16, 2010 at 1:07 PM, Ed Schofield wrote: > Hi everyone, > I've also moved back to Melbourne recently and I'm new to the list. > Is anyone interested in a talk on NumPy / SciPy / Matplotlib? I could give > an overview of all three as a 15-minute talk on 12 April if there's enough Admittedly, it's an aside, but I'm curious how I could apply these tools for processing timeseries data (statistical series upon some raw timeseries, specifcally). Maybe it's a BoF type thing I or others could ask questions about later... -a From r1chardj0n3s at gmail.com Tue Mar 16 08:22:39 2010 From: r1chardj0n3s at gmail.com (Richard Jones) Date: Tue, 16 Mar 2010 18:22:39 +1100 Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? In-Reply-To: <7654d9d1003160015q3c52c782u93f15f7e95ccc85b@mail.gmail.com> References: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> <7654d9d1003160015q3c52c782u93f15f7e95ccc85b@mail.gmail.com> Message-ID: <249b6faa1003160022y48367000x286d2035c481c90@mail.gmail.com> On Tue, Mar 16, 2010 at 6:15 PM, Andreux Fort wrote: > On Tue, Mar 16, 2010 at 1:07 PM, Ed Schofield wrote: >> Hi everyone, >> I've also moved back to Melbourne recently and I'm new to the list. >> Is anyone interested in a talk on NumPy / SciPy / Matplotlib? I could give >> an overview of all three as a 15-minute talk on 12 April if there's enough > > Admittedly, it's an aside, but I'm curious how I could apply these > tools for processing timeseries data (statistical series upon some raw > timeseries, specifcally). ?Maybe it's a BoF type thing I or others > could ask questions about later... It sounds like there's broad appeal for a 15 minute overview of the tools. I'm all for it! If Ed's up for it we could probably even convince him to do some further talks with a little more detail in some areas in future meetings :-) Richard From mydnite1 at gmail.com Tue Mar 16 12:20:17 2010 From: mydnite1 at gmail.com (James Alford) Date: Tue, 16 Mar 2010 22:20:17 +1100 Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? In-Reply-To: <249b6faa1003160022y48367000x286d2035c481c90@mail.gmail.com> References: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> <7654d9d1003160015q3c52c782u93f15f7e95ccc85b@mail.gmail.com> <249b6faa1003160022y48367000x286d2035c481c90@mail.gmail.com> Message-ID: <851350be1003160420p65b52171wf23c823150ab635d@mail.gmail.com> I'm also really interested in your take on these packages. I used numpy and matplotlib for my masters genetic algorithm project to graph generational fitness and map the diversity of the population. The graphing drove me nuts until I realised you had to actually close the numbered graph once you have finished with it. The end result was a really nice looking graph. On Tue, Mar 16, 2010 at 6:22 PM, Richard Jones wrote: > On Tue, Mar 16, 2010 at 6:15 PM, Andreux Fort wrote: >> On Tue, Mar 16, 2010 at 1:07 PM, Ed Schofield wrote: >>> Hi everyone, >>> I've also moved back to Melbourne recently and I'm new to the list. >>> Is anyone interested in a talk on NumPy / SciPy / Matplotlib? I could give >>> an overview of all three as a 15-minute talk on 12 April if there's enough >> >> Admittedly, it's an aside, but I'm curious how I could apply these >> tools for processing timeseries data (statistical series upon some raw >> timeseries, specifcally). ?Maybe it's a BoF type thing I or others >> could ask questions about later... > > It sounds like there's broad appeal for a 15 minute overview of the > tools. I'm all for it! If Ed's up for it we could probably even > convince him to do some further talks with a little more detail in > some areas in future meetings :-) > > > ? ? ?Richard > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > From edschofield at gmail.com Sun Mar 21 23:54:07 2010 From: edschofield at gmail.com (Ed Schofield) Date: Mon, 22 Mar 2010 09:54:07 +1100 Subject: [melbourne-pug] Hi! / Talk on scientific computing with Python? In-Reply-To: <249b6faa1003160022y48367000x286d2035c481c90@mail.gmail.com> References: <1b5a37351003151907i1ef94c16qeab1ef37200da7de@mail.gmail.com> <7654d9d1003160015q3c52c782u93f15f7e95ccc85b@mail.gmail.com> <249b6faa1003160022y48367000x286d2035c481c90@mail.gmail.com> Message-ID: <1b5a37351003211554k3cc40e4aj9a146a9e3f75b53c@mail.gmail.com> Hi everyone, On Tue, Mar 16, 2010 at 6:22 PM, Richard Jones wrote: > > It sounds like there's broad appeal for a 15 minute overview of the > tools. I'm all for it! ... > Great! I'm glad there's so much interest. I'll start with an overview on 12 April and do my best to field any specific questions. :) Cheers, -- Ed -------------- next part -------------- An HTML attachment was scrubbed... URL: From pwilliams at nswrdn.com.au Thu Mar 25 03:31:47 2010 From: pwilliams at nswrdn.com.au (Peter Williams) Date: Thu, 25 Mar 2010 13:31:47 +1100 Subject: [melbourne-pug] Job opportunity - Newcastle, NSW, Australia Message-ID: <4BAACB13.2040906@nswrdn.com.au> Hi all Please see: http://tinyurl.com/rdnjob2 for a job being advertised by NSW Rural Doctors Network in Newcastle, NSW, Australia. Employment is open to Australian citizens, permanent residents and other applicants with the appropriate visa authorisation to work in Australia. The person will be required to work at the RDN office in Newcastle, NSW, Australia. Should you have any questions about the position, please reply to this email address, however, I won't be able to reply until 7 April. Applications close 12 April. Thanks. Peter J Williams Information Manager NSW Rural Doctors Network Head Office Suite 19, Level 3 133 King Street Newcastle NSW 2300 Telephone: (02) 4924-8000 Facsimile: (02) 4924-8010 Mailto:pwilliams at nswrdn.com.au Web: http://www.nswrdn.com.au -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: disclaimer.txt URL: From pwdyson at yahoo.com Mon Mar 29 05:20:28 2010 From: pwdyson at yahoo.com (Paul) Date: Sun, 28 Mar 2010 20:20:28 -0700 (PDT) Subject: [melbourne-pug] Job Opportunity: Bureau of Meteorology Message-ID: <991370.89615.qm@web53601.mail.re2.yahoo.com> Below are the Job Profile and Selection Criteria for a three month position for a Python developer at the Bureau of Meteorology's Head Office, located in the Docklands, Melbourne. The pay is at a rate of $68699 to $77002 per annum, depending upon previous Public Service experience. More extensive advertising for this position is due to be finalised on Thursday. However, if there is a suitable applicant before Thursday, then the wider advertising can be canceled and that applicant can be employed much sooner than if we advertise more widely and wait for responses. (The Public Service employment rules are somewhat flexible for positions of less than 12 months duration.) If you are interested, please send your CV and contact details to me (p.dyson at bom.gov.au) before Thursday (1/4/2010). Cheers, Paul Dr Paul Dyson Senior Scientist Solar Radiation Data Quality and Improvement Section Observations and Engineering Branch Bureau of Meteorology email: p.dyson at bom.gov.au phone: (03) 9669 4447 ------------------------------- Job Profile: ITO2 APS LEVEL 6 (INFORMATION TECHNOLOGY OFFICER CLASS 2) DATA QUALITY AND IMPROVEMENT SECTION OBSERVATIONS AND ENGINEERING BRANCH JOB PROFILE The person will work in the Data Quality and Improvement Section, a part of the Observations and Engineering Branch. This section provides high quality, special climate and environment related observational data for the Australian region for information, monitoring, prediction and research purposes; investigates new monitoring technologies including remote sensing; develops satellite and other specialised applications; and ensures excellence in the performance and utility of all the Bureau?s meteorological instrumentation. The person will be responsible for the conversion of Solar Radiation data into a format suitable for ingest into the National Climate Centre?s ADAM database. This will involve the production of a software package, followed by its application to the Solar Radiation data set. The person will be expected to liaise with both internal and external stakeholders and will be required to maintain documentation. Good oral and written communication skills and an ability to work as part of a small team under supervision is required. ------------------------------- Selection Criteria: ITO2 1. Demonstrated ability in developing Python software applications, including the ability to manipulate data in various formats and structures. 2. Demonstrated understanding of database design and experience with developing database applications. 3. Proven ability to work cooperatively in a team environment. 4. Communication skills of a high order, including ability to document software. 5. Be aware of, and apply as necessary, the principles and practices of the various elements of the Bureau's Social Justice Strategy. ------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From n6151h at gmail.com Mon Mar 29 05:37:27 2010 From: n6151h at gmail.com (N6151H) Date: Mon, 29 Mar 2010 14:37:27 +1100 Subject: [melbourne-pug] Job Opportunity: Bureau of Meteorology In-Reply-To: <991370.89615.qm@web53601.mail.re2.yahoo.com> References: <991370.89615.qm@web53601.mail.re2.yahoo.com> Message-ID: <2ca9a3341003282037r2f970d30g6e4b52cdfefcedbb@mail.gmail.com> Does this require Australian citizenship, as do all the other BoM jobs of this type we've seen posted? On Mon, Mar 29, 2010 at 2:20 PM, Paul wrote: > > Below are the Job Profile and Selection Criteria for a three month position > for a Python developer at the Bureau of Meteorology's Head Office, located > in the Docklands, Melbourne. The pay is at a rate of $68699 to $77002 per > annum, depending upon previous Public Service experience. > > More extensive advertising for this position is due to be finalised on > Thursday. However, if there is a suitable applicant before Thursday, then > the wider advertising can be canceled and that applicant can be employed > much sooner than if we advertise more widely and wait for responses. (The > Public Service employment rules are somewhat flexible for positions of less > than 12 months duration.) > > If you are interested, please send your CV and contact details to me > (p.dyson at bom.gov.au) before Thursday (1/4/2010). > > > Cheers, > Paul > > > Dr Paul Dyson > Senior Scientist > Solar Radiation > Data Quality and Improvement Section > Observations and Engineering Branch > Bureau of Meteorology > > email: p.dyson at bom.gov.au > phone: (03) 9669 4447 > > ------------------------------- > > > Job Profile: ITO2 > > APS LEVEL 6 (INFORMATION TECHNOLOGY OFFICER CLASS 2) > > DATA QUALITY AND IMPROVEMENT SECTION > > OBSERVATIONS AND ENGINEERING BRANCH > > JOB PROFILE > > The person will work in the Data Quality and Improvement Section, a part of > the Observations and Engineering Branch. This section provides high quality, > special climate and environment related observational data for the > Australian region for information, monitoring, prediction and research > purposes; investigates new monitoring technologies including remote sensing; > develops satellite and other specialised applications; and ensures > excellence in the performance and utility of all the Bureau?s meteorological > instrumentation. > > The person will be responsible for the conversion of Solar Radiation data > into a format suitable for ingest into the National Climate Centre?s ADAM > database. This will involve the production of a software package, followed > by its application to the Solar Radiation data set. The person will be > expected to liaise with both internal and external stakeholders and will be > required to maintain documentation. Good oral and written communication > skills and an ability to work as part of a small team under supervision is > required. > > > ------------------------------- > > > Selection Criteria: ITO2 > > 1. Demonstrated ability in developing Python software applications, > including the ability to manipulate data in various formats and structures. > > 2. Demonstrated understanding of database design and experience with > developing database applications. > > 3. Proven ability to work cooperatively in a team environment. > > 4. Communication skills of a high order, including ability to document > software. > > 5. Be aware of, and apply as necessary, the principles and practices of the > various elements of the Bureau's Social Justice Strategy. > > > ------------------------------- > > > > _______________________________________________ > melbourne-pug mailing list > melbourne-pug at python.org > http://mail.python.org/mailman/listinfo/melbourne-pug > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pwdyson at yahoo.com Mon Mar 29 06:19:00 2010 From: pwdyson at yahoo.com (Paul) Date: Sun, 28 Mar 2010 21:19:00 -0700 (PDT) Subject: [melbourne-pug] Job Opportunity: Bureau of Meteorology In-Reply-To: <2ca9a3341003282037r2f970d30g6e4b52cdfefcedbb@mail.gmail.com> Message-ID: <490634.18764.qm@web53601.mail.re2.yahoo.com> To employ someone who is not an Australian Citizen I would have to show that there are no suitable Australian Citizens available. That would be very difficult to show for a job of this nature. Cheers, Paul --- On Mon, 3/29/10, N6151H wrote: From: N6151H Subject: Re: [melbourne-pug] Job Opportunity: Bureau of Meteorology To: "Melbourne Python Users Group" Date: Monday, March 29, 2010, 2:37 PM Does this require Australian citizenship, as do all the other BoM jobs of this type we've seen posted? On Mon, Mar 29, 2010 at 2:20 PM, Paul wrote: Below are the Job Profile and Selection Criteria for a three month position for a Python developer at the Bureau of Meteorology's Head Office, located in the Docklands, Melbourne. The pay is at a rate of $68699 to $77002 per annum, depending upon previous Public Service experience. More extensive advertising for this position is due to be finalised on Thursday. However, if there is a suitable applicant before Thursday, then the wider advertising can be canceled and that applicant can be employed much sooner than if we advertise more widely and wait for responses. (The Public Service employment rules are somewhat flexible for positions of less than 12 months duration.) If you are interested, please send your CV and contact details to me (p.dyson at bom.gov.au) before Thursday (1/4/2010). Cheers, Paul Dr Paul Dyson Senior Scientist Solar Radiation Data Quality and Improvement Section Observations and Engineering Branch Bureau of Meteorology email: p.dyson at bom.gov.au phone: (03) 9669 4447 ------------------------------- Job Profile: ITO2 APS LEVEL 6 (INFORMATION TECHNOLOGY OFFICER CLASS 2) DATA QUALITY AND IMPROVEMENT SECTION OBSERVATIONS AND ENGINEERING BRANCH JOB PROFILE The person will work in the Data Quality and Improvement Section, a part of the Observations and Engineering Branch. This section provides high quality, special climate and environment related observational data for the Australian region for information, monitoring, prediction and research purposes; investigates new monitoring technologies including remote sensing; develops satellite and other specialised applications; and ensures excellence in the performance and utility of all the Bureau?s meteorological instrumentation. The person will be responsible for the conversion of Solar Radiation data into a format suitable for ingest into the National Climate Centre?s ADAM database. This will involve the production of a software package, followed by its application to the Solar Radiation data set. The person will be expected to liaise with both internal and external stakeholders and will be required to maintain documentation. Good oral and written communication skills and an ability to work as part of a small team under supervision is required. ------------------------------- Selection Criteria: ITO2 1. Demonstrated ability in developing Python software applications, including the ability to manipulate data in various formats and structures. 2. Demonstrated understanding of database design and experience with developing database applications. 3. Proven ability to work cooperatively in a team environment. 4. Communication skills of a high order, including ability to document software. 5. Be aware of, and apply as necessary, the principles and practices of the various elements of the Bureau's Social Justice Strategy. ------------------------------- _______________________________________________ melbourne-pug mailing list melbourne-pug at python.org http://mail.python.org/mailman/listinfo/melbourne-pug -----Inline Attachment Follows----- _______________________________________________ melbourne-pug mailing list melbourne-pug at python.org http://mail.python.org/mailman/listinfo/melbourne-pug -------------- next part -------------- An HTML attachment was scrubbed... URL: