Re: [python-uk] PermissionError: [Errno 13] Permission denied: 'Abc.xlsx'

2022-02-09 Thread Jonathan Hartley
; What to do to correct this error? I have already searched on google search >> many times but no solution was found. >> >> ___ >> python-uk mailing list >> python-uk@python.org >> https://mail.python.org/mailman/

Re: [python-uk] Austin -- CPython frame stack sampler v2.0.0 is now available

2020-10-17 Thread Jonathan Hartley
On Sat, Oct 17, 2020, at 05:24, Gabriele wrote: > I am delighted to announce the release 2.0.0 of Austin. 👏 Applause! -- Jonathan Hartley USA, Central(UTC-5) @tartley http://tartley.com ___ python-uk mailing list python-uk@python.org ht

Re: [python-uk] A stack with better performance than using a list

2017-06-13 Thread Jonathan Hartley
On 06/13/2017 09:04 AM, Mark Lawrence via python-uk wrote: On 07/06/2017 18:50, Jonathan Hartley wrote: I recently submitted a solution to a coding challenge, in an employment context. One of the questions was to model a simple stack. I wrote a solution which appended and popped from the end

Re: [python-uk] A stack with better performance than using a list

2017-06-13 Thread Jonathan Hartley
mized version, but a pragmatic developer would, in my opinion, hesitate to do that without any actual evidence that the problem required it. Steve On Thu, Jun 8, 2017 at 5:27 PM Jonathan Hartley wrote: Yep, that's a great elimination of the suspicious small overheads. line_profiler i

Re: [python-uk] A stack with better performance than using a list

2017-06-13 Thread Jonathan Hartley
? (Likely to have been -1) Sam On Thu, 8 Jun 2017 at 17:27, Jonathan Hartley wrote: Yep, that's a great elimination of the suspicious small overheads. line_profiler is beautiful, I'll definitely be adding it to my toolbox, thanks for that! I tried a variant of accumulating the

Re: [python-uk] A stack with better performance than using a list

