473,386 Members | 1,606 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

left-quote ( ` ) on International keyboards [Prothon]

Can users with international keyboards tell me if they have problems typing
the left-quote ( ` ) character? It isn't used much in Python but we are
thinking of giving it a slightly more important role in Prothon. (I'm not
going to say what that role is here to avoid starting another 300 message
thread like I did last time :-) If you are curious you can go to the
Prothon mailing lists at http://prothon.org).
Jul 18 '05 #1
16 1725
"Mark Hahn" <ma**@prothon.org> writes:
Can users with international keyboards tell me if they have problems typing
the left-quote ( ` ) character?


For keyboards using the "combining" key in the place for = and + on US
keyboards, it's one more key to type (the key plus space). Not a big
deal, we get used to it. :)
Jul 18 '05 #2
"Mark Hahn" <ma**@prothon.org> wrote in
news:buLwc.60925$zN5.390@fed1read01:
Can users with international keyboards tell me if they have problems
typing the left-quote ( ` ) character? It isn't used much in Python
but we are thinking of giving it a slightly more important role in
Prothon. (I'm not going to say what that role is here to avoid
starting another 300 message thread like I did last time :-) If you
are curious you can go to the Prothon mailing lists at
http://prothon.org).


i can type it as combined character,
but i'd recomend against it. ' and ` are hard to distinguish for people
with not so good sight. and the meaning/effect isnt obvious anyway.

--
Chris <cl******@gmx.net>

Jul 18 '05 #3
Mark Hahn wrote:
Can users with international keyboards tell me if they have problems
typing
the left-quote ( ` ) character? It isn't used much in Python but we are
thinking of giving it a slightly more important role in Prothon. (I'm not
going to say what that role is here to avoid starting another 300 message
thread like I did last time :-) If you are curious you can go to the
Prothon mailing lists at http://prothon.org).


