[python-uk] Fwd: TeX Hour tomorrow: Command Line and Text User interfaces, Python syntax errors

2022-03-09 Thread Jonathan Fine
/the-international-congress-of-mathematicians-icm-2022 with best regards Jonathan ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk

[python-uk] TeX Hour tonight: Better Technical Documentation: 18:30 UTC time

2022-02-24 Thread Jonathan Fine
python.org/pipermail/python-uk/2022-February/004828.html Tonight's TeX hour is from 6:30 to 7:30pm UK (and UTC) time. The UK time now: https://time.is/UK. The zoom URL is https://us02web.zoom.us/j/78551255396?pwd=cHdJN0pTTXRlRCtSd1lCTHpuWmNIUT09 wishing you bea

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/

[python-uk] Off-topic: Happy Birthday, Don Knuth (and Python coroutines)

2021-01-10 Thread Jonathan Fine
x27;s async and wait. with best wishes Jonathan ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Off-topic: TeX Office Hours (and Python)

2020-12-10 Thread Jonathan Fine
list didn't respond to sam's announcement of lambdatex. I've some unpublished ideas related to that problem. https://tug.org/pipermail/tex-live/2018-March/041304.html Also relevant is https://tug.org/tug2020/program.html # Talk by Yoan Tournade b

[python-uk] Off-topic: TeX Office Hours (and Python)

2020-12-10 Thread Jonathan Fine
sted in such tools (yours, mine, someone else's or yet to be developed), please do get in touch either on this list or by email. with best wishes Jonathan ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk

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] Python 2.7 code: a spring-clean

2019-12-04 Thread Jonathan Lange
We've had good luck using https://github.com/asottile/pyupgrade as a pre-commit hook (see https://pre-commit.com/ – highly recommended). We were already using Python 3, but it's helped us deal with some of the 3.n -> 3.n+1 upgrades. On Tue, 3 Dec 2019 at 21:23, Richard Barran wrote: > Hi all, >

Re: [python-uk] Python certification

2018-08-09 Thread Jonathan Fine
ttps://mail.python.org/mailman/listinfo/python-ideas I'm happy to post your query there, if you wish. -- Jonathan ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Welcome to the "python-uk" mailing list

2018-07-28 Thread Jonathan Fine
www.pythontutor.com/visualize.html#mode=edit They might help you a lot. Good luck. -- Jonathan ___ python-uk mailing list python-uk@python.org https://mail.python.org/mailman/listinfo/python-uk

Re: [python-uk] Benevolent Dictator On Permanent Vacation

2018-07-12 Thread Jonathan Fine
hose of us who are not core developers might like, at PyconUK, to think about how we can help support the process. Over the next few days I'll look over the python-committers thread again. with best wishes Jonathan On Thu, Jul 12, 2018 at 6:44 PM, S Walker wrote: > While it's

Re: [python-uk] Fwd: [PSF-Community] Python Software Foundation Survey

2018-07-05 Thread Jonathan Fine
Hi I've just completed the survey. It took a couple of minutes. I hope my answers are useful. I think Jon Ribbens has been a bit hard on the survey (which however does have faults). Creating and running surveys is hard, so credit to the PSF for giving it a go. Jonathan On Tue, Jul 3, 2018

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
things, your solution of pushing those markers onto the stack makes me feel silly for not realising sooner. Thanks to everyone for the interesting discussion. Jonathan On 2017-06-08 13:17, Stestagg wrote: I tracked down the challenge on the site, and have a working solution (I won&#x

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
ting is already buffered. Jonathan On 6/8/2017 03:54, Stestagg wrote: I honestly can't see a way to improve this in python. My best solution is: def main(lines): stack = [] sa = stack.append sp = stack.pop si = stack.__getitem__ for line in lines: meth =

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
#x27;ve come to understand, the future. (This is the shop I asked for advice about last week that is currently C# and F# but want me to add some Python services) Jonathan On 02/10/2017 07:26 AM, Hansel Dunlop wrote: Hello Thanks for everyone's help with the job search last month. I can h

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
get involved in the Python. Would get us up and running quicker, rather than figuring out every combo of host and VM OS. But maybe expand into doing the full monty you describe if there's ever more than just me who would like to work from Linux (or if I get sick of working in a VM the w

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
Sorry to hear that Hansel! For what it's worth: My otherwise wonderful London employer, antidote.me, under a new CTO's vision, is cutting back on remote developers, namely me. So, me too! Race you! Jonathan On 01/13/2017 08:37 AM, Hansel Dunlop wrote: Hello Python friends! T

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] Job Ad: Senior Python Engineers -Skimlinks - London

2015-02-04 Thread Jonathan Lange
I seem to recall a debate about this a little while ago. I'm in favour of dropping the munging. Obligatory link to http://www.unicom.com/pw/reply-to-harmful.html On Wed Feb 04 2015 at 2:17:22 PM Andy Robinson wrote: > I'm one of the list admins. There are a couple of others. Happy to > make a

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
there is, but again, I'm not sure this value is greater than zero if you *already* have well thought-out mechanisms for plugging in fake external systems. Jonathan On 15/08/14 11:22, Harry Percival wrote: Thanks Peter! I was speaking to Brandon at Pycon this year and he was telli