2017-06-08 Thread Jonathan Hartley
the add_to_first_n as a lazy operator (i.e. have a stack of the add_to_first_n values and dynamically add to the results of pop() but that would proabably be much slow in the average case. Steve On Wed, Jun 7, 2017 at 7:34 PM Jonathan Hartley <mailto:tart...@tartley.com>> wrote:

Re: [python-uk] A stack with better performance than using a list

2017-06-08 Thread Jonathan Hartley
Another thing that might help some situations (hence my previous questions) would be to implement the add_to_first_n as a lazy operator (i.e. have a stack of the add_to_first_n values and dynamically add to the results of pop() but that would proabably be much slow in the average case. Steve On W

Re: [python-uk] A stack with better performance than using a list

2017-06-08 Thread Jonathan Hartley
work threw a momentary wobbly while trying to load up some large text file off some remote cloud? Andy ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp:/

Re: [python-uk] A stack with better performance than using a list

2017-06-08 Thread Jonathan Hartley
than using a list, aren't deques more appropriate as a data structure for stack like behaviour. https://docs.python.org/3.6/library/collections.html#collections.deque Regards Simon On Wed, 7 Jun 2017, at 19:33, Jonathan Hartley wrote: Hey. Thanks for engaging, but I can't hel

Re: [python-uk] A stack with better performance than using a list

2017-06-07 Thread Jonathan Hartley
)? How did you convert from string inputs to numeric values? How did you manage return values? :D On Wed, Jun 7, 2017 at 6:51 PM Jonathan Hartley <mailto:tart...@tartley.com>> wrote: I recently submitted a solution to a coding challenge, in an employment context. One of th

[python-uk] A stack with better performance than using a list

2017-06-07 Thread Jonathan Hartley
at my slicing of 'tokens' to produce 'args' in the dispatch is needlessly wasting time. Not much, but some. Thoughts welcome, Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made out of meat. +1 507-513-1101

[python-uk] Using WSL for one month

2017-03-23 Thread Jonathan Hartley
tly this is fixable, because it's easy to get X running, but I've been too lazy, and have been working around it by occasionally *dragging* selected text between Windows/Linux applications, instead of using the clipboard. I hope this is useful or interesting

Re: [python-uk] Python Platform Developer - Counter Terrorism

2017-02-19 Thread Jonathan Hartley
/python-uk Seems to be safely negated by my own disclaimer. Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made out of meat. +1 507-513-1101twitter/skype: tartleyy READ CAREFULLY: By reading this email, you agree, on behalf of your employer, to release me

Re: [python-uk] Thanks all

2017-02-10 Thread Jonathan Hartley
_ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made out of meat. +1 507-513-1101twitter/skype: tartley ___ python-uk mailing

Re: [python-uk] Python services within existing .Net infrastructure

2017-02-01 Thread Jonathan Hartley
A humerous link sent by Harry Percival, related to this discussion: http://cube-drone.com/comics/c/encapsulation -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made out of meat. +1 507-513-1101twitter/skype: tartley

Re: [python-uk] Python services within existing .Net infrastructure

2017-02-01 Thread Jonathan Hartley
On 02/01/2017 01:05 AM, Steve - Gadget Barnes wrote: On 01/02/2017 04:25, Jonathan Hartley wrote: Thanks all. Hansel - Thank you, that makes sense. I actually already do a mini version of that at the place I'm leaving, but devs are only using Linux/Mac host machines, and we only a Lin

Re: [python-uk] Python services within existing .Net infrastructure

2017-01-31 Thread Jonathan Hartley
gigs of RAM. I mean you basically said this in your question. But it's really quite common. And would suit your Linux skills more. Scripting windows? I hear it's almost possible now? 😚 On Tue, 31 Jan 2017, 18:13 Jonathan Hartley, <mailto:tart...@tartley.com>> wrote:

Re: [python-uk] Python services within existing .Net infrastructure

2017-01-31 Thread Jonathan Hartley
etting up Linux VMs / containers but make things available on Windows. Keep in mind that .Net (and thus C#, F#) also run on Linux as well, and those VMs / containers tend to be cheaper overall. A On 31/01/17 15:02, Jonathan Hartley wrote: Hey all, I'm joining a small company with an ex

[python-uk] Python services within existing .Net infrastructure

2017-01-31 Thread Jonathan Hartley
or containers on the local host, so we can system test across all services. I fear heterogeneous server OSes will make significantly harder to do. They also want me to lead the charge on this sort of test setup, so this is going to be my problem. Thoughts welcome. Jonathan -- Jon

Re: [python-uk] Looking for new work buddies

2017-01-14 Thread Jonathan Hartley
list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made out of meat. +1 507-513-1101twitter/skype: tartley ___ python-uk mailing list python-uk@python.org

Re: [python-uk] Pyweek runs Feb-Mar: London team?

2016-02-04 Thread Jonathan Hartley
iling list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk Even if I don't get to contribute to an entry, I for one will be checking in to cheer from the sidelines! Jonathan -- Jonathan Hartley tart...@tartley.com +1 507-513-1101

[python-uk] repurposing python-uk artwork

2016-01-31 Thread Jonathan Hartley
e the very best Python related artwork I've ever seen is the PyCon UK graphics of the last few years, I'd love to re-use that and just plaster my own text on top, along the lines of "come to our local Python meetup!" If this is allowed, where could I get it? Jona

[python-uk] Senior Python dev wanted, TrialReach, South Bank, London

2015-07-17 Thread Jonathan Hartley
ovide is to our users. There are about 15 staff in the London office, about 30 worldwide. The formal job ad is at: http://trialreach.com/about/jobs/#6 Best regards, Jonathan -- Jonathan Hartley tart...@tartley.com (+44|0) 7737 062 225 ___ py

Re: [python-uk] Issue with unit tests in IntelliJ IDEA

2015-07-15 Thread Jonathan Hartley
iling list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley tart...@tartley.com (+44|0) 7737 062 225 ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Travelling to EuroPython 2015 by boat?

2015-03-23 Thread Jonathan Hartley
https://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley tart...@tartley.com (+44|0) 7737 062 225 ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] UK Python Training Day: Tuesday 9 December, Westminster, London

2014-12-08 Thread Jonathan Hartley
k= =cCQM -END PGP SIGNATURE- ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley tart...@tartley.com (+44|0) 7737 062 225 ___ python-uk m

[python-uk] Moar jobs at Made.com, againer!

2014-09-15 Thread Jonathan Hartley
. Come with us. Find out what you're Made of. (See what I did there? That was just off the cuff. I can do lots more like that.) Jonathan -- Jonathan Hartley @tartley : tart...@tartley.com (+44|0) 7737 062 225 ___ python-uk mail

Re: [python-uk] hexagonal Django

2014-08-15 Thread Jonathan Hartley
_ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk _______ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk -- Jonatha

Re: [python-uk] hexagonal Django

2014-08-13 Thread Jonathan Hartley
' in content: raise HttpError(401) return Response(content) ^ again, really easy to test. No deep nested logic, no need to mock or stub. [1] https://www.destroyallsoftware.com/talks/boundaries _______ python-uk mailing list python-uk@python.org h

[python-uk] Fwd: PyconUK 2014: IBIS hotel rooms now available

2014-07-17 Thread Jonathan Hartley
Forwarding as requested. Original Message Subject:[PyConUK-adm] Pycon UK 2014: Rooms at the IBIS Hotel Date: Tue, 15 Jul 2014 21:49:59 +0100 From: Mary Mooney To: pyconuk-...@python.org CC: h2793...@accor.com The IBIS hotel now has 35 rooms available for

[python-uk] OpenERP users (in London?)

2014-07-15 Thread Jonathan Hartley
re would be any interest in an OpenERP talk at skillsmatter or similar. Cheers, Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing

Re: [python-uk] TDD stuff in London, next two weeks (and list comprehension scoping)

2014-05-31 Thread Jonathan Hartley
ss bodies. They are the only enclosing scopes that are skipped in name lookups. You can still access class attributes of the class by using ClassName.attribute inside the list comprehension, like you would have to do to access class attributes from inside methods. Cheers, Sven _____

[python-uk] Python devs wanted at "Made", Notting Hill

2014-05-19 Thread Jonathan Hartley
's all leggy folks draped over sofas (showroom is onsite) and "flowers for the model" on expenses, which brightens up both office life and company pub trips. Hit me up if you're interested. Best regards, Jonathan Hartley -- Jonathan Hartleytart...@tart

Re: [python-uk] PyCon UK 2014

2014-04-15 Thread Jonathan Hartley
.net/Accommodation I tried to do it myself, but have lost my password somehow, and the 'reset your password' form is giving me an error. Ah, and now I can't get the error message due to surge protection... Let me know if you're interested in it. Jonathan On 14/04/14 22:46

Re: [python-uk] PyCon UK 2014

2014-04-14 Thread Jonathan Hartley
ollervey wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 14/04/14 21:42, Jonathan Hartley wrote: What's the advice for accommodation? The Ibis currently has rooms for £47.78/night, without breakfast. Are there plans for a conference rate in the works? Or ought we jump on this now?

Re: [python-uk] PyCon UK 2014

2014-04-14 Thread Jonathan Hartley
t too late ! Best wishes, John -- ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skyp

Re: [python-uk] Potato is hiring

2014-03-03 Thread Jonathan Hartley
mailing list > python-uk@python.org > https://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] copyright info in source

2013-10-07 Thread Jonathan Hartley
06/10/13 22:45, Harry Percival wrote: apologies for resurrecting a dead thread, but i came across this license and was impressed: http://unlicense.org/ On 12 September 2013 20:08, John Lee <mailto:j...@pobox.com>> wrote: On Wed, 11 Sep 2013, Jonathan Hartley wrote: [...]

Re: [python-uk] copyright info in source

2013-09-11 Thread Jonathan Hartley
ilman/listinfo/python-uk I don't think it should be a test runner plugin, so much as just a test. Maybe a big common utility function (in a pypi package) which a tiny custom test function can then call to parametrize it for your project. -- Jonathan Hartleytart...@tartley.comhttp://

Re: [python-uk] copyright info in source

2013-09-10 Thread Jonathan Hartley
r instructions in the appendix: http://www.apache.org/licenses/LICENSE-2.0 That notice should be included in every file, because each is a potentially independent work. Cheers, Doug. -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 22

Re: [python-uk] copyright info in source

2013-09-09 Thread Jonathan Hartley
You are cunning. Or maybe configure my editor to auto hide (fold?) such gubbins? But sadly I don't think I can justify the time to ingulge in such appealing trickery. A ten second Awk invocation it will be, followed by 'make release'. Jonathan Hartley http://tartley.com Dan

Re: [python-uk] copyright info in source

2013-09-09 Thread Jonathan Hartley
ointers on that. Jonathan Hartley http://tartley.com Russel Winder wrote: >On Mon, 2013-09-09 at 16:13 +0100, Jonathan Hartley wrote: >> Why would a file ever be seen out of context? Surely to make my source >> available without the LICENSE file is breaking the terms of my license,

Re: [python-uk] copyright info in source

2013-09-09 Thread Jonathan Hartley
being public domain. So yes a one liner as Andy has given is all you need, by having your name and year, any reference can be then looked up by anybody who is interested. On 9 September 2013 14:24, Andy Robinson <mailto:a...@reportlab.com>> wrote: On 9 September 2013 14:18, Jo

[python-uk] copyright info in source

2013-09-09 Thread Jonathan Hartley
_.py files). I've responded that I don't want to be unhelpful, but I don't believe in putting duplicate license and copyright info in every source code file. To my mind, it belongs in a single central place, i.e. the project LICENSE file. Am I being unreasonable and/or daft?

Re: [python-uk] Share a hotel room for PyCon UK?

2013-08-31 Thread Jonathan Hartley
Incidentally, the airbnb idea I tweeted about didnt pan out. They lied about location, it was way acros town. I wnded up in the Ramada, I think. On "The Butts" street. Sorry for typing, sleeping baby on lap and backspace is just out of reach. Jonathan Hartley http://tartley.com S

Re: [python-uk] Tangent Labs is hiring too

2013-08-07 Thread Jonathan Hartley
mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Python/Django opportunities - all levels - @ Hogarth Worldwide

2013-07-16 Thread Jonathan Hartley
n Hogarth Worldwide will be employing everyone on earth? We have some data points: - growing exponentially - 2008: 14 people - 2013: 700 people We probably need a third data point to fit a curve though... Hey, Ben, do you know how many employees they had in 2010? On 16 July 2013 13:

Re: [python-uk] Python/Django opportunities - all levels - @ Hogarth Worldwide

2013-07-16 Thread Jonathan Hartley
6872427. VAT No. 973 7879 46 ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley __

Re: [python-uk] The London Python Dojo is this Thursday

2013-07-15 Thread Jonathan Hartley
Whereas my buffoon status is very much still active. On 15/07/13 14:41, E Hartley wrote: Speaking as a recovering PM excluding blustering buffoons as team leaders takes it so far out of the realm of real life as to be almost like coding Nirvana. E On 15 Jul 2013, at 12:59, Jonathan Hartley

Re: [python-uk] The London Python Dojo is this Thursday

2013-07-15 Thread Jonathan Hartley
ht for a good exercise... new requirements are introduced at half time... and then 5 minutes before the end... like real life. On Jul 15, 2013 2:05 PM, "Jonathan Hartley" mailto:tart...@tartley.com>> wrote: I don't think this helps, but it's a model I think is

Re: [python-uk] Pycon schedule question

2013-07-15 Thread Jonathan Hartley
and Sunday. Is this correct? What about Friday? regards, Luis ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +

Re: [python-uk] The London Python Dojo is this Thursday

2013-07-15 Thread Jonathan Hartley
python-uk mailing list python-uk@python.org <mailto:python-uk@python.org> http://mail.python.org/mailman/listinfo/python-uk ___ python-uk mailing list python-uk@python.org <mailto:python-uk@python.org> http://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Reading list

2013-06-26 Thread Jonathan Hartley
k mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Londoners - interested by a pyramid meetup?

2013-04-03 Thread Jonathan Hartley
hon-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.pytho

[python-uk] gosh this is exciting

2013-01-08 Thread Jonathan Hartley
now Is Mr Foord READING ALL OUR EMAILS!?!?!?! Thank you all for providing a stream of giggles to brighten my day. -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley

Re: [python-uk] hexagonal Django

2012-12-13 Thread Jonathan Hartley
cely...) Chris On 06/12/2012 00:57, John Lee wrote: On Tue, 4 Dec 2012, Jonathan Hartley wrote: The last few weeks I've been thinking about the architectural pattern known as Clean, Onion, Hexagonal, or Ports'n'Adaptors <http://blog.8thlight.com/uncle-bob/2012/08/13/the-clean-arc

