perl better than python for users with disabilities?
  Home FAQ Contact Sign in
comp.lang.perl.misc only
 
Advanced search
POPULAR GROUPS

more...

comp.lang.perl.misc Profile…
 Up
perl better than python for users with disabilities?         


Author: Dan Jacobson
Date: Dec 20, 2006 08:11

Can I feel even better about using perl vs. python, as apparently
python's dependence of formatting, indentation, etc. vs. perl's
"(){};" etc. makes writing python programs perhaps very device
dependent. Whereas perl can be written on a tiny tiny screen, and can
withstand all kinds of users with various disabilities, etc.?
Also perl is easier to squeeze into makefiles.
11 Comments
Re: perl better than python for users with disabilities?         


Author: Martin P. Hellwig
Date: Dec 20, 2006 09:50

Dan Jacobson wrote:
> Can I feel even better about using perl vs. python, as apparently
> python's dependence of formatting, indentation, etc. vs. perl's
> "(){};" etc. makes writing python programs perhaps very device
> dependent. Whereas perl can be written on a tiny tiny screen, and can
> withstand all kinds of users with various disabilities, etc.?
> Also perl is easier to squeeze into makefiles.
>
Quite punny title though I assume you are really serious and mean people
with a physical disability, I won't comment any further on this subject
:-), if I already offended anyone, please excuse me, since I'm original
from Germany I'm not supposed to be funny.

--
mph
no comments
Re: perl better than python for users with disabilities?         


Author: krakle
Date: Dec 20, 2006 10:10

On Dec 20, 10:11 am, Dan Jacobson jidanni.org> wrote:
> Whereas perl can be written on a tiny tiny screen, and can
> withstand all kinds of users with various disabilities, etc.?

Well... yes and no... While the handicapped users who are in a wheel
chair will find Perl easy to use the blind will struggle. From my past
experience posting here I think it's safe to say most retarts use
Perl... So the mentally challenged will have no problem using it
either... I mean, Tad uses it..
no comments
Re: perl better than python for users with disabilities?         


Author: Steven D'Aprano
Date: Dec 20, 2006 14:03

On Thu, 21 Dec 2006 00:11:10 +0800, Dan Jacobson wrote:
> Can I feel even better about using perl vs. python, as apparently
> python's dependence of formatting, indentation, etc. vs. perl's
> "(){};" etc. makes writing python programs perhaps very device
> dependent.

I can't think of what sort of computer device you are thinking of that
can't handle indented text. Wait -- my old HP-48C programmable calculator
perhaps?

As for perl and () {} etc, I would have thought that for anyone with poor
eyesight, or using a tiny screen, they would be difficult to tell apart.
> Whereas perl can be written on a tiny tiny screen, and can
> withstand all kinds of users with various disabilities, etc.?

"Withstand all kinds of users"? I can't imagine what you mean by that.
> Also perl is easier to squeeze into makefiles.

Perhaps you are right. In eight years of writing Python code, I've never
once needed to squeeze Python into a makefile, so I don't know how hard it
will be.

--
Steven.
no comments
Re: perl better than python for users with disabilities?         


Author: A. Sinan Unur
Date: Dec 20, 2006 15:50

Dan Jacobson jidanni.org> wrote in
news:87slfalf8h.fsf@jidanni.org:
> Can I feel even better about using perl vs. python

Initiating a Perl vs Python debate is the mark of a troll. Bye!

Sinan
2 Comments
Re: perl better than python for users with disabilities?         


Author: Randal L. Schwartz
Date: Dec 20, 2006 17:11

>>>>> "A" == A Sinan Unur <1usa@llenroc.ude.invalid> writes:
A> Initiating a Perl vs Python debate is the mark of a troll. Bye!

And an obfuscated, indented troll at that. :)

--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

--
Posted via a free Usenet account from http://www.teranews.com
1 Comment
Re: perl better than python for users with disabilities?         


Author: anno4000
Date: Dec 21, 2006 04:19

Randal L. Schwartz stonehenge.com> wrote in comp.lang.perl.misc:
>>>>>> "A" == A Sinan Unur <1usa@llenroc.ude.invalid> writes:
>
>> Initiating a Perl vs Python debate is the mark of a troll. Bye!
>
> And an obfuscated, indented troll at that. :)

...armed with significant whitespace. Beware!

Anno
no comments
Re: Perl Vs Python: Blind Folks         


Author: Veli-Pekka Tätilä
Date: Dec 21, 2006 05:07

Hi Dan,
I won't cross-post to a group I don't read, so this one goes only in
comp.lang.perl.misc.

Dan Jacobson wrote:
> apparently python's dependence of formatting, indentation, etc. vs.
> perl's "(){};" etc. makes writing python programs perhaps very device
> dependent.
> perl can be written on a tiny tiny screen, and can withstand all kinds
> of users with various disabilities, etc.?

Lemme address small screensize and input device constraints first. I've
tried writing Python on a series 60 celphone lacking a querty keyboard and
it is no fun. Getting all of the punctuation out is tedious, the dictionary
cannot auto-compmlete stuff smartly and the display is extremely small. That
being said maybe a case-insensitive language with lots of English would be
easier to write with such a setup. I'd go so far to say, based on an
intuitive notion, that neither Perl nor Python is very well optimized for
tiny screens or keyboards in which special chars are hard to enter, though
arguably Perl does have source filtering.
Show full article (9.70Kb)
3 Comments
Re: Perl Vs Python: Blind Folks         


Author: zentara
Date: Dec 22, 2006 04:53

On Thu, 21 Dec 2006 15:07:42 +0200, "Veli-Pekka Tätilä"
wrote:
>Another cconsideration are the GUis visually impaired people are producing.
>They should be accessible to screen readers to be useful. TK is out as I
>said. Fortunately Perl has Win32::GUI and Python WX Widgets both of which
>are accessible, I think.

You didn't mention Gtk2's ATK (Accessability ToolKit).

I havn't done anything with it myself, but it is described at
http://developer.gnome.org/projects/gap/

Perl's Gtk2 port contains accesability to the ATK library.

--
I'm not really a human, but I play one on earth.
http://zentara.net/japh.html
2 Comments
Re: Perl Vs Python: Blind Folks         


Author: Veli-Pekka Tätilä
Date: Dec 23, 2006 04:58

zentara wrote:
> On Thu, 21 Dec 2006 15:07:42 +0200, "Veli-Pekka T
1 Comment
1 2