Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-26 Thread Mark Aufflick
I really love my Kinesis Ergo Contoured:

http://www.kinesis-ergo.com/contoured.htm

Not only did it eliminate my hand and forearm pain, once you're used
to it you can type faster as well! It gives you hand separation, less
impact (long travel and with practice you don't hit the stop), makes
good use of your thumbs (why waste the strongest part of your hand?).

It's great for unix/emacs/windows since control is naturally
accessible under both hands. The only thing I will say is I haven't
yet found a good way to use it with my Mac. Since I use emacs on my
mac a lot I need three modifiers - control, Command, Option. You can
remap home and page/up, but that still gets a bit akward, and I miss
page/up.

Having said that, I find for me the best thing is a change in hand
position for alleviating pain - so I use my Kinesis during the day and
an apple bluetooth keyboard (with no keypad) at night. If you don't
like the apple bluetooth keyboard feel try a Happy Hacking keyboard:

http://pfuca-store.stores.yahoo.net/

Mark.

On Sat, Oct 24, 2009 at 12:35 AM, Dirk Koopman d...@tobit.co.uk wrote:
 Patrick Mulvany wrote:

 On Thu, Oct 22, 2009 at 12:23:51PM +0100, Smylers wrote:

 Civil Service guidelines for new software procurement probably insist on
 decent accessibility support[*2], but continuing to use legacy systems
 which predate[*3] those guidelines isn't inself illegal.


 Actually this isn't the worst problem you will have. All Gov type
 departments have very strict controls on software deployment so you would
 have to get the software tested and approved before you could get it
 installed. Even upgrading from one version of software to another is a pain
 never mind trying to get a new piece of software installed. I would not be
 surprised if total time from requesting a piece of software, through
 approval and installation took 6 months to a year and that is with everyone
 co-operating. If anyone feels the need to stick his/her oar in it could be
 sunk without trace in 30 seconds.


 Working as I do in the Ambulance sector, having to liaise with the Prime
 Contractor, then with Airwave, then with DH, I can confirm that 12 months is
 a bare minimum!

 Dirk




-- 
Mark Aufflick
  contact info at http://mark.aufflick.com/about/contact


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-23 Thread Patrick Mulvany
On Thu, Oct 22, 2009 at 12:23:51PM +0100, Smylers wrote:
 
 Civil Service guidelines for new software procurement probably insist on
 decent accessibility support[*2], but continuing to use legacy systems
 which predate[*3] those guidelines isn't inself illegal.
 

Actually this isn't the worst problem you will have. All Gov type departments 
have very strict controls on software deployment so you would have to get the 
software tested and approved before you could get it installed. Even upgrading 
from one version of software to another is a pain never mind trying to get a 
new piece of software installed. I would not be surprised if total time from 
requesting a piece of software, through approval and installation took 6 months 
to a year and that is with everyone co-operating. If anyone feels the need to 
stick his/her oar in it could be sunk without trace in 30 seconds.

Just my thoughts

Paddy


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-23 Thread Dirk Koopman

Patrick Mulvany wrote:

On Thu, Oct 22, 2009 at 12:23:51PM +0100, Smylers wrote:

Civil Service guidelines for new software procurement probably insist on
decent accessibility support[*2], but continuing to use legacy systems
which predate[*3] those guidelines isn't inself illegal.



Actually this isn't the worst problem you will have. All Gov type departments 
have very strict controls on software deployment so you would have to get the 
software tested and approved before you could get it installed. Even upgrading 
from one version of software to another is a pain never mind trying to get a 
new piece of software installed. I would not be surprised if total time from 
requesting a piece of software, through approval and installation took 6 months 
to a year and that is with everyone co-operating. If anyone feels the need to 
stick his/her oar in it could be sunk without trace in 30 seconds.



Working as I do in the Ambulance sector, having to liaise with the Prime 
Contractor, then with Airwave, then with DH, I can confirm that 12 
months is a bare minimum!


Dirk


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread Philip Potter
2009/10/21 Jacqui Caren-home jacqui.ca...@ntlworld.com:
 Smylers wrote:

 You shouldn't; you should use an editor which has completion on words
 which are used in your project.

 I use a few with completions - with no one being best for the various
 languages I use.

 Which brings up what perl editors do people use and why?

The best thing you can do is find an editor you like and customise it
to suit perl. Conway's Perl Best Practices has example customisations
for vim, vile and emacs which are worth a look.

Even better, give the editor different modes to suit perl when writing
perl, php when writing php, and javascript when writing javascript.

I personally use vim, though if and when Padre gets good I will switch
to that. I'm currently trying to add extract subroutine and rename
variable to it, but it's easier said than done...

Phil


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread James Laver
On Thu, Oct 22, 2009 at 8:56 AM, Philip Potter
philip.g.pot...@gmail.com wrote:
 I personally use vim, though if and when Padre gets good I will switch
 to that. I'm currently trying to add extract subroutine and rename
 variable to it, but it's easier said than done...

I'm pretty sure I saw a video demonstrating a working rename-variable
plugin. I believe there were comments along the lines of
's/$old_name/$new_name/' and then the usual arguments over 'works most
of the time' v.s. 'won't work all of the time'.

--James


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread Philip Potter
2009/10/22 James Laver james.la...@gmail.com:
 On Thu, Oct 22, 2009 at 8:56 AM, Philip Potter
 philip.g.pot...@gmail.com wrote:
 I personally use vim, though if and when Padre gets good I will switch
 to that. I'm currently trying to add extract subroutine and rename
 variable to it, but it's easier said than done...

 I'm pretty sure I saw a video demonstrating a working rename-variable
 plugin. I believe there were comments along the lines of
 's/$old_name/$new_name/' and then the usual arguments over 'works most
 of the time' v.s. 'won't work all of the time'.

Any idea where you saw that video?


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread john_oshea

Philip Potter wrote:

2009/10/22 James Laver james.la...@gmail.com:

I'm pretty sure I saw a video demonstrating a working rename-variable
plugin. I believe there were comments along the lines of
's/$old_name/$new_name/' and then the usual arguments over 'works most
of the time' v.s. 'won't work all of the time'.


Any idea where you saw that video?


Possibly this?

http://code-and-hacks.blogspot.com/2009/07/stealing-from-padre-for-vim-part-3.html

--
John O'Shea
Wordbank Limited
33 Charlotte Street, London W1T 1RR
Direct line: +44 (0) 20 7903 8829
Fax: +44 (0) 20 7903 
http://www.wordbank.com/


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread David Cantrell
On Wed, Oct 21, 2009 at 12:21:05PM -0400, jesse wrote:
 On Wed, Oct 21, 2009 at 04:50:19PM +0100, Smylers wrote:
  A friend with RSI has a keyboard he can use fine, but needs to avoid
  mousing.  Unfortunately[*1] whoever wrote the bespoke software used by
  his branch of the civil service didn't bother with keyboard access for
  many features.
 In the US, that's ~illegal[1]. The UK doesn't have a similar law?

Since when did something being illegal stop it from happening,
especially in government?

-- 
David Cantrell | even more awesome than a panda-fur coat

[OS X] appeals to me as a monk, a user, a compiler-of-apps, a
sometime coder, and an easily amused primate with a penchant
for those that are pretty, colorful, and make nice noises.
-- Dan Birchall, in The Monastery


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread Philip Potter
2009/10/22 David Cantrell da...@cantrell.org.uk:
 On Wed, Oct 21, 2009 at 12:21:05PM -0400, jesse wrote:
 On Wed, Oct 21, 2009 at 04:50:19PM +0100, Smylers wrote:
  A friend with RSI has a keyboard he can use fine, but needs to avoid
  mousing.  Unfortunately[*1] whoever wrote the bespoke software used by
  his branch of the civil service didn't bother with keyboard access for
  many features.
 In the US, that's ~illegal[1]. The UK doesn't have a similar law?

 Since when did something being illegal stop it from happening,
 especially in government?

Since people were unwilling to stand up for what they lawfully deserve
-- either through apathy or because the costs in time and money to
enforce one's rights are prohibitive.

Phil



Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread Smylers
jesse writes:

 On Wed, Oct 21, 2009 at 04:50:19PM +0100, Smylers wrote:
 
  A friend with RSI has a keyboard he can use fine, but needs to avoid
  mousing.  Unfortunately[*1] whoever wrote the bespoke software used
  by his branch of the civil service didn't bother with keyboard
  access for many features.
 
 In the US, that's ~illegal[1]. The UK doesn't have a similar law?
 
 [1] http://www.section508.gov/

The Disability Discrimination Act[*1] (as ammended) makes it illegal to
discriminate against an employee or potential employee on disability
grounds  But so long as you aren't discriminating, it doesn't mandate
particular ways of doing that in specific situations, or particular
things you must do.

So terminating my friend's employment because their software can't be
used by those unable to mouse would be illegal.  As would forcing him to
use a computer but refusing to buy him specialist equipment (such as a
keyboard or mouse) that he has been diagnosed as needing.  But
apparently having him spending large chunks of the day sat around the
office doing nothing is acceptable, so long as he's still on full pay.

Civil Service guidelines for new software procurement probably insist on
decent accessibility support[*2], but continuing to use legacy systems
which predate[*3] those guidelines isn't inself illegal.

[Don't take legal advice from a law school drop-out.]

  [*1] http://en.wikipedia.org/wiki/Disability_Discrimination_Act_1995

  [*2] Though such guidelines sometimes seem to be a bit 'checklisty',
  and often focus on unthinkingly, yet rigorously, applying some tedious
  rules which don't actually help the intended audience, while missing
  out on some big picture design stuff which would improve the user
  experience for all users, including the disabled.

  [*3] Or whose initial invitation to tender predated the guidelines,
  anyway.  That probably being several years before the software was
  delivered, but by then it was 'too late' to insist that the developers
  actually have a clue and design sane interfaces.

Smylers


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread David Cantrell
On Thu, Oct 22, 2009 at 11:53:56AM +0100, Philip Potter wrote:
 2009/10/22 David Cantrell da...@cantrell.org.uk:
  Since when did something being illegal stop it from happening,
  especially in government?
 Since people were unwilling to stand up for what they lawfully deserve
 -- either through apathy or because the costs in time and money to
 enforce one's rights are prohibitive.

There's also people not being aware of their rights, people being wrong
about what their rights are, and people being scared of having their
heads kicked in by the pigs.

-- 
David Cantrell | even more awesome than a panda-fur coat

Every normal man must be tempted at times to spit on his hands,
 hoist the black flag, and begin slitting throats. -- H. L. Mencken


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-22 Thread Jesse Vincent



On Wed 21.Oct'09 at 17:44:58 +0100, James Laver wrote:
 On Wed, Oct 21, 2009 at 5:21 PM, jesse je...@fsck.com wrote:
 
  In the US, that's ~illegal[1]. The UK doesn't have a similar law?
 
  [1] http://www.section508.gov/
 
 
 We have the disability discrimination act which makes it similarly
 illegal. It also makes it illegal to develop a website that isn't
 properly accessible, but we've yet to see any prosecutions.
 
 Does your §508 have provisions for non-discrimination against healthy
 people (making concessions for disabled people available to healthy
 people?) ? That's what I'm using in the UK to justify my chip and
 signature card.

Sadly, I have no idea.

Best,
Jesse
 
 --James
 



Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread Chris Jack


Jacqui wrote:
 James Laver wrote:
  On 21 Oct 2009, at 01:24, Paul Makepeace wrote:
  PS for the real layout nerds, http://colemak.com/ is a better choice
  than Dvorak if you're going to start from scratch
  http://www.kaufmann.no/roland/dvorak/ is worth a mention too. I got 
  myself up to about one-quarter-speed on that last time I tried.
 
 OK I'll bite which is best for perl? :-)
 
 Or perhaps what would be the ideal tag layout for perl on a standard UK/US
 keyboard layout?


Before you switch keyboards, I think there is an important question about how 
often you are obliged to use a standard qwerty keyboard. I worked all over 
Europe for a bit using a large number of the European variations on qwerty (y 
and z switched for instance and punctuation in unusual places). I found the 
constant switching meant I was slower on all keyboards - but maybe it was worse 
because the keyboards were kind of the same. Maybe it's not such a problem if 
you switch between, say, qwerty and colemak.

 

However... My understanding is that, despite a lot of the top results on google 
for comparisons between dvorak and qwerty significantly favouring the latter, 
there is actually very little to choose between the two of them in terms of 
speed. This is a quote from http://c2.com/cgi/wiki?DvorakKeyboard

 

Liebowitz and Margolis have expanded their earlier discussion on the supposed 
'network effect' of the two types of keyboard in their 1999 book, Winners, 
Losers  Microsoft (ISBN 0-945-99980-1 ). Chapter 2 is titled The Fable of the 
Keys. In it, they refer to some ergonomic studies (pages 31 to 33) in which 
the theoretical performance benefit of Dvorak over QWERTY has been calculated. 
A study by A. Miller and J. C. Thomas concludes that no alternative has shown 
a realistically significant advantage over the QWERTY for general purpose 
typing. R.F. Nickells, Jr, found that Dvorak was possibly 6.2 percent faster 
than QWERTY, while R. Kinkhead found a 2.3% advantage in favour of Dvorak. 

 

Ok - even taking the top number without question: 6.2% is obviously better, 
but, for me, it's not enough to overcome the switching/convenience problem - 
and also the problem of being able to find a top quality ergonomic keyboard. 
Can anyone point me towards a Goldtouch style keyboard for dvorak or colemak? 
It's basically got a ball and socket joint joining two halves of a split 
keyboard allowing you to control both yaw and roll. It also has the advantage 
of no numeric keypad - so there's significantly less travel between keyboard 
and mouse. I haven't had significant RSI since I started using it, and I was in 
significant pain pre-adoption.

 

I had been seeing an osteopath who pointed out that the natural position for 
the hand is in shaking hands position - so constantly rotating it flat (as 
for normal cheap flat keyboards) - and worse, then yawing it to point 
forward, places a lot of strain on your hands. He also got me to use a shaking 
hands position mouse. We're kind of switching into public service/health 
announcement territory here: but if anyone is interested, a good link to buy 
this sort of stuff is www.ergonomics.co.uk under Products-Accessories. I also 
use a specialist mouse wrist rest from Fellowes that moves with my wrist.

 

I would be very interested to know if there are any truly independent studies 
on colemak versus qwerty keyboards - but I would be surprised if the difference 
came out at more than 10%.

 

Chris
  
_
Stay in touch with your friends through Messenger on your mobile
http://clk.atdmt.com/UKM/go/174426567/direct/01/

Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread James Laver
On Wed, Oct 21, 2009 at 12:31 PM, Chris Jack chris_j...@msn.com wrote:
 Before you switch keyboards, I think there is an important question about how 
 often you are obliged to use a standard qwerty keyboard. I worked all over 
 Europe for a bit using a large number of the European variations on qwerty (y 
 and z switched for instance and punctuation in unusual places). I found the 
 constant switching meant I was slower on all keyboards - but maybe it was 
 worse because the keyboards were kind of the same. Maybe it's not such a 
 problem if you switch between, say, qwerty and colemak.

A friend of mine in Canada tried it for a few weeks at work only (I
figured there was no chance of losing productivity at work) and used
qwerty at home and seemed to do fine with switching. No subtle
differences, it's a whole different mode of typing.

It also has the advantage of no numeric keypad - so there's significantly less 
travel between keyboard and mouse.

That's distinctly not an advantage for those of us who type numeric
IDs into database driven applications.

 I had been seeing an osteopath who pointed out that the natural position for 
 the hand is in shaking hands position - so constantly rotating it flat (as 
 for normal cheap flat keyboards) - and worse, then yawing it to point 
 forward, places a lot of strain on your hands. He also got me to use a 
 shaking hands position mouse. We're kind of switching into public 
 service/health announcement territory here: but if anyone is interested, a 
 good link to buy this sort of stuff is www.ergonomics.co.uk under 
 Products-Accessories. I also use a specialist mouse wrist rest from Fellowes 
 that moves with my wrist.

I'm curious about trackballs. I use one ever since i had a minor
twinge that might have potentially indicated RSI or CTS and I haven't
had a recurrence. They do still require you to twist your arm to use
though (but movement of the hand is distinctly reduced).

--James



Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread Matt Sergeant
On Wed, 21 Oct 2009 13:05:28 +0100, James Laver wrote:
 On Wed, Oct 21, 2009 at 12:31 PM, Chris Jack chris_j...@msn.com wrote:
 Before you switch keyboards, I think there is an important question 
 about how often you are obliged to use a standard qwerty keyboard. I 
 worked all over Europe for a bit using a large number of the 
 European variations on qwerty (y and z switched for instance and 
 punctuation in unusual places). I found the constant switching meant 
 I was slower on all keyboards - but maybe it was worse because the 
 keyboards were kind of the same. Maybe it's not such a problem if 
 you switch between, say, qwerty and colemak.
 
 A friend of mine in Canada tried it for a few weeks at work only (I
 figured there was no chance of losing productivity at work) and used
 qwerty at home and seemed to do fine with switching. No subtle
 differences, it's a whole different mode of typing.

Problem then comes with people who need to help you on your computer. I 
often help a tester here who has a Natural split keyboard, and find 
it tough, but doable (I used to use a natural years ago, the problem is 
using a Natural from a sideways position or standing position while at 
$co-worker's desk). I can't imagine any way of coping if he had a 
Dvorak layout.

Matt.

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread jesse
 Problem then comes with people who need to help you on your computer. I 
 often help a tester here who has a Natural split keyboard, and find 
 it tough, but doable (I used to use a natural years ago, the problem is 
 using a Natural from a sideways position or standing position while at 
 $co-worker's desk). I can't imagine any way of coping if he had a 
 Dvorak layout.

When my friend Adam was switching over to Dvorak many years ago, he
implemented two small shell scripts to toggle layout: asdf and aoeu 

It helped keep the problem Matt mentions in check.


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread Jacqui Caren-home

Chris Jack wrote:

I had been seeing an osteopath who pointed out


My interest in this thread is two fold.

1) I write or edit a lot of code. Why should I spend my days typing
   many repetitive words over and over. Does anyone here remember
   spectrums or ZX81's? :-)

2) My sister has a damaged nerve in her arm and I have sent her various
   keyboards, trackballs, graphics tablets etc. As she plans upon doing
   an IT degree and unless she can find soemthign she can work with
   work in IT is a no-no. And this would be a big loss tothe industry -
   she is *very* smart!

Jacqui


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread Matt Sergeant
On Wed, 21 Oct 2009 10:32:46 -0400, jesse wrote:
 Problem then comes with people who need to help you on your computer. I 
 often help a tester here who has a Natural split keyboard, and find 
 it tough, but doable (I used to use a natural years ago, the problem is 
 using a Natural from a sideways position or standing position while at 
 $co-worker's desk). I can't imagine any way of coping if he had a 
 Dvorak layout.
 
 When my friend Adam was switching over to Dvorak many years ago, he
 implemented two small shell scripts to toggle layout: asdf and aoeu 
 
 It helped keep the problem Matt mentions in check.

True-ish. If you occasionally glance at the keys it really screws you 
over though :)

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread James Laver
On Wed, Oct 21, 2009 at 4:02 PM, Matt Sergeant
mserge...@messagelabs.com wrote:

 True-ish. If you occasionally glance at the keys it really screws you
 over though :)

Well unless you're buying labels to stick on the keys you aren't going
to be able to look down on Dvorak, and I'd hope that by now you've
muscle-memorised QWERTY.

--James


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread Smylers
Jacqui Caren-home writes:

 My interest in this thread is two fold.

 1) I write or edit a lot of code. Why should I spend my days typing
