Re: Feedback on my python framework I'm building.

2012-10-15 Thread Roel Schroeven
MRAB schreef: On 2012-10-14 23:38, Dave Angel wrote: On 10/14/2012 08:48 AM, Roy Smith wrote: In article <507a3365$0$6574$c3e8da3$54964...@news.astraweb.com>, Steven D'Aprano wrote: Remember using PEEK and POKE commands with BASIC back in 1978? Pretty much impossible in Python. But, trivia

Re: Feedback on my python framework I'm building.

2012-10-14 Thread MRAB
On 2012-10-14 23:38, Dave Angel wrote: On 10/14/2012 08:48 AM, Roy Smith wrote: In article <507a3365$0$6574$c3e8da3$54964...@news.astraweb.com>, Steven D'Aprano wrote: Remember using PEEK and POKE commands with BASIC back in 1978? Pretty much impossible in Python. But, trivial to implement

Re: Feedback on my python framework I'm building.

2012-10-14 Thread Dave Angel
On 10/14/2012 08:48 AM, Roy Smith wrote: > In article <507a3365$0$6574$c3e8da3$54964...@news.astraweb.com>, > Steven D'Aprano wrote: > >> Remember using PEEK and POKE commands with BASIC back in >> 1978? Pretty much impossible in Python. > But, trivial to implement as an extension :-) PEEK and

Re: Feedback on my python framework I'm building.

2012-10-14 Thread Roy Smith
In article <507a3365$0$6574$c3e8da3$54964...@news.astraweb.com>, Steven D'Aprano wrote: > Remember using PEEK and POKE commands with BASIC back in > 1978? Pretty much impossible in Python. But, trivial to implement as an extension :-) -- http://mail.python.org/mailman/listinfo/python-list

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Chris Angelico
On Sun, Oct 14, 2012 at 2:37 PM, Steven D'Aprano wrote: > On Sun, 14 Oct 2012 05:33:40 +1100, Chris Angelico wrote: > >> Forcing programmers to work in one particular style is usually not the >> job of the language/framework/library. > > Have you actually programmed before? > > *grin* > > I've nev

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Steven D'Aprano
On Sun, 14 Oct 2012 05:33:40 +1100, Chris Angelico wrote: > Forcing programmers to work in one particular style is usually not the > job of the language/framework/library. Have you actually programmed before? *grin* I've never come across a language/framework/library that DOESN'T force progra

Re: Feedback on my python framework I'm building.

2012-10-13 Thread MRAB
On 2012-10-14 03:25, Steven D'Aprano wrote: On Sat, 13 Oct 2012 15:24:04 -0700, nbvfour wrote: On Saturday, October 13, 2012 2:33:43 PM UTC-4, Chris Angelico wrote: Nice theory, but this is the bit that I fundamentally disagree with. Forcing programmers to work in one particular style is usua

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Steven D'Aprano
On Sat, 13 Oct 2012 15:24:04 -0700, nbvfour wrote: > On Saturday, October 13, 2012 2:33:43 PM UTC-4, Chris Angelico wrote: >> >> Nice theory, but this is the bit that I fundamentally disagree with. >> Forcing programmers to work in one particular style is usually not the >> job of the language/fr

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Oscar Benjamin
On 13 October 2012 17:48, Chris Angelico wrote: > > The only way to support *absolutely everything* is to do nothing - to > be a framework so thin you're invisible. (That's not to say you're > useless; there are bridge modules that do exactly this - ctypes can > call on any library function from P

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Chris Angelico
On Sun, Oct 14, 2012 at 9:24 AM, wrote: > On Saturday, October 13, 2012 2:33:43 PM UTC-4, Chris Angelico wrote: >> >> Nice theory, but this is the bit that I fundamentally disagree with. >> Forcing programmers to work in one particular style is usually not the >> job of the language/framework/lib

Re: Feedback on my python framework I'm building.

