Re: Interest not met.

2008-07-03 Thread Adam Lanier
david odey wrote: I write to inform you that the reason I subscribed to this web page is not been met. I want to be sent sample codes in programming languages especially python and an email tutorial on C#. I will be happy if these demands are met. Thanks in anticipation. ALWAYS THERE F

Re: lotus nsf to mbox

2007-12-18 Thread Adam Lanier
On Tue, 2007-12-18 at 19:25 +, Fabian Braennstroem wrote: > Hi to all, > > thanks, I'll try your suggestions... > > Regards! > Fabian > > Brian Munroe schrieb am 12/15/2007 07:10 PM: > > Well, If you wish to go that route, I believe you will have to reverse > > engineer the Notes Database bi

Re: How to best send email to a low volume list?

2007-10-24 Thread Adam Lanier
On Wed, 2007-10-24 at 16:54 +, chris wrote: > I need to maintain a list of subscribers to an email list for a > "newsletter" that will be sent via a web form probably once a month. > I anticipate low numbers--tens to maybe one hundred subscribers at the > most. Just curious what the best way t

Re: RegEx question

2007-10-04 Thread Adam Lanier
On Thu, 2007-10-04 at 10:58 -0500, Robert Dailey wrote: > It should also match: > > @param[out] state Some description of this variable > > > On 10/4/07, Robert Dailey <[EMAIL PROTECTED]> wrote: > Hi, > > The following regex (Not including the end quotes): > >

Re: Class design question

2007-10-03 Thread Adam Lanier
On Wed, 2007-10-03 at 18:47 +, George Sakkis wrote: > > > > I would use variable argument list for this; it's also consistent with > > your example Foo( 'baz', Bar( 'something else' )), otherwise you need > > to call it as Foo([ 'baz', Bar( 'something else' ) ]) Good point, this is what was tr

Class design question

2007-10-03 Thread Adam Lanier
Relatively new to python development and I have a general question regarding good class design. Say I have a couple of classes: Class Foo: params = [ ] __init__( self, param ): ... Class Bar: data = None __init__( se