Re: [python-uk] [pyconuk] Python-UK Google Plus Community

2012-12-11 Thread Jonathan Hartley
Hugs, Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

[python-uk] Python-UK Google Plus Community

2012-12-10 Thread Jonathan Hartley
BqJfp0aIjlTLBDBlulZyDCyrLJ hg0FQVVZKxX586yEek3HJvH6gTcXjzaUwQsmIvDP67GL5UNImBPFcs+fcNTP2FIl BxDnvYJnPy/CJS6mXiYcBQgFX0GeiKjPsr2uVYQ5SuNWin4xR5X7Fqm97hrfErVj bfPVrmt7FVWne2nrbQWyNliGmcumzWhFPtT8+heHRc8a0vG76CqN98hLtX2CK60= =dewe -END PGP SIGNATURE- ___

Re: [python-uk] hexagonal Django

2012-12-05 Thread Jonathan Hartley
On 05/12/2012 13:08, Michael Foord wrote: On 5 Dec 2012, at 07:33, Chris Withers wrote: On 04/12/2012 17:46, Menno Smits wrote: On 2012-12-04 14:46, Jonathan Hartley wrote: I haven't, yet, but I'm thinking of refactoring a vertical slice of our monster Django app into this styl

[python-uk] hexagonal Django

2012-12-04 Thread Jonathan Hartley
tml). I'm curious if many people are applying it in the Django world? I haven't, yet, but I'm thinking of refactoring a vertical slice of our monster Django app into this style, and I'd love to hear if you think it's crazy / brilliant / obvious / old-hat, etc. Jonath

