473,569 Members | 3,009 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1750
"Mark Hahn" <ma**@prothon.o rg> 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.o rg> wrote in
news:buLwc.6092 5$zN5.390@fed1r ead01:
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.n et>

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_balanc e, 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_balanc e, 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.o rg> 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.u k/~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.d e>
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_balanc e, 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

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

Similar topics

7
8410
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 I code just "Left" it is flagged as an error with the message "Public Overloads Property Left() As Integer has no parameters and its return type...
0
2352
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 null default 0 auto_increment, a1 varchar(64) not null default '',
4
8389
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 http://mywebpages.comcast.net/hmessinger/default.html which validates under Strict. Under IE6, Opera, and Firebird, the markers are indented as one would expect the default to be. What if I...
4
4095
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 results, then doing a self left join with those results, etc. What puzzles me is that the time required for the query seems to grow exponentially as I...
1
2306
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 "display:none". The Off-Left method (placing elements way over to the left beyond the browser window) seems to work well in everything except IE 6 for the...
17
760
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
2043
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 (looks fine at larger screen sizes) when the left menu box that should float left is drifting to the right in Internet Explorer 6.0 (it doesn't...
8
2367
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 wrong side. //------------------------------------------ function start(){if(document.getElementById){tdiv6=document.getElementById('slider');...
4
10083
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 shape goes beyond the right or bottom side. However, I don't get scrollbars when shapes move beyond the left or top side of the canvas. This is bad. ...
3
5508
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 information to show as displace. please help me. my coding are as below: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
0
7619
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7681
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7983
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6290
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
3662
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2118
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1229
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
950
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.