Tagged Questions
The mnemonics tag has no wiki summary.
10
votes
12answers
3k 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 ...
9
votes
4answers
144 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 ...
7
votes
2answers
141 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 ...
6
votes
3answers
1k 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 ...
6
votes
10answers
2k 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?
5
votes
13answers
920 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;
...
4
votes
3answers
259 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
116 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 ...
3
votes
1answer
145 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)
3
votes
3answers
91 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 ...
3
votes
4answers
167 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 ...
3
votes
10answers
2k 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)
...
3
votes
11answers
402 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 ...
2
votes
3answers
97 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 ...
2
votes
1answer
183 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 ...
2
votes
4answers
1k 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 ...
2
votes
3answers
190 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
138 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++; ...
2
votes
3answers
93 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, ...
2
votes
3answers
230 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 ...
1
vote
0answers
45 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
48 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.
1
vote
3answers
147 views
How to put mnemonic under the second instance of a Character (Java-Swing)?
I have a JButton 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 trying to do:
...
1
vote
3answers
475 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
482 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 ...
1
vote
1answer
713 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 ...
1
vote
7answers
323 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.
1
vote
5answers
1k 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
941 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 ...
0
votes
3answers
38 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 ...
0
votes
0answers
37 views
Removing Mnemonics from menu's in windows mobile apps
A windows mobile application that I am working on, has added mnemonics, (A-I), that are un-desireable. Does anyone know how I can remove these, I cannot see anything to remove these, or stop these ...
0
votes
1answer
79 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
40 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 ...
0
votes
4answers
117 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)
0
votes
4answers
133 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 ...
0
votes
1answer
192 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' ...
0
votes
1answer
475 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 ...
0
votes
0answers
35 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
575 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:
...
-1
votes
2answers
168 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 ...