Re: [python-uk] Ho ho ho, the Christmas London Python Code Dojo

2012-11-29 Thread Jonathan Hartley
x it for me, or am I very confused? Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

[python-uk] Python job vacancy: Support engineer at Rangespan

2012-08-10 Thread Jonathan Hartley
ct selection. We have a small, ambitious team, based in Paddington, London. **Contact Info:** * **E-mail contact**: j...@rangespan.com * **Web**: https://www.rangespan.com/jobs/ * **No telecommuting** (but occasional days working from home OK when practical) -- Jonathan Hartleytart...@tart

Re: [python-uk] London Dojo Idea: Module of the Month / Lightning Talks

2012-03-19 Thread Jonathan Hartley
On 19/03/2012 22:15, David Neil wrote: On 20/03/12 03:16, James Broadhead wrote: On 19 March 2012 14:08, Jonathan Hartley wrote: On 19/03/2012 13:17, James Broadhead wrote: Perhaps a "no interactive demos" rule would be good, as these always take more time than you'd imagine

Re: [python-uk] London Dojo Idea: Module of the Month / Lightning Talks

2012-03-19 Thread Jonathan Hartley
videos from other events in that time slot(or from other Dojos etc.). ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat.

Re: [python-uk] PyCon By Video?

2012-03-19 Thread Jonathan Hartley
//mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Announcing the next London Python Code Dojo