Re: [python-uk] hexagonal Django

2014-08-13 Thread Jonathan Hartley
e weren't being very smart about managing our dependencies, and force us to limit them more than we previously had. Jonathan On 13/08/14 11:32, James Broadhead wrote: On 13 August 2014 08:17, Peter Inglesby wrote: I'm starting my week-long exercise on trying it out on a sli

[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
Thanks for the breakfast reminder Nicolas. The rate I quoted is the average per night with the 3 for 2 deal. I think I might research the B&B's a few hundred yards away. I'll let the list and the wiki know what I find out. Jonathan On 14/04/14 22:41, Nicholas H.T

Re: [python-uk] PyCon UK 2014

2014-04-14 Thread Jonathan Hartley
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? Thanks for any info, Jonathan On 14/04/14 19:08, John Pinner wrote: Hello All, Hoping tha

Re: [python-uk] Potato is hiring

2014-03-03 Thread Jonathan Hartley
Potato's jobs web page says " Please let us know whether a freelance or fulltime position is preferable, too." https://p.ota.to/jobs/senior-django-developer-london/ Cheers, Jonathan On 28/02/14 12:51, lsmit...@hare.demon.co.uk wrote: Hi: My cv is at http://www.hare.demo

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] Trip to Bletchley Park

2013-09-26 Thread Jonathan Fine
and to GPO communication lines. Jonathan On Thu, Sep 26, 2013 at 1:24 PM, David Nicholas Snowdon < dave.snow...@gmail.com> wrote: > Count me in too. > Dave > > Sent from my iPhone > > On 26 Sep 2013, at 11:01, Luis Visintini wrote: > > I can make it no problem.

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
to answer. Presumably the ':::text' boilerplate prefix just an erroneous markup snafu? Jonathan On 10/09/13 10:02, Doug Winter wrote: On 09/09/13 19:53, Russel Winder wrote: Sadly, although it would be nice to have a file that says it applies to all files and so be very DRY, this

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
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, so I'm not sure why I ought to jump through hoops just to cater for such people. Am I wrong? Jonathan On 09/09/13 14:30, Martin P. He

[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
FWIW, I went to interview at Tangent Labs a few months ago and they seemed to me to be the most technically astute and engaging team out of all the places I looked at. Highly recommended. Jonathan On 07/08/13 14:32, David Winterbottom wrote: Another recruitment email sorry. Tangent

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

2013-07-16 Thread Jonathan Hartley
<mailto:ben.curw...@hogarthww.com>> Subject: Re: [python-uk] Python/Django opportunities - all levels - @ Hogarth Worldwide Excellent nitpick Jonathan! Shame you accidentally a word, which weakened your monocle-adjusting second sentence somewhat. .. I wonder if we can estimate how soo

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

2013-07-16 Thread Jonathan Hartley
> exponentially Really? With respect to time? So they only want a small number of new people to begin with, but will want a rapidly number towards the end of the project? How curious. Jonathan Pedant / Smartarse On 16/07/13 11:03, Ben Curwood wrote: Morning All, Hogarth Worldw

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
I guess that makes sense: With the dojo we want to encourage participation, whereas with the game challenges I was thinking of, they are optimised to producing finished, working projects (where a proven track record is a good positive indicator.) Jonathan On 15/07/13 13:33, Stestagg

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
* projects which are popular are allocated correspondingly generous personpower. The disadvantages are: * It isn't remotely relevant to our current dojo format * It doesn't give even distribution of team sizes Jonathan On 12/07/13 20:53, xtian wrote: I like the sound of this - Scraph

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] The perils of reply-to

2013-01-03 Thread Jonathan Lange
On Thu, Jan 3, 2013 at 11:40 AM, Andy Robinson wrote: > As a list admin I supposed I ought to ask this again. > > Currently the emails are set to 'reply to the list' by default. It > used to be 'reply to sender' but too many people found they were doing > just that and cutting off conversations,

Re: [python-uk] hexagonal Django

