Tagged Questions

0
votes
2answers
59 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. Her …
1
vote
7answers
171 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.
7
votes
16answers
2k views

Untar, ungz, gz, tar - how do you remember all the useful options?

I am pretty sure I am not the only one with the following problem: every time I need to uncompress a file in *nix I can't remember all the switches, and end up googling it, which i …
2
votes
6answers
451 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 …
0
votes
5answers
451 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 f …
1
vote
13answers
372 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; …
1
vote
3answers
127 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) …
0
votes
2answers
134 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 P …
2
votes
11answers
291 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 …
5
votes
10answers
870 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
10answers
618 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 …