Re: Python presentations

2012-09-13 Thread 88888 Dihedral
Chris Angelico於 2012年9月14日星期五UTC+8上午6時39分25秒寫道: > On Fri, Sep 14, 2012 at 8:33 AM, Alexander Blinne wrote: > > > On 13.09.2012 21:01, 8 Dihedral wrote: > > >> def powerlist(x, n): > > >> # n is a natural number > > >> result=[] > > >> y=1 > > >> for i in xrange(n): >

Re: hi

2012-09-13 Thread alex23
On Sep 14, 3:44 pm, Dwight Hutto wrote: > CEO:http://www.hitwebdevelopment.com I don't know what gives more of a negative impression of your business, your acting like a tedious douchebag or the website itself. -- http://mail.python.org/mailman/listinfo/python-list

Re: Comparing strings from the back?

2012-09-13 Thread alex23
On Sep 14, 3:39 pm, Dwight Hutto wrote: > Please explain any logic whatsoever that would give you that conclusion. Well, this: > I think you're referring to a play on words(ramit). Using foreign names derogatively is a common tactic of the racist. > Ain't I so punny. Not really, no. -- http:

Re: Guides for communicating with business accounting systems

2012-09-13 Thread Ben Finney
Emile van Sebille writes: > The only standard I'm aware of is the EDI specification which I first > encountered in the mid 70's and which is updated routinely. The full > spec is the size of a telephone book (do they even still make those?) Thanks, that's something to look into. And yes, in Melb

Re: How to implement a combo Web and Desktop app in python.

2012-09-13 Thread Dieter Maurer
Shawn McElroy writes: > ... > So I need to find a way I can implement this in the best way... It is in general very difficult to say reliable things about the "best" way. Because, that depends very much on details. My former employer has created a combo destop/online application based on "Zope"

Re: Guides for communicating with business accounting systems

2012-09-13 Thread Chris Angelico
On Fri, Sep 14, 2012 at 4:28 PM, Ben Finney wrote: > Chris Angelico writes: > >> Don't use MySQL. :) Okay, that's hardly a *rule*, but it's a strong >> recommendation. > > That's another struggle we have in our future, unfortunately. We moved from MySQL to PostgreSQL a little while ago, and have

Re: Decorators not worth the effort

2012-09-13 Thread Dieter Maurer
> On Sep 14, 3:54 am, Jean-Michel Pichavant > wrote: >> I don't like decorators, I think they're not worth the mental effort. Fine. I like them because they can vastly improve reusability and drastically reduce redundancies (which I hate). Improved reusability and reduced redundancies can make a

Re: How to implement a combo Web and Desktop app in python.

2012-09-13 Thread Shawn McElroy
This does help. I have not determined if I will make a native UI for the desktop yet. To start I just figured I would use the web based interface, and if needed, use something like qt, or wx. As for the ability to drag items into the user interface, there are javascript libraries that can handle

<    1   2