many repetitive words over and over. Does anyone here remember
spectrums or ZX81's? :-)

You shouldn't; you should use an editor which has completion on words
which are used in your project.

 2) My sister has a damaged nerve in her arm and I have sent her
various keyboards, trackballs, graphics tablets etc. As she plans
upon doing an IT degree and unless she can find soemthign she can
work with work in IT is a no-no. And this would be a big loss tothe
industry - she is *very* smart!

A friend with RSI has a keyboard he can use fine, but needs to avoid
mousing.  Unfortunately[*1] whoever wrote the bespoke software used by
his branch of the civil service didn't bother with keyboard access for
many features.

Last night he was amused to relay that work's health  safety advisor
has decreed that he must use Dragon Dictate for input -- his job
involves using this software while on the phone, and he's not sure how
members of the public will take to being told move left or tap right
in the middle of calls ...

  [*1]  I say unfortunately, but it's probably because they were the
  lowest bidder, and whoever wrote the spec wasn't knowledgeable enough
  to be aware of what was actually required -- which is incompetent,
  rather than unfortunate.

Smylers
-- 
http://twitter.com/Smylers2


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread Matt Sergeant
On Wed, 21 Oct 2009 16:32:15 +0100, James Laver wrote:
 On Wed, Oct 21, 2009 at 4:02 PM, Matt Sergeant
 mserge...@messagelabs.com wrote:
 
 True-ish. If you occasionally glance at the keys it really screws you
 over though :)
 
 Well unless you're buying labels to stick on the keys you aren't going
 to be able to look down on Dvorak, and I'd hope that by now you've
 muscle-memorised QWERTY.

