JargonFile/entries/handle.txt

19 lines
1.1 KiB
Plaintext
Raw Normal View History

2014-04-26 14:52:28 +00:00
handle
2014-04-26 15:54:15 +00:00
n. 1. [from CB slang] An electronic pseudonym; a nom de guerre intended to
conceal the user's true identity. Network and BBS handles function as the
same sort of simultaneous concealment and display one finds on Citizen's
Band radio, from which the term was adopted. Use of grandiose handles is
2018-10-15 14:13:48 +00:00
characteristic of warez d00dz, crackers, trolls, and other lower forms of
network life; true hackers travel on their own reputations rather
2014-04-26 15:54:15 +00:00
than invented legendry. Compare nick , screen name. 2. A magic cookie ,
often in the form of a numeric index into some array somewhere, through
which you can manipulate an object like a file or window. The form file
handle is especially common. 3. [Mac] A pointer to a pointer to
dynamically-allocated memory; the extra level of indirection allows
on-the-fly memory compaction (to cut down on fragmentation) or aging out of
unused resources, with minimal impact on the (possibly multiple) parts of
the larger program containing references to the allocated memory. Compare
snap (to snap a handle would defeat its purpose); see also aliasing bug ,
dangling pointer.