2012-02-24 Thread Jonathan Hartley
thon-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartl

Re: [python-uk] Announcing the next London Python Code Dojo

2012-02-23 Thread Jonathan Hartley
tp://mail.python.org/mailman/listinfo/python-uk ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat.

[python-uk] Future Dojo idea ... randomised trials

2012-02-07 Thread Jonathan Hartley
ve members who were not practiced in it. But I can't help but wonder what results it would produce. Is anyone else curious? Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 tw

Re: [python-uk] Game of Life / TDD ideas

2012-02-07 Thread Jonathan Hartley
art of what a Dojo could be?) This gives me an idea for a future Dojo night. Separate post... Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___

Re: [python-uk] saturday london python dojos?

2012-01-31 Thread Jonathan Hartley
ython Dojo's that would happen on weekends. Personally, I could probably only make it 10% of the time at weekends. I much prefer a weeknight slot. Good luck to those of you who prefer it though, that shouldn't stop you. -- Jonathan Hartleytart...@tartley.comhttp://tartley.c

Re: [python-uk] QTableWidget - add from my files to table

2012-01-20 Thread Jonathan Hartley
to add those lines to it, instead of printing them. Best regards, Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list

Re: [python-uk] Python jobs at Rangespan

2011-06-22 Thread Jonathan Hartley
@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http

