Fix glossary
[matches/MCTX3420.git] / reports / final / appendices / glossary.tex
1 \section*{Glossary}
2
3 \begin{itemize}
4         \item {\bf Server} --- Commonly used to refer to the MCTX3420 program that runs on the system and is responsible for controlling and querying hardware. Also used more generally to refer to programs that provide a networked service (eg: LDAP server). Server is often also used to refer to a physical machine (computer or embedded device) that runs one or more Server programs (ie: The BeagleBone Black is a server).
5         \item {\bf Client} ---  Refers to a program running on a computer that isn't part of the system. This program provides the user with an interface to the system; it will send commands and queries to the server as directed by a human user. ``Client'' is also often also used to refer to a physical machine that runs a Client program.
6         \item {\bf HTTP} --- Hyper Text Transfer Protocol - The protocol used by web browsers and web servers to exchange information. A ``web'' server is technically called a HTTP server. A ``web'' client is something like a web browser (firefox, chrome, etc) which uses HTTP to query servers on the internet.
7         \item {\bf HTTPS} --- HTTP itself involves sending plain text over a network, which can be intercepted and read by anyone on the network. The HTTPS protocol provides a layer of encryption to prevent eavesdropping on HTTP traffic.
8         \item {\bf API} --- Application Programming Interface - A standard defined for programs to interact with each other. In our case, the ``Server API'' (discussed in Section \ref{API}) defines what the Client can request and give to the Server.
9         \item {\bf HTML} --- Hypertext Markup Language - A language used by web browsers to display web pages. Static. HTML files are stored on a system that is running a HTTP server and transferred to web browsers when they are requested. HTML contains the content of a page, whilst CSS (when used) alters what the page will look like.
10         \item {\bf CSS} --- Cascading Style Sheets - A stylesheet language interpreted by a web browser to determine how specific HTML elements should appear. HTML contains the content of a page, whilst CSS (when used) alters what the page will look like.
11         \item {\bf JavaScript} (not to be confused with Java) --- A language that is interpreted by a web browser to produce HTML dynamically (which is then rendered by the browser) in response to events. It can also direct the browser to send HTTP queries (AJAX). The response can be interpreted by the JavaScript. JavaScript files are also stored on the server.
12         \item {\bf JSON} --- JavaScript Object Notation - Text that can be directly interpreted as an Object in JavaScript.
13         \item {\bf CGI} --- Common Gateway Interface - Protocol by which HTTP servers respond to requests by calling an external (seperate) program. The CGI program does not run continuously.
14         \item {\bf FastCGI} --- Fast Common Gateway Interface - Protocol by which HTTP servers respond to requests by passing them to an external (separate) program. Differs from CGI because the external program runs continuously and separately from the HTTP server.
15         \item {\bf IP Address} --- Internet Protocol Address - Identifies a device on a network
16         \item {\bf Hostname} --- A human readable name of a device on a network. The hostname of the device is associated with its IP address.
17         \item {\bf Multithreading} --- A mechanism supported by most modern operating systems by which code from a single program can be run in parallel in seperate ``threads''.
18         \item {\bf OpenCV} --- A real time Image processing library
19         \item {\bf BBB} --- the BeagleBone Black, ARM processor board acts as the server, and communicates with the client (which sends and requests data for physically running the experiment) over an ethernet connection. 
20         \item {\bf nginx} --- Used for website architecture which integrates efficiency with functionality
21         \item {\bf OpenMP} --- Multiplatform memory processing: used for parallel tasks (not used in this project) 
22         \item {\bf PThreads (POSIX Threads)} --- A library used for thread management defining a set of c programing functions and constants. 
23 \end{itemize}

UCC git Repository :: git.ucc.asn.au