wanna stop by my homemade glory hole?

2005-08-25 Thread Lacy
my husband is installing an extra bathroom poolside. there is a perfect size hole (unless you have a huge cock) to stick your dick through into the adjoing room. come around the side of my house(perfect if you look like a repair man) enter into the unfisnished bathroom and I'll service you fro

Static vs. dynamic checking for support of concurrent programming

2005-08-25 Thread Mike Meyer
The recent thread on threads caused me to reread the formal definition of SCOOP, and I noticed something I hadn't really impressed me the first time around: it's using staticly checkable rules to help ensure correct behavior in a concurrent environment. That's impressive. That's *really* impressiv

Re: Jargons of Info Tech industry

2005-08-25 Thread Denis Kasak
Mike Schilling wrote: > > I see a difference between "X would be useful for A, B, and C" and "Y will > always be the only proper way." > > Don't you? Y would not be useful because of the bandwidth it consumes, the malware it would introduce, the additional time spent focusing on the format ra

Re: Newbie question: Sub-interpreters for CAD program

2005-08-25 Thread sonicSpammersGoToHellSmooth
Hi, Actually I was thinking of doing the bulk of everything in Python, and then embedding a Python interpreter into the CAD program. Anything in C++ would be to speed up critical things, like rules checking, etc. I have looked at python cad (found it a year or two ago) and am inspired by it; I'm

Re: Jargons of Info Tech industry

2005-08-25 Thread John Bokma
Chris Head <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > [EMAIL PROTECTED] wrote: > [snip] >> ... and generally these "web based message boards" (i.e. forums I >> assume you mean) have none of the useful tools that Usenet offers and >> are much, much slower. > [

Re: Email client in Pyhton

2005-08-25 Thread knaren
> Start reading related RFCs like RFC2822, RFC2045/6/7, RFC2231, RFC821 > ... and then read Python documentation and you'll find that most of > these RFC are supported/implemented by python modules like > > - email > - smtlib > - rfc822 > > As far I know the most complete mail client written in

Re: Jargons of Info Tech industry

2005-08-25 Thread Chris Head
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John Bokma wrote: [snip] >>usage consists of downloading your e-mail. When using a Webmail >>service, your bandwidth usage consists of downloading the message, >>PLUS the entire user interface. > > > Not necessary when using (i)frames + cache True.

Re: Jargons of Info Tech industry

2005-08-25 Thread Mike Schilling
"Denis Kasak" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Mike Schilling wrote: >> >> I see a difference between "X would be useful for A, B, and C" and "Y >> will always be the only proper way." >> >> Don't you? > > Y would not be useful because of the bandwidth it consumes, t

Re: loop in python

2005-08-25 Thread travlr
I gotta say that as number cruncher, iteration in python is my biggest nightmare. I do what is possible with numpy, but element by element processing is a hassle. My programming experience is still pretty fresh at a year, so "exotics" as such are not in play yet. I also wish python looping/iterativ

Re: Email client in Pyhton

2005-08-25 Thread Oren Tirosh
> IIRC, many of the mailbox modules (such as mailbox and > mhlib) are read-only, but they should provide a good starting point. The mailbox module has recently been upgraded for full read-write access by a student participating in google's Summer of Code. It is currently under review for inclusion

Re: Jargons of Info Tech industry

2005-08-25 Thread Gordon Burditt
>>> HTML is designed to degrade gracefully (never mind that most web >>> authors and many browser developers don't seem to comprehend this), >>> so you don't really need a "subset" html to get the safety features >>> you want. All you need to do is disable the appropriate features in >>> the HTML r

Re: variable hell

2005-08-25 Thread Adriaan Renting
Not in my Python. >>> for count in range(0, 10): ... value = count ... exec("'a%s=%s' % (count, value)") ... >>> dir() ['__builtins__', '__doc__', '__name__', 'count', 'value'] >>> for count in range(0, 10): ... value = count ... exec(eval("'a%s=%s' % (count, value)")) ... >>> di

<    1   2   3