On my own keyboard, yes. The point was on someone else's keyboard.

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread jesse



On Wed, Oct 21, 2009 at 04:50:19PM +0100, Smylers wrote:
 A friend with RSI has a keyboard he can use fine, but needs to avoid
 mousing.  Unfortunately[*1] whoever wrote the bespoke software used by
 his branch of the civil service didn't bother with keyboard access for
 many features.

In the US, that's ~illegal[1]. The UK doesn't have a similar law?

[1] http://www.section508.gov/


Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread James Laver
On Wed, Oct 21, 2009 at 5:21 PM, jesse je...@fsck.com wrote:

 In the US, that's ~illegal[1]. The UK doesn't have a similar law?

 [1] http://www.section508.gov/


We have the disability discrimination act which makes it similarly
illegal. It also makes it illegal to develop a website that isn't
properly accessible, but we've yet to see any prosecutions.

Does your §508 have provisions for non-discrimination against healthy
people (making concessions for disabled people available to healthy
people?) ? That's what I'm using in the UK to justify my chip and
signature card.

--James



Re: keyboards/RSI/switching costs (was Looking for a secondhand Datahand Pro II)

2009-10-21 Thread Jacqui Caren-home

Smylers wrote:

You shouldn't; you should use an editor which has completion on words
which are used in your project.


I use a few with completions - with no one being best for the various languages 
I use.

Which brings up what perl editors do people use and why?

FYI:

Currently writing a js SOAPLite driver so have Perl,PHP and Javascript
in various editors switching between them for cross referencing/testing.

Initially a tad confusing when in the same editor :-)