The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
66 views

C#.NET mnemonics unexpected behaviour

I have few buttons in my windows application which has mnemonics.Now if i press multiple keys the events of the button clicks gets fired as i have used mnemonics. But the behaviour is not as ...
1
vote
2answers
47 views

GDB Not showing EFlags Mnemonics

I'm currently working with GDB and NASM for assembly programming. Unfortunately I am unable to see the EFlags register mnemonics (ZF, AF, PF etc...) inside GDB. I am being shown a decimal value ...
8
votes
3answers
143 views

How do you remember the differences between rvalue, lvalue, etc?

This question is great because it has answers on what are the differences between rvalue, lvalue, xvalue, glvalue, and prvalue. The top answer has a decent explanation of each, and I understand their ...
0
votes
1answer
84 views

Change mnemonic for Menu on Menubar from default Alt to Ctrl?

I want to use Ctrl instead of Alt for mnemonics of a menu on a menubar. I think it involves using a setAccelerator. formatMenu.setMnemonic(KeyEvent.VK_F); sizeMenu.setMnemonic(KeyEvent.VK_X); ...
0
votes
2answers
209 views

What is a mnemonic in java? [closed]

I can find a bunch of info talking about mnemonics but nothing about what they are. Can someone help me here?
7
votes
5answers
119 views

Why is the start of a line “^” and the end of line “$”?

I never remember whether ^ matches the beginning of the line and $ matches the end of it or the other way around. A good mnemonic would be that the $ sign is always before the price, therefore it ...
0
votes
0answers
89 views

How to prevent mnemonics to activate on shift modifier in C# [closed]

I made a code which requires users to enter appointments into a calendar component on a windows form. The component works very similar to outlook's interface: user selects the neccessary timeframe, ...
3
votes
1answer
236 views

Conflicting mnemonics in Java Swing

I'm working on a complex desktop app with multiple tabbed panes for workflow, each one stuffed with different buttons, labels and other UI elements. Each of them require a mnemonic defined, and these ...
0
votes
0answers
242 views

Set Accelerator/Mnemonic Keys in Button without altering text

Is there an alternate way of setting mnemonic keys for a button (or more specifically, a DevExpress CheckButton)? Also - are the terms 'Accelerator Keys' and 'Mnemonic Keys' interchangeable? I'm ...
3
votes
2answers
490 views

How to specify mnemonics (ampersand shortcut) to QActions in a QMenu?

I'm using QActions in a QMenu, the typical | &New file Ctrl+N | | &Open file Ctrl+O | Which gets a nice context shortcut of simply N (for New File) and O (for Open File) while the ...
0
votes
2answers
543 views

How to Add shortcut key to checkbox without text

I want to add shortcut key to checkbox. Checkbox do not have text. I have label and then Checkbox. Label have shortcut key for ex. &Visible. So, Label have V as shortcut key. If someone press ...
1
vote
0answers
200 views

Method to determine if Mnemonic/Accelerator key values apply to a control?

I have an application (.net framework 4, vb.net) that originally was a VB6 application. To mimic portions of the old tab control behavior, I am implementing accelerator keys that allow you to switch ...
1
vote
1answer
159 views

ARM v7 ADD vs. LDR

Is there any difference between the following instruction (besides flags affection)? ADD R6, SP, #0xDC and LDR R6, [SP, #0xDC] Thank you for your feedback, -b.
0
votes
1answer
305 views

Java: Mnemonics and Unicode

I am currently having problems with unicode and mnemonics in a Java SE application. In the menu bar i added a menu with the name "ФMnemonicUnicodeTest" and the first letter is set as Mnemonic. The ...
0
votes
2answers
78 views

Mnemonic tip for regex start of string/end of string metacharacters

It is well known that regular expressions are powerful. But it is also known that the syntax is a bit awkward. For example, each time I use them, I find asking myself which of ^ and $ is the start ...
2
votes
3answers
520 views

How to put mnemonic under the second instance of a Character (Java-Swing)?

I have a JButton named button1 with text "Alter Today". I want to set a mnemonic under 'T' in the word 'Today' of this button (that is second instance of 't' or 'T' in 'Alter Today'). When I am ...
2
votes
3answers
271 views