2012-10-13 Thread nbvfour
On Saturday, October 13, 2012 2:33:43 PM UTC-4, Chris Angelico wrote: > > Nice theory, but this is the bit that I fundamentally disagree with. > Forcing programmers to work in one particular style is usually not the > job of the language/framework/library. That should be up to the > programmer, or

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Chris Angelico
On Sun, Oct 14, 2012 at 5:18 AM, wrote: > On Saturday, October 13, 2012 12:48:23 PM UTC-4, Chris Angelico wrote: >> No, I don't, because I haven't tried to use it. But allow me to give >> two examples, one on each side of the argument. >> >> The 'tee' utility is primarily for writing a pipe to di

Re: Feedback on my python framework I'm building.

2012-10-13 Thread nbvfour
On Saturday, October 13, 2012 12:48:23 PM UTC-4, Chris Angelico wrote: > No, I don't, because I haven't tried to use it. But allow me to give > two examples, one on each side of the argument. > > The 'tee' utility is primarily for writing a pipe to disk AND to > further pipelining, for instance:

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Chris Angelico
On Sun, Oct 14, 2012 at 2:57 AM, wrote: > Do you have an example of a task that giotto can't handle that other > frameworks can? One of my goals is to have this framework "turing complete" > in the sense that everything that other frameworks can do, giotto should be > able to do. I think my co

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Etienne Robillard
On Sat, 13 Oct 2012 08:57:47 -0700 (PDT) nbvf...@gmail.com wrote: > Do you have an example of a task that giotto can't handle that other > frameworks can? One of my goals is to have this framework "turing complete" > in the sense that everything that other frameworks can do, giotto should be >

Re: Feedback on my python framework I'm building.

2012-10-13 Thread nbvfour
On Saturday, October 13, 2012 10:13:22 AM UTC-4, Chris Angelico wrote: > On Sat, Oct 13, 2012 at 3:49 PM, wrote: > > > Basically its a framework that forces the developer(s) to strictly separate > > the model from the view and controller. You can 'hook up' multiple > > controllers to a project

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Etienne Robillard
On Sun, 14 Oct 2012 01:12:30 +1100 Chris Angelico wrote: > On Sat, Oct 13, 2012 at 3:49 PM, wrote: > > Basically its a framework that forces the developer(s) to strictly separate > > the model from the view and controller. You can 'hook up' multiple > > controllers to a project. The model lay

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Chris Angelico
On Sat, Oct 13, 2012 at 3:49 PM, wrote: > Basically its a framework that forces the developer(s) to strictly separate > the model from the view and controller. You can 'hook up' multiple > controllers to a project. The model layer can be completely mocked out so > front end designers don't hav

Re: Feedback on my python framework I'm building.

2012-10-13 Thread Etienne Robillard
On Fri, 12 Oct 2012 21:49:55 -0700 (PDT) nbvf...@gmail.com wrote: > http://giotto.readthedocs.org/en/latest/tutorial.html > > Can someone give me some feedback on what they think of this framework? I > came up with the idea of this framework a few months ago. I gave a talk at a > local python u

Re: feedback on function introspection in argparse

2009-11-14 Thread Chris Withers
Yuv wrote: On Nov 8, 1:33 am, Carl Banks wrote: Is the docstring expected to be formatted according to some convention? We tried to comply to PEP 257 and we're open to suggestions on this. I'd suggest at the very least supporting Sphinx docstrings that have the parameters in them... Chri

Re: feedback on function introspection in argparse

2009-11-07 Thread Carl Banks
On Nov 7, 3:44 pm, Yuv wrote: > On Nov 8, 1:33 am, Carl Banks wrote: > > > Is the docstring expected to be formatted according to some > > convention? [snippage] > We tried to comply to PEP 257 and we're open to suggestions on this. Ah, so we finally get to the answer: the convention is PEP 2

Re: feedback on function introspection in argparse

