473,699 Members | 2,506 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
16 1764
"Mark Hahn" <ma**@prothon.o rg> wrote in message news:<ma******* *************** *************** @python.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_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.


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_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?


$ 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*********@zo ran.com>
The only difference between children and adults is the price of the toys.

Jul 18 '05 #16
"Mark Hahn" <ma**@prothon.o rg> wrote in message news:<buLwc.609 25$zN5.390@fed1 read01>...
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
8426
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 cannot be indexed"
0
2358
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
8396
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 want them moved over to the left edge of the list? On the above page, there is no margin-left for...
4
4104
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 add additional left joins, which I didn't expect. I expected the inner select to return about 25...
1
2318
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 PC, where it displays the drop-downs about an inch to the right of where they should be. (View...
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
2046
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 drift to the right in Netscape 7.1).
8
2376
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'); firstns6();}
4
10094
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. I need the behavior similar to Visio where you can drag an object past the left or top and you will...
3
5517
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" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>...
0
8615
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9033
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7748
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6533
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5872
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4375
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3057
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
2
2345
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2009
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.