ARM v7 ORRS mnemonic without operand2

What does: ORRS R1, R3 do? Is it just R1 |= R3, possibly setting the N- or Z flags? This might be blatantly obvious, but I haven't found any documentation that describes the ORR mnemonic without ...
3
votes
1answer
488 views

What is the purpose of a keyboard mnemonic on a label control?

What's the point of adding mnemonic on a label control in C#? I have a label with the text "&SomeText". What event is triggered when i press ALT+S (I've tried OnClick but it's not fired)
9
votes
4answers
174 views

Does anyone have a useful mnemonic for implementing Comparator?

Every time I need to implement a comparator, I get stuck trying to remember when I should return -1 and when 1, and I have to look it up. I mean, obviously -1 is less, so it implies that first is ...
3
votes
1answer
280 views

String.Join and String.Split parameter mnemonic

I trip on C#'s String.Join and String.Split parameter types every time. The problem is that String.Split takes a params char[] array of characters and String.Join takes a string. Does anyone have a ...
0
votes
4answers
278 views

CSS Mnemonics: How do you remember whether # or . is for class or id?

#test is the selector for id="test" .test is the selector for class="test" but how do you remember which way round they are (eg not .=id)
1
vote
4answers
343 views

Please teach me a good mnemonic for remembering “slash” vs. “backslash”

I have a colleague who keeps confusing slashes "slash" and "backslash" (As in: "Should I escape such-and-such with a slash?" My answer: "No.") I'm trying to teach him the difference but so far just ...
3
votes
4answers
6k views

Assembly JLE jmp instruction example

How do you use the jump family of instructions? This is what they've got: JL label "It" jumps if it is less than or if it is not larger than or equal to. My question is what is it in this ...
0
votes
1answer
540 views

Another way to set mnemonic for JMenuItem?

So, I have a "Open Project" menu item, and I want to set mnemonic to it. I prefer it to be 'e' character from Project word. But when I set it with openProjectMenuItem.setMnemonic('e'); it sets 'e' ...
4
votes
3answers
129 views

How can I prevent Alt codes in a .NET app?

I have a .NET app with buttons which use numbers for mnemonics. (e.g. "&1 - Check" and "&2 - Cash") When I hit Alt+1, I expect the Check button to be clicked. This works when I use the ...
0
votes
1answer
655 views

SingleFrameApplication that does NOT require ALT to activate menuitem mnemonics?