[python-uk] Python jobs at Rangespan

2011-06-22 Thread Jonathan Hartley
e don't use recruiters, because they don't match up to the quality of candidates we insist upon. If you want to work alongside the best of the best, drop us a line. I'm happy to answer casual questions personally, and if you want to make a formal application, see http://ranges

Re: [python-uk] Next week in London: Informal python pub meetup with YouGov

2011-05-10 Thread Jonathan Hartley
-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Want to join a PyWeek team?

2011-03-04 Thread Jonathan Hartley
__ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: tartley ___ python-uk mai

Re: [python-uk] Library for (undirected) graphs in Python?

2011-01-25 Thread Jonathan Hartley
o float) * Dict comprehensions: Mirroring list comprehensions, create dicts using "{k: v for k, v in stuff}" * no more confusion between int and long - everything is now an int (which behaves much like the old 'long' did) * no more confusion between old- and new-style classes, everyt

Re: [python-uk] Library for (undirected) graphs in Python?

2011-01-24 Thread Jonathan Hartley
list python-uk@python.org <mailto:python-uk@python.org> http://mail.python.org/mailman/listinfo/python-uk ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley Made of

Re: [python-uk] Announcing the next London Python Code Dojo

2011-01-04 Thread Jonathan Hartley
__ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley ___ pyt

Re: [python-uk] Tell us what you did with Python this year....

2010-12-21 Thread Jonathan Hartley
xt year, including one at PyCon AU 2011 if I can pluck up enough courage. John ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley Made of meat. http://tartley.com tart.

Re: [python-uk] Tell us what you did with Python this year....

2010-12-21 Thread Jonathan Hartley
On 21/12/2010 14:45, Michael Foord wrote: my favourites being contextlib.ContextDecorator I didn't know that had your fingerprints on it! Nice one - I love this and use it all the time. Jonathan -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com

Re: [python-uk] Tell us what you did with Python this year....

2010-12-21 Thread Jonathan Hartley
On 20/12/2010 16:51, Matt Hamilton wrote: On 20 Dec 2010, at 15:41, Jonathan Hartley wrote: clients with extremely large spreadsheets (which take hours to recalculate on Excel) *shudder* But that is what makes what you have done even more amazing :) I'm pretty sure spreadsheets of

Re: [python-uk] Tell us what you did with Python this year....

2010-12-20 Thread Jonathan Hartley
't the right solution for everyone), and that code-sharing between the projects will mean that improvements in one (e.g. in providing robust statistical functions, or more Excel-compatible functions) will also improve the other. Interested to hear anyone else's stories. Jonathan

Re: [python-uk] London Python Roles

2010-12-15 Thread Jonathan Hartley
ing python for a good language to write calculations/simulations of financial models. ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley Made of meat. http://tartley.com tart

Re: [python-uk] London Python Roles

2010-12-13 Thread Jonathan Hartley
he idea to create a separate UK jobs list. Jonathan Hartley http://tartley.com richard barran wrote: >On 13 Dec 2010, at 19:36, Tim Golden wrote: >> I'm genuinely surprised by this reaction which comes up >> even more forcefully on the main Python lists. It seems