For French keyboards, it's "Right ALT + 7" sometimes followed by a space
( yeah, sometimes it's a deadkey like ^ and " are )
Jul 18 '05 #4
Christophe Cavalaria wrote:
Mark Hahn wrote:
Can users with international keyboards tell me if they have problems
typing
the left-quote ( ` ) character? It isn't used much in Python but we
are thinking of giving it a slightly more important role in Prothon.
(I'm not going to say what that role is here to avoid starting
another 300 message thread like I did last time :-) If you are
curious you can go to the Prothon mailing lists at
http://prothon.org).


For French keyboards, it's "Right ALT + 7" sometimes followed by a
space ( yeah, sometimes it's a deadkey like ^ and " are )


What does deadkey mean?


Jul 18 '05 #5
Mark Hahn wrote:

What does deadkey mean?


The same as 'combined key' above. It doesn't immediately produce output,
instead you can press some other key after it, ` + a = à, and you can
produce the literal with ` + space.

Anyway, it really is a bit hard to discern from ' or ´, even though it
would otherwise be a great character to be used as an operator in
programming languages :)

On the standard Finnish layout there is one key with three dead meanings
on it, which can be alternated with shift and altgr - a truly wonderful
piece of engineering that leads to 4 key combinations producing
characters such as  :)
Jul 18 '05 #6
Tuure Laurinolli wrote:
Mark Hahn wrote:

What does deadkey mean?


The same as 'combined key' above. It doesn't immediately produce
output, instead you can press some other key after it, ` + a = à, and
you can produce the literal with ` + space.


Thanks. I can see where the name comes from.

I never thought of it being used as an accent mark. I always thought of it
as a crummy left-quote. That explains why it is always drawn so high.

We are thinking of using it as a marker for "symbols" in Prothon. They are
like strings but can only be legal variable labels: `var, `init_, `x,
`account_balance, etc. I think in our application they look good and won't
be mistaken for quotes since they don't come in pairs. They are readable
and distinquishable in this context. Also, symbols won't be used that
frequently so typing won't be too much of a pain.


Jul 18 '05 #7
Mark Hahn wrote:
We are thinking of using it as a marker for "symbols" in Prothon. They are
like strings but can only be legal variable labels: `var, `init_, `x,
`account_balance, etc. I think in our application they look good and won't
be mistaken for quotes since they don't come in pairs. They are readable
and distinquishable in this context. Also, symbols won't be used that
frequently so typing won't be too much of a pain.


Why not use something like $ or something? I'm not familiar with Prothon, so
I don't know if $ is already used for something, but it's a character
normally used with symbols/placeholders/etc.

--
Timo "WT" Virkkala
Jul 18 '05 #8
"Mark Hahn" <ma**@prothon.org> writes:
I never thought of it being used as an accent mark. I always thought of it
as a crummy left-quote. That explains why it is always drawn so high.


You may want to have a look at

<http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html>

for details. Personally, I don't think it was a good idea to define
character 0x60 as GRAVE ACCENT, but that's what we have ...

--
Michael Piotrowski, M.A. <mx*@dynalabs.de>
Public key at <http://www.dynalabs.de/mxp/pubkey.txt>
Jul 18 '05 #9
Timo Virkkala wrote:
Mark Hahn wrote:
We are thinking of using it as a marker for "symbols" in Prothon.
They are like strings but can only be legal variable labels: `var,
`init_, `x, `account_balance, etc. I think in our application they
look good and won't be mistaken for quotes since they don't come in
pairs. They are readable and distinquishable in this context.
Also, symbols won't be used that frequently so typing won't be too
much of a pain.


Why not use something like $ or something? I'm not familiar with
Prothon, so I don't know if $ is already used for something, but it's
a character normally used with symbols/placeholders/etc.


We aren't using any of the oddball symbols any more, so $ is free. I'm a
little wary of proposing using it though. The last time I proposed using $
Prothon was accused of being Perl :-)

I'll put it up for vote on the Prothon mailing list. You can come by and
vote for it :-)

Is $ easier to type on foreign keyboards?


Jul 18 '05 #10
"Mark Hahn" <ma**@prothon.org> wrote in message news:<ma*************************************@pyth on.org>...
Tuure Laurinolli wrote:
Mark Hahn wrote:

What does deadkey mean?


The same as 'combined key' above. It doesn't immediately produce
output, instead you can press some other key after it, ` + a = à, and
you can produce the literal with ` + space.


Thanks. I can see where the name comes from.

I never thought of it being used as an accent mark. I always thought of it
as a crummy left-quote. That explains why it is always drawn so high.

We are thinking of using it as a marker for "symbols" in Prothon. They are
like strings but can only be legal variable labels: `var, `init_, `x,
`account_balance, etc. I think in our application they look good and won't
be mistaken for quotes since they don't come in pairs. They are readable
and distinquishable in this context. Also, symbols won't be used that
frequently so typing won't be too much of a pain.


Be aware of the dangers of bad typesetting ! I once had a hard time to
figure out unix commands where the ` was set as a ' in a commercial
book about unix!

All the best !
Norbert
Jul 18 '05 #11
Mark Hahn wrote:
We aren't using any of the oddball symbols any more, so $ is free. I'm a
little wary of proposing using it though. The last time I proposed using $
Prothon was accused of being Perl :-)
I already said I dislike $ the las time i was tried to be used. The
reason for me is that $ looks just like any other letter whereas ` is
immediately recognizable as a special character.

THe other person who shared my opinion had much better argumentation
than my "it looks wrong", but basically it came down to the same thing.
Just with words such as "baseline" and "sigil":
Is $ easier to type on foreign keyboards?


I doubt that, probably almost every special character on non-US
keyboards requires two sequential keypresses or a combination. ` is `
followed by space, $ is altgr + 4. Personally I think ` is actually
easier ty type.
Jul 18 '05 #12
Mark Hahn wrote:
Timo Virkkala wrote:
Mark Hahn wrote:
We are thinking of using it as a marker for "symbols" in Prothon.
They are like strings but can only be legal variable labels: `var,
`init_, `x, `account_balance, etc. I think in our application they
look good and won't be mistaken for quotes since they don't come in
pairs. They are readable and distinquishable in this context.
Also, symbols won't be used that frequently so typing won't be too
much of a pain.


Why not use something like $ or something? I'm not familiar with
Prothon, so I don't know if $ is already used for something, but it's
a character normally used with symbols/placeholders/etc.


We aren't using any of the oddball symbols any more, so $ is free. I'm a
little wary of proposing using it though. The last time I proposed using
$ Prothon was accused of being Perl :-)