In the NetBeans 6.9 IDE, if you create a New Project >> Java >> Java Desktop Application and run it, you will find that the menu items have mnemonics, but only after ALT is pressed. (The ...
2
votes
3answers
237 views

Mnemonic for C# generic types

I often forget if i have to use in or out when defining covarient and contravarient generic types. In java i have the mnemonic PECS (producer extends consumer super) to help me. Do you know a similar ...
2
votes
8answers
162 views

How do you remember the order of the expressions in a for loop?

It's a pretty simple question, I always have to go check here and then I hit my head and say it's so obvious. But really after a week of not using it I usually end up writing for ($i = 1; $i++; ...
3
votes
4answers
317 views

What mechanisms could be used to easily generate a high entropy password on a smartphone without having to resort to alphanumeric input?

I'm working on a version of Password Safe for android. Password Safe uses a passphrase to encrypt your passwords, but typing out long passphrases on a smartphone can be tedious, especially if they're ...
5
votes
3answers
380 views

Do you have suggestions for these assembly mnemonics?

Last semester in college, my teacher in the Computer Languages class taught us the esoteric language named Whitespace. In the interest of learning the language better with a very busy schedule ...
4
votes
2answers
174 views

Generating easy-to-remember random identifiers

As all developers do, we constantly deal with some kind of identifiers as part of our daily work. Most of the time, it's about bugs or support tickets. Our software, upon detecting a bug, creates a ...
7
votes
3answers
3k views

Java Swing: Can I set a button mnemonic that doesn't require pressing alt?

For example, say I have a series of toolbar-style buttons across the top of my application's main window. I want to attach a mnemonic to one of these that's just a single keypress, like F3. When you ...
2
votes
3answers
128 views

Database mnemonics

I'm looking for mnemonics to help me with databases, the relational model and transaction theory. For example I learned "ACID" to help me remember the properties of a transaction: atomicity, ...
1
vote
3answers
768 views

How to disable mnemonics?

I'm extending Eclipse using the Eclipse plugin infrastructure, and I've come into a problem: I created an Eclipse editor and I would like to disable the mnemonic menus Eclipse, for example: ALT + a ...
1
vote
1answer
701 views

JButton with HTML named action and a mnemonic

I have a JButton that is constructed using an Action and this action has a name that is contains html. I then go about setting the mnemonic on the JButton by first parsing out html to get the first ...
7
votes
2answers
231 views

Windows standard for mnemonics

Are there any mnemonic standards for Windows? For example -- the menu bar, actions on the menu bar (e.g. Alt+f to file menu but ctrl+s to do the save under the file menu), and controls. I'm asking ...
0
votes
0answers
44 views

Counting how often which mnemonic occures

Do you know a program which gives you a list of all assembler mnemonics used by a given byte machine code (mainly for x86's) beside their number of occurrences? I don't mean something like a pure ...
0
votes
2answers
1k views

Mnemonic not showing on a System.Windows.Forms.ContextMenu

I'm having some problems with Mnemonics and ContextMenus - although the Mnemonic property of the Menutem is set correctly the little underline wont show under the relevant key. Here is my code: ...
3
votes
2answers
1k views

Setting Mnemonics and Hot Keys for a JOptionPane Dialog

Is it possible to assign hotkeys and mnemonics to the buttons in a JOptionPane Dialog? I'd like to be able, in a JOptionPane generated message dialog with the options Yes, No and Cancel, press Y to ...
2
votes
7answers
493 views

Remembering the Ternary Operator Syntax

Anyone have a good trick to remember the standard ternary syntax? Specifically whether the '?' or ':' comes first. I have consistently gotten this backwards over the years.
2
votes
3answers
252 views

Generating random 6-character strings

How many possible words of length 6 can I generate from the English lower case alphabet, if each word starts with a random consonant, and after that vowels and consonants alternate? What if I add ...
3
votes
10answers
4k views

Good/Funny/Useful mnemonic devices?

In order to keep the OSI model straight in my head, I dreamt up the silly mnemonic: P. Diddy Never Takes Shit, Punk Ass! (Physical, Data, Network, Transport, Session, Presentation, Application) ...
1
vote
5answers
2k views

Long-term memorization techniques to become an expert in the field?

I'm familiar with some mnemonic/memorization techniques for about a year. I think that this techniques can give a developer significant benefit or even make you an expert in the field. If you are ...
1
vote
3answers
2k views

Are there any patterns/algorithms for dealing with localisable mnemonics?

I work on a web application product which allows mnemonics (i.e. an underscore below the character 'C', to allow a keyboard combination and the key C to trigger the "Close" button). Forms are ...
-1
votes
2answers
175 views

Question regarding assembler output

Consider the following assembler output: START 100 MOVER BREG, ONE 101) + 04 2 105 MOVEM BREG, RESULT 102) + 05 2 106 PRINT RESULT ...
3
votes
11answers
457 views

Any mnemonic tip for boolean?

I guess this is trivial for most of good1 programmers, but I'm so used to programming using true and false2 that when I encounter 0 and 1, I can never remember which one means true and which one means ...
14
votes
14answers
3k views

A mnemonic for the order of CSS margin and padding shorthand properties

I can never remember the order of the shorthand property for setting the margin or padding in one declaration. That is: margin-top: 2px; margin-bottom: 4px; margin-left: 3px; margin-right: 8px; ...
9
votes
11answers
3k views

Intuitive way of understanding hexadecimal html color codes?

Is there an intuitive way, or a good mnemonic, for understanding the correspondence between colors and their hexadecimal values?
20
votes
12answers
6k views

How to remember in CSS that margin is outside the border, and padding inside

I don't edit CSS very often, and almost every time I need to go and google the CSS box model to check whether padding is inside the border and margin outside, or vice versa. (Just checked again and ...