2012-12-13 Thread Jonathan Hartley
se/network code from my business logic. I'm starting my week-long exercise on trying it out on a slice of our existing Django monster. I'll report back. Jonathan On 10/12/2012 19:02, Chris Withers wrote: Yeah, what he said :-) (joking aside, John has summed this all up very ni

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
ion of the new python-uk Google+ "community" page, and whether it is a good thing, or might fragment the python-uk mailing list community. My actual comment is inline below. Jonathan On 10/12/2012 17:15, Nicholas H.Tollervey wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi

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
brainstorm venues? Jonathan On 19/03/2012 12:13, Rami Chowdhury wrote: Hey everyone, A couple of years ago my then-local Python user group had an afternoon-long mini-PyCon -- we watched a few of the talk videos, argued about them, and generally had a good time and learned a lot. It was

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
Not formally, but I'll keep one. You're the first entry on it. There's usually one or two dropouts in the last 48 hours, I'll let you know. Jonathan On 23/02/2012 13:16, Colin Hill wrote: Hi All, Sugar, just missed last one, is there a waiting list? Regards, Colin F

[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] memoize & ordering of kwargs.items()

2011-11-11 Thread Jonathan
On 11/11/2011 11:14, Jonathan wrote: On 11/11/2011 09:35, Jonathan wrote: On 11/11/2011 09:24, Duncan Booth wrote: pick keys that that hash to the same value modulo the size of the dictionary. Since the dictionary copy copies the keys in the order they are stored you will get the same hash

Re: [python-uk] memoize & ordering of kwargs.items()

2011-11-11 Thread Jonathan
On 11/11/2011 09:35, Jonathan wrote: On 11/11/2011 09:24, Duncan Booth wrote: pick keys that that hash to the same value modulo the size of the dictionary. Since the dictionary copy copies the keys in the order they are stored you will get the same hash conflict in the copy as the original

Re: [python-uk] memoize & ordering of kwargs.items()

2011-11-11 Thread Jonathan
On 11/11/2011 09:34, René Dudfield wrote: On Fri, Nov 11, 2011 at 10:23 AM, Jonathan <mailto:tart...@tartley.com>> wrote: That's good to know René, but I *think* it's orthogonal to the question. Please correct me if I'm wrong. If PyPy returns items in a diff

Re: [python-uk] memoize & ordering of kwargs.items()

2011-11-11 Thread Jonathan
being 'lucky' in my choices of dict keys. I believe this is the answer I am looking for. René & Ross's point about being mindful of different implementations is still very pertinent in my mind, but I'm happy for now. Thanks everyone! Jonathan -- Jonathan Hartle

Re: [python-uk] memoize & ordering of kwargs.items()

2011-11-11 Thread Jonathan
ding-order-of-items()) I agree that 'to be sure' is enough of a justification for including the 'sorted' call anyway. But it irks me that I can't write a test to show it. Jonathan On 11/11/2011 08:50, Ross Lawley wrote: Hi, From the docs: http://docs.python

Re: [python-uk] memoize & ordering of kwargs.items()

2011-11-11 Thread Jonathan
n real life, so the need for this whole test disappears. See also my imminent reply to Ross. Jonathan On 11/11/2011 08:49, René Dudfield wrote: Good morning, 1. Run it on different versions of python, or on different machines/OSes. That usually results in different dictionary ordering.

Re: [python-uk] memoize & ordering of kwargs.items()

2011-11-11 Thread Jonathan
oops. wrong list. sorry all. The question still stands though, if anyone's interested. On 11/11/2011 08:42, Jonathan wrote: Hey, I've been writing my own 'memoize' function a lot recently - I'm using it as an interview question. Here's what I've got (w

[python-uk] memoize & ordering of kwargs.items()

2011-11-11 Thread Jonathan
er these dictionaries directly into the 'kwargs' of wrapper, then I think I'd be done. However, I have to pass these dictionaries in to wrapper via the '**' mechanism. Printing 'kwargs.items()' within 'wrapper' shows that equal dictionaries always retur

[python-uk] Announcing the London Python Coding Dojo - Thu 3rd November

2011-10-30 Thread Jonathan
models, and how to solve them using optimistic locking. If YOU have a topic you'd like to present to the group for a few minutes, let us know, either on the python-uk list, or using the contact details on the event page linked above. Looking forward, see you all there! Jonathan -- Jona

Re: [python-uk] Dojo / workshop on "TDD Django with Selenium" - any interest?

2011-10-13 Thread Jonathan
Here at Rangespan we're all very interested. You'd have two or more attendees from here. Jonathan On 13/10/2011 17:26, Harry Percival wrote: Hi-ho python peeps, Would anyone be interested in a dojo / worksop on the topic of test-driven Django development, with Selenium?

Re: [python-uk] The BBC and Python

2011-10-07 Thread Jonathan Fine
Ln47lM8 I hope this helps. Jonathan On Fri, Oct 7, 2011 at 11:11 AM, Nicholas Tollervey wrote: > Hey Folks, > > It has been brought to my attention that the BBC *are* actually making > moves in the area of programming in schools (viz. what happened at > PyconUK). > > I&#

Re: [python-uk] Python Dojo in Reading?

2011-10-05 Thread Jonathan
ll be announced here on python-uk every month: https://ldnpydojo.eventwax.com/london-python-code-dojo-season-4-episode-1 Jonathan -- Jonathan Hartleytart...@tartley.comhttp://tartley.com Made of meat. +44 7737 062 225 twitter/skype: ta

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

[python-uk] Python jobs at Rangespan

2011-06-21 Thread Jonathan
judged to be really attractive. I'm happy to answer casual questions personally, or take receipt of applications. Our formal job postings information is here: http://rangespan.com/jobs/ but in practice I think we'd be a little flexible about roles for the right applicant. Best rega

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

  1   2   >