2009-11-07 Thread Yuv
On Nov 8, 1:33 am, Carl Banks wrote: > Is the docstring expected to be formatted according to some > convention? Yes it does, we parse the docstring as explained in argparse.py: def _parse_docstring(function): """Parses a function's docstring for a description of the function and for help

Re: feedback on function introspection in argparse

2009-11-07 Thread Carl Banks
On Nov 7, 2:45 pm, Yuv wrote: > This was posted to the argparse mailing list by Steven Bethard and now > we'd like some feedback from comp.lang.python. > > We now have a branch[5] of argparse that supports an ``argparse.run`` > function[6] which does > some function introspection to build a comman

Re: feedback on function introspection in argparse

2009-11-07 Thread geremy condra
On Sat, Nov 7, 2009 at 5:45 PM, Yuv wrote: > This was posted to the argparse mailing list by Steven Bethard and now > we'd like some feedback from comp.lang.python. > > We now have a branch[5] of argparse that supports an ``argparse.run`` > function[6] which does > some function introspection to b

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-02 Thread Alf P. Steinbach
* Rhodri James: On Mon, 02 Nov 2009 00:49:50 -, Alf P. Steinbach wrote: * Rhodri James: On Sun, 01 Nov 2009 21:20:20 -, Alf P. Steinbach wrote: * Rhodri James: This is a weird attribution style, by the way. I don't think it helps. That's a pretty weird thing to comment on.

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-02 Thread Rhodri James
On Mon, 02 Nov 2009 00:49:50 -, Alf P. Steinbach wrote: * Rhodri James: On Sun, 01 Nov 2009 21:20:20 -, Alf P. Steinbach wrote: * Rhodri James: This is a weird attribution style, by the way. I don't think it helps. That's a pretty weird thing to comment on. And as far as I

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Pascal J. Bourguignon
Thad Smith writes: > Richard Heathfield wrote: > >> ... so I cheerfully installed it on the user's desktop machine >> (Windows ME, would you believe), and then set about configuring the >> reader, when... ouch! No PDF reader on the machine. Not even an >> ancient Adobe version. Oh dear. Program s

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Thad Smith
Richard Heathfield wrote: ... so I cheerfully installed it on the user's desktop machine (Windows ME, would you believe), and then set about configuring the reader, when... ouch! No PDF reader on the machine. Not even an ancient Adobe version. Oh dear. Program suddenly rendered completely use

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Alf P. Steinbach
* Rhodri James: On Sun, 01 Nov 2009 21:20:20 -, Alf P. Steinbach wrote: * Rhodri James: This is a weird attribution style, by the way. I don't think it helps. That's a pretty weird thing to comment on. And as far as I can see the comment doesn't make sense except as an attempt to f

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Rhodri James
On Sun, 01 Nov 2009 21:20:20 -, Alf P. Steinbach wrote: * Rhodri James: This is a weird attribution style, by the way. I don't think it helps. On Fri, 30 Oct 2009 03:26:45 -, Alf P. Steinbach wrote: * Rhodri James: On Thu, 29 Oct 2009 16:53:05 -, Alf P. Steinbach wrot

Re: Feedback desired on reworked ch 1 progr. intro (now Python 3.x, Windows)

2009-11-01 Thread Alf P. Steinbach
* Rhodri James: Before we start, can I just say that I find Google Docs loathsome? On Sat, 31 Oct 2009 07:40:36 -, Alf P. Steinbach wrote: I hope this new version of ch 1 is, well, better, addresses some of the concerns raised? Section 1.1 needs serious work. Could you please expan

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Alf P. Steinbach
* Rhodri James: On Fri, 30 Oct 2009 03:26:45 -, Alf P. Steinbach wrote: * Rhodri James: On Thu, 29 Oct 2009 16:53:05 -, Alf P. Steinbach wrote: with the best knowledge of the program's environment, is unable to handle (such as delete) files or folders with paths greater than some

Re: Feedback desired on reworked ch 1 progr. intro (now Python 3.x, Windows)

2009-11-01 Thread Rhodri James
Before we start, can I just say that I find Google Docs loathsome? On Sat, 31 Oct 2009 07:40:36 -, Alf P. Steinbach wrote: I hope this new version of ch 1 is, well, better, addresses some of the concerns raised? Section 1.1 needs serious work. You have a very assertive writing styl

Re: Feedback wanted on programming introduction (Python in Windows)

2009-11-01 Thread Rhodri James
On Fri, 30 Oct 2009 03:26:45 -, Alf P. Steinbach wrote: * Rhodri James: On Thu, 29 Oct 2009 16:53:05 -, Alf P. Steinbach wrote: with the best knowledge of the program's environment, is unable to handle (such as delete) files or folders with paths greater than some 260 character

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* alex23: "Alf P. Steinbach" wrote: And no, I didn't do any research on that. If it mattered more (e.g. appearing as statement in the text) I'd have done that. The nice thing about Usenet is that people rush in to correct things. ;-) http://xkcd.com/386/> Unfortunately, the idiocy people say

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread alex23
"Alf P. Steinbach" wrote: > And no, I didn't do any research on that. If it mattered more (e.g. appearing > as > statement in the text) I'd have done that. The nice thing about Usenet is that > people rush in to correct things. ;-) http://xkcd.com/386/> Unfortunately, the idiocy people say on th

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Richard Heathfield
In , Alf P. Steinbach wrote: > I'm very very happy that most comments about perceived defects in > the text and in my responses here, have only disagreements over > terminology. I had expected a slew of errors being pointed out, > since I'm new to Python. Still, I'm fairly sure that there > ac

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* Mensanator: On Oct 30, 2:07 pm, "Alf P. Steinbach" wrote: * bartc: Python has a lot of baggage which is OK if that's what's going to be used, but otherwise is unnecessary confusion: where to put the program code (typed in live or in a file, or some combination); whether to call the file .

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Mensanator
On Oct 30, 2:07 pm, "Alf P. Steinbach" wrote: > * bartc: > > > > > Python has a lot of baggage which is OK if that's what's going to be > > used, but otherwise is unnecessary confusion: where to put the program > > code (typed in live or in a file, or some combination); whether to call > > the fil

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Richard Heathfield
In , Dann Corbit wrote: > In article , > r...@see.sig.invalid says... >> >> In , Dann >> Corbit wrote: >> >> >> > >> > You can read PDF with the ghostscript stuff or the free Adobe >> > stuff. >> >> Agreed. But why should you have to? > > As opposed to...? Something you can grep. -- Ri

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* bartc: Python has a lot of baggage which is OK if that's what's going to be used, but otherwise is unnecessary confusion: where to put the program code (typed in live or in a file, or some combination); whether to call the file .py or .pyw; the difference between console and graphical prog

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Dann Corbit
In article , r...@see.sig.invalid says... > > In , Dann > Corbit wrote: > > > > > > You can read PDF with the ghostscript stuff or the free Adobe stuff. > > Agreed. But why should you have to? As opposed to...? PDF and PS are no more or less proprietary than any other format. And Ghostscr

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* Alf P. Steinbach: * bartc: python.org seems to be the main site. Google "python download" and that is the first hit. Their windows download seems to be 13MB against the 32MB of activestate, and the IDE provided seems more advanced that the 'console window' you have in your tutorial. I'm

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Alf P. Steinbach
* bartc: python.org seems to be the main site. Google "python download" and that is the first hit. Their windows download seems to be 13MB against the 32MB of activestate, and the IDE provided seems more advanced that the 'console window' you have in your tutorial. I'm just asking why your

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Xavier Ho
On Fri, Oct 30, 2009 at 1:48 PM, Alf P. Steinbach wrote: > Does that mean that 'print' is still subject to change as of 3.1.1? Funny that. They removed reduce() when Python moved from 2.6.x to 3.0. They even removed __cmp__(). Makes me a sad panda. Is print() subject to change as of 3.1.1? I'd

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Xavier Ho
Alf, I kindly urge you to re-read bartc's comments. He does have a good point and you seem to be avoiding direct answers. On Fri, Oct 30, 2009 at 1:17 PM, Alf P. Steinbach wrote: > * bartc: > >> You say elsewhere that you're not specifically teaching Python, but the >> text is full of technical

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread Bruno Desthuilliers
Alf P. Steinbach a écrit : (snip) Microsoft's own Windows Explorer, the main GUI shell for Windows, which presumably was made by the best programmers available Mouarf !!! +1 JOFY (=> Joke Of The Year) -- http://mail.python.org/mailman/listinfo/python-list

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-30 Thread bartc
"Alf P. Steinbach" wrote in message news:hcdlsp$9a...@news.eternal-september.org... * bartc: "Alf P. Steinbach" wrote in message news:hc8pn3$dd...@news.eternal-september.org... [Cross-posted comp.programming and comp.lang.python] You use the highly commercial-looking activatestate websi

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* alex23: "Alf P. Steinbach" wrote: However, given what I've now learned about the current situation wrt. versions of Python, where Python 3.x is effectively a new language, and where apparently ActiveState has no installer for that, I'm rewriting to use the "official" distribution. I hope th

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread alex23
"Alf P. Steinbach" wrote: > However, given what I've now learned about the current situation wrt. versions > of Python, where Python 3.x is effectively a new language, and where > apparently > ActiveState has no installer for that, I'm rewriting to use the "official" > distribution. I hope the r

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* Ethan Furman: Alf P. Steinbach wrote: * Ethan Furman: Alf P. Steinbach wrote: * James Harris: You get way too deep into Python in places (for a beginner's course in programming). For example, "from now on I’ll always use from __future__ in any program that uses print." Sorry, but I thi

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Steven D'Aprano
On Thu, 29 Oct 2009 11:05:11 -0700, Ethan Furman wrote: > Alf P. Steinbach wrote: >> * James Harris: >> >>> You get way too deep into Python in places (for a beginner's course in >>> programming). For example, "from now on I’ll always use from >>> __future__ in any program that uses print." >> >

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* Rhodri James: On Thu, 29 Oct 2009 16:53:05 -, Alf P. Steinbach wrote: There's rather a lot to know about the environment that a program executes in if one is going to create robust, dependable, generally usable programs, not just toy examples. I'd say this was at best an extremely mi

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* bartc: "Alf P. Steinbach" wrote in message news:hc8pn3$dd...@news.eternal-september.org... [Cross-posted comp.programming and comp.lang.python] I may finally have found the perfect language for a practically oriented introductory book on programming, namely Python. C++ was way too comp

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Rhodri James
On Thu, 29 Oct 2009 16:53:05 -, Alf P. Steinbach wrote: There's rather a lot to know about the environment that a program executes in if one is going to create robust, dependable, generally usable programs, not just toy examples. I'd say this was at best an extremely misleading state

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Richard Heathfield
In , Richard Heathfield wrote: > In <7ku6jhf3a23e...@mid.individual.net>, osmium wrote: >> >> In some cultures, implying that someone is illiterate suggests "not >> smart". > > I don't see that at all. Babies are illiterate. Nobody knows whether > they're smart. Clarification: nobody knows fo

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Richard Heathfield
In <7ku6jhf3a23e...@mid.individual.net>, osmium wrote: > "Richard Heathfield" wrote: > >>> if the OP had just been smarter. >> >> Er, no, I didn't have that in mind at all. > > In some cultures, implying that someone is illiterate suggests "not > smart". I don't see that at all. Babies are illi

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Ethan Furman
Alf P. Steinbach wrote: * Ethan Furman: Alf P. Steinbach wrote: * James Harris: You get way too deep into Python in places (for a beginner's course in programming). For example, "from now on I’ll always use from __future__ in any program that uses print." Sorry, but I think that hiding su

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread bartc
"Alf P. Steinbach" wrote in message news:hc8pn3$dd...@news.eternal-september.org... [Cross-posted comp.programming and comp.lang.python] I may finally have found the perfect language for a practically oriented introductory book on programming, namely Python. C++ was way too complex for th

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* Benjamin Kaplan: On Thu, Oct 29, 2009 at 1:24 PM, Alf P. Steinbach wrote: ActiveState is simplest to install. However, given what I've now learned about the current situation wrt. versions of Python, where Python 3.x is effectively a new language, and where apparently ActiveState has no inst

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Trent Mick
However, given what I've now learned about the current situation wrt. versions of Python, where Python 3.x is effectively a new language, and where apparently ActiveState has no installer for that, I'm rewriting to use the "official" distribution. ... ActiveState does have Python 3 installers. Th

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Benjamin Kaplan
On Thu, Oct 29, 2009 at 1:24 PM, Alf P. Steinbach wrote: > > ActiveState is simplest to install. > > However, given what I've now learned about the current situation wrt. > versions of Python, where Python 3.x is effectively a new language, and > where apparently ActiveState has no installer for t

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* Richard Heathfield: The best way is the simplest technology that will do the job properly. If that truly is PDF, okay, use PDF. But it is hard for me to envisage circumstances where Web content is best presented in that way. Google docs sharing. It made a mess of my *Word* documents. Ch

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* Ethan Furman: Alf P. Steinbach wrote: * James Harris: You get way too deep into Python in places (for a beginner's course in programming). For example, "from now on I’ll always use from __future__ in any program that uses print." Sorry, but I think that hiding such concerns is a real disse

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread osmium
"Richard Heathfield" wrote: >> if the OP had just been smarter. > > Er, no, I didn't have that in mind at all. In some cultures, implying that someone is illiterate suggests "not smart". There is a formal disconnect there but possibly you can see how someone might infer that. At least I found

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Richard Heathfield
In <7ktsj6f3bciq...@mid.individual.net>, osmium wrote: > "Richard Heathfield" wrote: > >> A man who cannot express what he needs to express /without/ >> resorting to .pdf format is computer-illiterate. > > What format do you suggest? Firstly, I want to make clear that I'm not objecting to the O

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Ethan Furman
Alf P. Steinbach wrote: * James Harris: You get way too deep into Python in places (for a beginner's course in programming). For example, "from now on I’ll always use from __future__ in any program that uses print." Sorry, but I think that hiding such concerns is a real disservice. The diss

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Martin P. Hellwig
Alf P. Steinbach wrote: In an environment with other folks that the student can seek help from it works well, but in a book it's rather off-putting: "hey, it's page 90!, when are we getting to do real programming?". Well, in the college where I used to train my pupils I had written a number

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* James Harris: On 28 Oct, 08:58, "Alf P. Steinbach" wrote: * tm: On 28 Okt., 07:52, "Alf P. Steinbach" wrote: [Cross-posted comp.programming and comp.lang.python] Looking at your topic '(Python in Windows)', without taking a glimpse at your actual introduction, I have the following to say

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Alf P. Steinbach
* Martin P. Hellwig: Alf P. Steinbach wrote: * tm: On 28 Okt., 07:52, "Alf P. Steinbach" wrote: [Cross-posted comp.programming and comp.lang.python] Looking at your topic '(Python in Windows)', without taking a glimpse at your actual introduction, I have the following to say: I think it is

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread osmium
"Richard Heathfield" wrote: > A man who cannot express what he needs to express /without/ resorting > to .pdf format is computer-illiterate. What format do you suggest? I have some ideas on what I would have used, but you seem to love these veiled references that there is a better way, if the

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-29 Thread Dotan Cohen
> What would be good is if there was a "balancing book" eg. one specifically > targeting ubuntu, which is gaining popularity as we mail. > Agreed 100%. I opened this thread as I am learning Python, but my platform is Kubuntu. Of the students in my faculty, about one third have already moved to Ubu

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Richard Heathfield
In , Dann Corbit wrote: > > You can read PDF with the ghostscript stuff or the free Adobe stuff. Agreed. But why should you have to? > A man who cannot read .pdf or .ps in today's computer science world > is a crippled man (IMO-YMMV). A man who doesn't particularly enjoy relying on proprieta

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Richard Heathfield
In , Dann Corbit wrote: > In article , al...@start.no > says... >> >> here's the public view of ch 1 >> (complete) and ch 2 (about one third completed, I've not yet >> settled on a title so it's just chapter "asd"): >> >> http://preview.tinyurl.com/progintro >> >> Cheers, > > Why is c

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Gabriel Genellina
En Wed, 28 Oct 2009 08:49:02 -0300, Alf P. Steinbach escribió: I suggested ActiveState because I know from earlier that their packages are easy to install and provide documentation in reasonable Windows CHM help file format. I did try the IronPython .NET implementation first :-). But my

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Alf P. Steinbach
* Dann Corbit: In article , al...@start.no Unfortunately Google docs doesn't display the nice table of contents in each document, but here's the public view of ch 1 (complete) and ch 2 (about one third completed, I've not yet settled on a title so it's just chapter "asd"): http://previ

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Dann Corbit
In article , ste...@remove.this.cybersource.com.au says... > > On Wed, 28 Oct 2009 07:52:17 +0100, Alf P. Steinbach wrote: > > > Unfortunately Google docs doesn't display the nice table of contents in > > each document, but here's the public view of ch 1 (complete) and ch 2 > > (about one third

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Dann Corbit
In article , al...@start.no says... > > [Cross-posted comp.programming and comp.lang.python] > > Hi. > > I may finally have found the perfect language for a practically oriented > introductory book on programming, namely Python. > > C++ was way too complex for the novice, JScript and C# suffe

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Alf P. Steinbach
* Jon Clements: Inline reply: On 28 Oct, 11:49, "Alf P. Steinbach" wrote: * Jon Clements: On 28 Oct, 08:58, "Alf P. Steinbach" wrote: [snip] Without reference to an OS you can't address any of the issues that a beginner has to grapple with, including most importantly tool usage, without wh

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread eb303
On Oct 28, 11:57 am, "Alf P. Steinbach" wrote: > * eb303: > > > > > On Oct 28, 10:48 am, "Alf P. Steinbach" wrote: > >> * eb303: > > >>> On Oct 28, 7:52 am, "Alf P. Steinbach" wrote: > >>> [snip] > But since I don't know much Python -- I'm *learning* Python as I write > -- I know > >>

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Jon Clements
Inline reply: On 28 Oct, 11:49, "Alf P. Steinbach" wrote: > * Jon Clements: > > > On 28 Oct, 08:58, "Alf P. Steinbach" wrote: > > [snip] > >> Without reference to an OS you can't address any of the issues that a > >> beginner > >> has to grapple with, including most importantly tool usage, with

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Alf P. Steinbach
* Jon Clements: On 28 Oct, 08:58, "Alf P. Steinbach" wrote: [snip] Without reference to an OS you can't address any of the issues that a beginner has to grapple with, including most importantly tool usage, without which it's not even possible to get started, but also, very importantly, a file s

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread tm
On 28 Okt., 09:58, "Alf P. Steinbach" wrote: > * tm: > > > On 28 Okt., 07:52, "Alf P. Steinbach" wrote: > >> [Cross-posted comp.programming and comp.lang.python] > > > Looking at your topic '(Python in Windows)', without taking a > > glimpse at your actual introduction, I have the following to sa

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Garito
jajajajajajajajajaja +1 for Francesco 2009/10/28 Francesco Bochicchio > > > > Just to fuel the flame war, consider a million line Python system. It's > not > > uncommon with C++. :-) > > > > In python, with one-miliion lines of code, you can demonstrate > the existence of God, and then demostra

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Alf P. Steinbach
* eb303: On Oct 28, 10:48 am, "Alf P. Steinbach" wrote: * eb303: On Oct 28, 7:52 am, "Alf P. Steinbach" wrote: [snip] But since I don't know much Python -- I'm *learning* Python as I write -- I know that there's a significant chance of communicating misconceptions, non-idiomatic ways to do

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Francesco Bochicchio
> > Just to fuel the flame war, consider a million line Python system. It's not > uncommon with C++. :-) > In python, with one-miliion lines of code, you can demonstrate the existence of God, and then demostrate its non-existance by changing a single line of code :-) Ciao - FB -- http://ma

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread James Harris
On 28 Oct, 08:58, "Alf P. Steinbach" wrote: > * tm: > > > On 28 Okt., 07:52, "Alf P. Steinbach" wrote: > >> [Cross-posted comp.programming and comp.lang.python] > > > Looking at your topic '(Python in Windows)', without taking a > > glimpse at your actual introduction, I have the following to say

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread eb303
On Oct 28, 10:48 am, "Alf P. Steinbach" wrote: > * eb303: > > > On Oct 28, 7:52 am, "Alf P. Steinbach" wrote: > > [snip] > >> But since I don't know much Python -- I'm *learning* Python as I write -- > >> I know > >> that there's a significant chance of communicating misconceptions, > >> non-id

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Alf P. Steinbach
* eb303: On Oct 28, 7:52 am, "Alf P. Steinbach" wrote: [snip] But since I don't know much Python -- I'm *learning* Python as I write -- I know that there's a significant chance of communicating misconceptions, non-idiomatic ways to do things, bad conventions, etc., in addition to of course plai

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Olof Bjarnason
2009/10/28 Martin P. Hellwig > Alf P. Steinbach wrote: > >> * tm: >> >>> On 28 Okt., 07:52, "Alf P. Steinbach" wrote: >>> [Cross-posted comp.programming and comp.lang.python] >>> >>> Looking at your topic '(Python in Windows)', without taking a >>> glimpse at your actual introduction,

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Martin P. Hellwig
Alf P. Steinbach wrote: * tm: On 28 Okt., 07:52, "Alf P. Steinbach" wrote: [Cross-posted comp.programming and comp.lang.python] Looking at your topic '(Python in Windows)', without taking a glimpse at your actual introduction, I have the following to say: I think it is not a good idea to tea

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Jon Clements
On 28 Oct, 08:58, "Alf P. Steinbach" wrote: [snip] > Without reference to an OS you can't address any of the issues that a beginner > has to grapple with, including most importantly tool usage, without which it's > not even possible to get started, but also, very importantly, a file system. > > Le

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread eb303
On Oct 28, 7:52 am, "Alf P. Steinbach" wrote: [snip] > But since I don't know much Python -- I'm *learning* Python as I write -- I > know > that there's a significant chance of communicating misconceptions, > non-idiomatic > ways to do things, bad conventions, etc., in addition to of course plai

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Olof Bjarnason
2009/10/28 Alf P. Steinbach > * tm: > > On 28 Okt., 07:52, "Alf P. Steinbach" wrote: >> >>> [Cross-posted comp.programming and comp.lang.python] >>> >> >> Looking at your topic '(Python in Windows)', without taking a >> glimpse at your actual introduction, I have the following to say: >> I thin

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Alf P. Steinbach
* tm: On 28 Okt., 07:52, "Alf P. Steinbach" wrote: [Cross-posted comp.programming and comp.lang.python] Looking at your topic '(Python in Windows)', without taking a glimpse at your actual introduction, I have the following to say: I think it is not a good idea to teach programming with a foc

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread tm
On 28 Okt., 07:52, "Alf P. Steinbach" wrote: > [Cross-posted comp.programming and comp.lang.python] Looking at your topic '(Python in Windows)', without taking a glimpse at your actual introduction, I have the following to say: I think it is not a good idea to teach programming with a focus on a

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Richard Heathfield
In , Alf P. Steinbach wrote: > I may finally have found the perfect language for a practically > oriented introductory book on programming, namely Python. > I don't know whether this will ever become an actual book. I hope > so! > So I would would be very happy for feedback. "Sorry, bu

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Jon Clements
On 28 Oct, 07:44, Jon Clements wrote: > On 28 Oct, 07:31, Steven D'Aprano > > > > wrote: > > On Wed, 28 Oct 2009 07:52:17 +0100, Alf P. Steinbach wrote: > > > Unfortunately Google docs doesn't display the nice table of contents in > > > each document, but here's the public view of ch 1 (complete)

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Olof Bjarnason
2009/10/28 Alf P. Steinbach > * Chris Rebert: > >> On Tue, Oct 27, 2009 at 11:52 PM, Alf P. Steinbach >> wrote: >> >>> [Cross-posted comp.programming and comp.lang.python] >>> >>> Hi. >>> >>> I may finally have found the perfect language for a practically oriented >>> introductory book on progra

Re: Feedback wanted on programming introduction (Python in Windows)

2009-10-28 Thread Jon Clements
On 28 Oct, 07:31, Steven D'Aprano wrote: > On Wed, 28 Oct 2009 07:52:17 +0100, Alf P. Steinbach wrote: > > Unfortunately Google docs doesn't display the nice table of contents in > > each document, but here's the public view of ch 1 (complete) and ch 2 > > (about one third completed, I've not yet

  1   2   >