I'll put it up for vote on the Prothon mailing list. You can come by and
vote for it :-)

Is $ easier to type on foreign keyboards?


$ is one of the only thing easy to type in a french keyboard. Thanks god
that we don't need to type too many {} in Python for they are the worst :)

Of course, I can't speak for other keyboard layouts.

Jul 18 '05 #13
Mark Hahn wrote:
Is $ easier to type on foreign keyboards?


Well.. It's AltGr+4 on the Finnish keyboard, so not too hard. Easier than
{[]}\, since they are AltGr+7890+ and you can really do them with one hand,
whereas @£$ can be done with two hands.

--
Timo "WT" Virkkala
Jul 18 '05 #14
Timo Virkkala wrote:
Mark Hahn wrote:
Is $ easier to type on foreign keyboards?

Well.. It's AltGr+4 on the Finnish keyboard, so not too hard. Easier
than {[]}\, since they are AltGr+7890+ and you can really do them with
one hand, whereas @£$ can be done with two hands.


.... reading that sentence and realizing that it's a bit strange:

It's not really the fact that it's one/two-handed, but with AltGr, I have to
twist my right hand to a strange angle with the one-handed chars. The
two-handed ones are faster to type.

--
Timo "WT" Virkkala
Jul 18 '05 #15
Hello Mark,
Can users with international keyboards tell me if they have problems typing
the left-quote ( ` ) character?

No problem with Hebrew.

Bye.
--
-------------------------------------------------------------------------
Miki Tebeka <mi*********@zoran.com>
The only difference between children and adults is the price of the toys.

Jul 18 '05 #16
"Mark Hahn" <ma**@prothon.org> wrote in message news:<buLwc.60925$zN5.390@fed1read01>...
Can users with international keyboards tell me if they have problems typing
the left-quote ( ` ) character? It isn't used much in Python but we are


Single keystroke for me (Cyrillic/Russian).

-kv
Jul 18 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Wayne Wengert | last post by:
I use statements like LEFT(textstring,6) in my app. I have "Imports Microsoft.VisualBasic" at the top of the code but to use LEFT I have to code : Microsoft.VisualBasic.Left(sting, integer) If...
0
by: Soefara | last post by:
Dear Sirs, I am experiencing strange results when trying to optimize a LEFT JOIN on 3 tables using MySQL. Given 3 tables A, B, C such as the following: create table A ( uniqueId int not...
4
by: Harlan Messinger | last post by:
What is *supposed* to be the way to specify the horizontal offset of (a) the list item's marker and (b) the list item's content? In particular, see ...
4
by: jbm05 | last post by:
Hi, I'm curious about the computational complexity of a query I have. The query contains multiple nested self left joins, starting with a simple select, then doing a self left join with the...
1
by: fleemo17 | last post by:
For increased accessibility, I've replaced "display:none" with the Off-Left method of hiding my CSS drop-down menus because the Jaws screen reader doesn't see any of the menus hidden with...
17
by: Nathan Given | last post by:
Hello All, I am trying to debug a broken query. The query uses Left$(,4) instead of Left(,4). What is the difference between the Left() and Left$() functions in Microsoft Access? Thanks!...
0
by: jonipony | last post by:
HELP: Float Left box is drifting to the right in ie! -------------------------- I need som HELP with my CSS coding! On the following web page my design falls apart at screen size 800 x 600...
8
by: marco | last post by:
Hi ! I have this part of code and i can not find out why the scroller is starting from left to right instead RIGHT to LEFT. This is the main part and the scroller is working fine but from the...
4
by: moondaddy | last post by:
I have a wpf project where I use a canvas to drag shapes around. when I drag a shape beyond the right or bottom side I get scrollbars which is good. I also get scrollbars when I zoom in and a...
3
by: Noorain | last post by:
I designed a site. i want to header,footer,left & right column fixed but body information only scrolling. this site screen to be 800/600 px. i designed this way but when i used position fixed all...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.