Glossary for web, etc.     R

     
Glossary
                 
ENTMV
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z

RAM Random Access Memory


RAS Windows: Remote Access Server - Daytona (Windows NT) - SLIP and PPP.


RDBMS Relational Database Management System


RDS (Microsoft) Remote Data Service Control (was the Advanced Data Connector). A DSO. Uses an SQL query or a stored procedure to get the data. Can also marshal just the changed records and send them back to the server (- needs IIS version 3 or above).
RDS is supplied with IE5.


Registering - putting something in a list from where it can be dragged out later. e.g.
In Microsoft Windows, the
WINAPI function RegisterClass must be called before a class can be used in the CreateWindow function.
RegisterClass - a Microsoft Windows function to register a window class for subsequent use in calls to the CreateWindow or CreateWindowEx function.


Regular Expression - search pattern in an editor. See e.g.CodeWright.
For MSDEV regular expressions are made up from:
  . matches any single character
  [   ] any one of the characters inside the brackets, or a range like a-z
  [^   ] any character except one of those inside the brackets
  ^ start of a line
  $ end of a line
  \(   \) enclosed text replaces \1 (to \9 if several) in the Replace With string
  \~ no match if following character occurs
  \~\(   \) no match if enclosed characters occur
    * none or more of the preceding character or expression
    + one or more of the preceding character or expression
    \! match if match character or expression on either side - may extend list
  \{   \} expression which is the enclosed text - follow with * or +
  \:a any alphanumeric character - short for [a-zA-Z0-9]
  \:b any whitespace character - space or tab (but not end of line)
  \:c any alphabetic character - short for [a-zA-Z]
  \:d any digit - marginally short for [0-9]
  \:n any unsigned number - short for \{[0-9]+\.[0-9]*\![0-9]*\.[0-9]+\![0-9]+\}
  \:z any unsigned integer - short for [0-9]+
  \:h any hexadecimal number - short for [0-9a-fA-F]+
  \:i any C++ identifier - short for [a-zA-Z_$][a-zA-Z0-9_$]+
  \:w any alphabetic string - short for[a-zA-Z]+
  \:q any quoted string - short for \{"[^"]*"\!'[^']*'\}
  \. literal . and similarly for   \\   \^   \$   \*   \+   (but   \~   is invalid)
- note that it is not possible to test for any control or unusual character, except for tab as part of whitespace, and start/end of line, except by pasting the character into the search string.
The start and end of line symbols will not work in the Replace with: string when doing a replace,
and neither will pasting in text with a newline. Seems necessary to resort to e.g. Record quick macro (Ctrl Shift R), search and insert, stop recording, and repeatedly Play quick macro (Ctrl Shift P).

Render - to make visible - mangling an HTML page before stuffing it into the browser for display. Deciphers the ##... bits (e.g. ##if ... ##else ... ##endif).


RFC Request For Comments - specifcations about Internet etc.
See eg.
rfc 2131


RFI Radio Frequency Interface


RIFF Windows: Resource Interchange File Format - mutimedia tagged structure.


RIP Routing Information Protocol - an interior routing protcol - run by routing daemon 'routed' in most UNIX systems.


RIP Remote Image Protocol - eg RipTerm at terminal for GUI to BBS.


RISC Reduced Instruction Set Computer


RJE Remote Job Entry - general protocol for submitting batch jobs.


RLL Run Length Limited - an encoding scheme for data on hard disc.


RMD (Microsoft) Remote Machine Debugging. (See MDM.)
See RMD FAQ.


RNA Remote Network Access


ROT13 Bad jokes etc: each letter replaced by letter 13 spaces away.


RPC Remote Procedure Call (Microsoft) - easy and popular paradigm for client-server model.


RTF Rich Text Format - text interchange standard.


RTFM Read The Flaming Manual


RTM Windows: RunTime Manager - extends Borland's DPMI - contains a subset of Windows API.


RTS Request to Send - hardware modem handshaking signal.


A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z