An Interview With Guido van Rossum
An anonymous reader submits "The folks over at artima.com have finished posting a 6 part interview with Guido Van Rossum, Python's creator and Benevolent Dictator for Life. The interview covers topics ranging from Python's origins and design goals to increased productivity to runtime typing." (We linked to this series of interviews before as well.)
I've been using Python for quite some time now and I've found it vastly superior, both functionally and from a maintenance standpoint, to both Perl and PHP. One knit, though. Why on earth make whitespace vital to the compiler? For business reasons I have to edit my programs in Windows but run them on Linux. Editing out all those ^M's is a big pain.
The folks over at artima.com have finished posting a 6 part interview with Guido Van Rossum, Python's creator and Benevolent Dictator for Life.
I'm trying to remember the last time I saw the words "Guido" and "Benevolent" in the same sentence together...
GMD
watch this
Liberty uber alles.
1,13c1,2 ; /tmp/$i /tmp/$i | tr -d '\r' | tr -d '\032' > $i /tmp/$i
< #!/bin/sh
<
< for i in $@
< do
< if [ -f $i ]
< then
< echo "Fixing" $i
< cp $i
< cat
< rm
< fi
< done
<
---
> #!/usr/bin/perl -pi
> y/\r//d