Re: [Tutor] Coursera Python Course starts today

2013-08-19 Thread Anung Ariwibowo
Just started today before catching bus to work. I will start this evening. Regards, Anung On 8/20/13, Leam Hall wrote: > A little cooperation is motivating. I have finished up Week 1 but I was > a few minutes late for work this morning! :) > > You? > > Leam > > On 08/19/2013 08:12 PM, barli...

Re: [Tutor] Coursera Python Course starts today

2013-08-19 Thread Anung Ariwibowo
This should go to the list Let's discuss our progress then, if it is allowed by list rules. I was just retake the course as well. Regards, Anung On 8/20/13, Leam Hall wrote: > Hey all, > > In case I'm not the absolute last person to know, the newest edition of > the Coursera "Learn to Program"

Re: [Tutor] [OT] Replies go to individuals, not the list?

2013-08-19 Thread Steven D'Aprano
On 20/08/13 10:18, Leam Hall wrote: All, Am I more confused than normal or if I click "Reply" should it go just to the sender instead of the list? Ah, the perennial argument about From address munging! Google for "From address munging considered helpful" and "From address munging considered

[Tutor] [OT] Replies go to individuals, not the list?

2013-08-19 Thread Leam Hall
All, Am I more confused than normal or if I click "Reply" should it go just to the sender instead of the list? Leam -- http://31challenge.net http://31challenge.net/insight ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscriptio

[Tutor] Coursera Python Course starts today

2013-08-19 Thread Leam Hall
Hey all, In case I'm not the absolute last person to know, the newest edition of the Coursera "Learn to Program" course started today. It is Python based, free, lasts 7 weeks, and pretty fun. I didn't get a certificate last time as life got in the way. Hope to succeed this time. https://clas

[Tutor] . http.server -- stuck at binding [windows8]

2013-08-19 Thread Engineering
Since you are behind a router , ipconfig will only show the address of your machine which has been given by the router. Ipconfig cannot see beyond the router. If you work within your own LAN , the IP address of your machine is sufficient for the socket. If you want to access from outside , ther

Re: [Tutor] I need a good resource for python Django

2013-08-19 Thread Russel Winder
On Sat, 2013-08-17 at 21:29 +0530, Arun Kumar wrote: > Hi, > > Can anyone suggest me a good resource for python Django. I've gone through > the official website of Django but it is of limited use to me. Any help on > this would be highly appreciated. You have given no indication as to why you con

Re: [Tutor] Error :SyntaxError: 'break' outside loop

2013-08-19 Thread Steven D'Aprano
Hello Zoya, and welcome! On Sun, Aug 18, 2013 at 10:18:06AM -0700, Zoya Tavakkoli wrote: > Hi everyone > > I write this code for color segmentation ,but after Run I recived this > error: > > SyntaxError: 'break' outside loop > > I could not resolve that ,could you please help me? Is the error

Re: [Tutor] http.server -- stuck at binding [windows8]

2013-08-19 Thread Chris Down
Hello, On 2013-08-18 10:40, shanmukhat...@gmail.com wrote: > I am developing a simple http media streamer with the help of simple http > server of http.server and I have a problem in binding the server. I get the > “the address is not valid in it’s content error” and I KNOW that it can be > solved

Re: [Tutor] Error :SyntaxError: 'break' outside loop

2013-08-19 Thread Chris Down
On 2013-08-19 10:55, Chris Down wrote: > On 2013-08-18 10:18, Zoya Tavakkoli wrote: > > if k == 27: > > > > break > > Well, you're not in a function here, so break doesn't make any sense. What is > it that you want to do? s/function/loop/ pgpV6iNWSeUjo.pgp Description: PGP signature ___

Re: [Tutor] Error :SyntaxError: 'break' outside loop

2013-08-19 Thread Chris Down
On 2013-08-18 10:18, Zoya Tavakkoli wrote: > if k == 27: > > break Well, you're not in a function here, so break doesn't make any sense. What is it that you want to do? pgpYkuuMtY52T.pgp Description: PGP signature ___ Tutor maillist - Tutor@python.o

[Tutor] Error :SyntaxError: 'break' outside loop

2013-08-19 Thread Zoya Tavakkoli
Hi everyone I write this code for color segmentation ,but after Run I recived this error: SyntaxError: 'break' outside loop I could not resolve that ,could you please help me? python.2.7.5 import cv2 import numpy as np cap = cv2.VideoCapture("C:\Users\Zohreh\Desktop\Abdomen.MST") while (1):

[Tutor] http.server -- stuck at binding [windows8]

2013-08-19 Thread shanmukhateja
Hello, I am developing a simple http media streamer with the help of simple http server of http.server and I have a problem in binding the server. I get the “the address is not valid in it’s content error” and I KNOW that it can be solved by socket.INADDR_ANY but the problem is my rou