|
|
|
|
|
by mgedmin
5768 days ago
|
|
And the trick to getting used to things is finding the right mnemonic. I used to get tripped up by 'ln -s' all the time, until I realized that if I thought about 'cp src dst' but with 'cp' replaced 'cp' with 'ln -s' it suddenly made sense. Likewise Intel assembly's mov statement and its similarity with assignment statements that barrkel mentioned. Whether something seems intuitive or not depends on the analogy you prefer, or even your choice of words. E.g. look at 2D coordinates for a terminal character cell: if you think of them in terms of (x, y), you will find that order intuitive, but if you think (row, col), you'll find the opposite order intuitive. |
|