[python-uk] A nascent London Python meetup group needs your input...

2010-11-23 Thread Jonathan Hartley
http://www.meetup.com/The-London-Python-Group-TLPG/ideas/541336/ That is all. -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk

[python-uk] PyCon co-presenter sought for OpenGL talk

2010-10-29 Thread Jonathan Hartley
ch time to help prepare), then let me know. Jonathan -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

[python-uk] pyweek is GO

2010-08-22 Thread Jonathan Hartley
wo of work to a team effort in the past, so you don't have to make a huge time commitment. Also, if you're in London, maybe we could get together and code in the same room & bounce ideas, even if we work on different entries. Best, Jonathan -- Jonathan Hartley Made of

Re: [python-uk] Python comparison matrix

2010-08-09 Thread Jonathan Hartley
f much use to you? What else would you like to see in such a document? Would you like to help out? Regards, Alex -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley ___ pytho

Re: [python-uk] easy_install pip won't work, am concerned Ministry of Packaging may chase after me.

2010-04-01 Thread Jonathan Hartley
sons why 'easy_install pip' is harmful in this context? By definition this install isn't into a virtualenv. Thanks, Jonathan Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley __

Re: [python-uk] Sudoku links & dojo ideas

2009-12-14 Thread Jonathan Hartley
Hey Toby, Which bit were you referring to? If it was the 'math lectures' bit, then I didn't want to miss you off the list. Was it that, or something else? Jonathan Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter

Re: [python-uk] Sudoku links & dojo ideas

2009-12-11 Thread Jonathan Hartley
Turing test... Cheers Ben ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley __

Re: [python-uk] Reminder: 3rd London Python Code Dojo Thursday 5th November

2009-10-30 Thread Jonathan Hartley
__ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley

Re: [python-uk] Reminder: London Python Code Dojo Tomorrow

2009-10-16 Thread Jonathan Hartley
__________ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] London Meetup

2009-10-13 Thread Jonathan Hartley
Anyone in favour of lunch in or around Clerkenwell (I have a bicycle) email me off-list. I'd be dead keen. Jonathan Carles Pina i Estany wrote: Hi, On Oct/10/2009, jonathan hartley wrote: Welcome to London Ciarán! Which end of town are you in? I'm in Camden, working in C

Re: [python-uk] London Meetup

2009-10-10 Thread jonathan hartley
thon.org/mailman/listinfo/python-uk -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 062 225 twitter/skype: tartley ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] 2nd London Python Dojo - 18:30 15 October 2009 at Fry-IT

2009-09-28 Thread Jonathan Hartley
again! Jonathan Hartley wrote: inline Jon Ribbens wrote: Also I'd like to put in a strong vote for part of the spec being that the game will allow human v human, human v computer, or computer v computer games (by entering "number of players: zero" ;-) ) We talked about this

Re: [python-uk] 2nd London Python Dojo - 18:30 15 October 2009 at Fry-IT

2009-09-28 Thread Jonathan Hartley
If you can figure out a way, I'd be open to the discussion, but I'd be wary that we might simply be retreading the discussion that was already had. -- Jonathan Hartley Made of meat. http://tartley.com tart...@tartley.com +44 7737 06

Re: [python-uk] Code dojos

2009-08-31 Thread jonathan hartley
ndon area, if there are none does anyone want to help me set one up? Greg ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] [pyconuk] Proposed PyCon UK UnConference, 5th September

2009-08-08 Thread jonathan hartley
er, but forgot about it. I imagine others also need reminding :) cu, ___ python-uk mailing list python-uk@python.org http://mail.python.org/mailman/listinfo/python-uk -- Jo

Re: [python-uk] [EuroPython] London Python Pub Night

2009-08-03 Thread jonathan hartley
To clarify: The proposal for Aug 20th is for other events as well as the dojo, lightning talks and the like, followed by the pub. So even if the dojo doesn't happen this time, the event itself is on like Donkey Kong regardless, is my guess. jonathan hartley wrote: Hi folks, The idea

  1   2   >