Add V.E.R.A. 1.24 sources
This commit is contained in:
parent
9fd19d4809
commit
181e4db185
79
README
Normal file
79
README
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
|
||||||
|
V.E.R.A. -- Virtual Entity of Relevant Acronyms
|
||||||
|
(Texinfo release 1.24)
|
||||||
|
|
||||||
|
|
||||||
|
WHAT IS V.E.R.A. ?
|
||||||
|
------------------
|
||||||
|
|
||||||
|
V.E.R.A. is a free list of acronyms all of which are
|
||||||
|
used in the field of computing.
|
||||||
|
|
||||||
|
It is released under the GNU Free Documentation License.
|
||||||
|
|
||||||
|
Please see topic 'About' in V.E.R.A. for more information.
|
||||||
|
|
||||||
|
|
||||||
|
INSTALLATION AND USAGE INSTRUCTIONS
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
|
Make an Info file from the Texinfo source, type:
|
||||||
|
|
||||||
|
makeinfo --force vera.texi
|
||||||
|
|
||||||
|
(The file extension may differ in your environment.)
|
||||||
|
|
||||||
|
|
||||||
|
You might need root access for the following steps...
|
||||||
|
|
||||||
|
Copy the files generated by the previous step to the directory
|
||||||
|
where the Info files reside on your site.
|
||||||
|
|
||||||
|
|
||||||
|
Go to your Info directory and edit the 'dir' file. Insert a line
|
||||||
|
like the following where appropriate.
|
||||||
|
|
||||||
|
* V.E.R.A.: (vera). Virtual Entity of Relevant Acronyms
|
||||||
|
|
||||||
|
|
||||||
|
You can skip the last step if you had previously installed
|
||||||
|
V.E.R.A..
|
||||||
|
|
||||||
|
You are done.
|
||||||
|
|
||||||
|
Type 'info vera' to access V.E.R.A. from the command line
|
||||||
|
or 'C-h i' to access V.E.R.A. from Emacs.
|
||||||
|
|
||||||
|
Have fun.
|
||||||
|
|
||||||
|
|
||||||
|
WHERE TO FIND V.E.R.A. ?
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
You can find the latest version of V.E.R.A. at the usual GNU
|
||||||
|
sites or directly at the V.E.R.A. home page:
|
||||||
|
|
||||||
|
|
||||||
|
- ftp://ftp.gnu.org/gnu/vera/
|
||||||
|
For more GNU sites, please see http://www.gnu.org/order/ftp.html
|
||||||
|
|
||||||
|
|
||||||
|
Please note that the original version of V.E.R.A. is not related to the
|
||||||
|
to the Free Software Foundation or the GNU project at all.
|
||||||
|
|
||||||
|
This list has nothing to do with Systems Science Inc.
|
||||||
|
or its products.
|
||||||
|
|
||||||
|
|
||||||
|
FEEDBACK AND SUPPORT :
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
Please feel free to contact me for any question on V.E.R.A..
|
||||||
|
You are also encouraged to submit new or missing acronyms.
|
||||||
|
|
||||||
|
The official GNU project page is at
|
||||||
|
https://savannah.gnu.org/projects/vera
|
||||||
|
|
||||||
|
Oliver Heidelbach
|
||||||
|
<ohei [at] snafu . de>
|
||||||
|
|
||||||
14
changelog
Normal file
14
changelog
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
2014-01-05 Oliver Heidelbach < ohei [at] snafu . de >
|
||||||
|
|
||||||
|
* vera.texi:
|
||||||
|
Fixed file inclusion error for FDL when using makeinfo.
|
||||||
|
|
||||||
|
* fdl.texi:
|
||||||
|
Now version 1.3 of the FDL is used and the
|
||||||
|
new file name is fdl-1.3.texi.
|
||||||
|
|
||||||
|
|
||||||
|
Copyright 2014 Oliver Heidelbach
|
||||||
|
Copying and distribution of this file, with or without modification, are
|
||||||
|
permitted provided the copyright notice and this notice are preserved.
|
||||||
|
|
||||||
54
contrib/vera.pl
Normal file
54
contrib/vera.pl
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
#! /usr/bin/perl -w
|
||||||
|
#
|
||||||
|
# Andres Soolo <soolo [at] ut . ee> writes:
|
||||||
|
# "Also, I'd like to contribute this non-interactive tool to look up
|
||||||
|
# VERA entries:"
|
||||||
|
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
# Global parameters
|
||||||
|
|
||||||
|
use vars qw/$verainfo/; $verainfo = '/usr/share/info/vera.info.gz';
|
||||||
|
|
||||||
|
# End of global parameters
|
||||||
|
|
||||||
|
# All items in %acronym are wanted; those with empty string as their
|
||||||
|
# values will be reported as unknown.
|
||||||
|
my %acronym = map {uc, ''} @ARGV;
|
||||||
|
|
||||||
|
delete $acronym{''}; # no such
|
||||||
|
|
||||||
|
# Check whether user asked for --help
|
||||||
|
if (not %acronym or defined $acronym{'--HELP'})
|
||||||
|
{
|
||||||
|
print "Usage: vera acronym ...\n";
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
# The MNP5 -> MNP translation. Note that MNP is only weakly wanted.
|
||||||
|
# See 'Acronyms pointing to versions'.
|
||||||
|
s/\d+$// and $acronym{$_} = $_ for keys %acronym;
|
||||||
|
|
||||||
|
open VERA, "zcat $verainfo |" or die "Trouble opening $verainfo: $!";
|
||||||
|
|
||||||
|
print "\n";
|
||||||
|
|
||||||
|
while (%acronym and $_ = <VERA>)
|
||||||
|
{
|
||||||
|
chomp;
|
||||||
|
last if $_ eq 'Examples:'; # No unnecessary duplicates
|
||||||
|
if (defined $acronym{$_})
|
||||||
|
{
|
||||||
|
$acronym{$_} = $_; # Not unknown anymore
|
||||||
|
print "$_\n";
|
||||||
|
while ($_ ne "\n") { $_ = <VERA>; print; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
close VERA;
|
||||||
|
|
||||||
|
delete $acronym{$_} for values %acronym; # Delete weakly wanted ones
|
||||||
|
|
||||||
|
print "Unknown acronyms: ", join (', ', sort keys %acronym), "\n\n" if %acronym;
|
||||||
|
|
||||||
506
fdl-1.3.texi
Normal file
506
fdl-1.3.texi
Normal file
@ -0,0 +1,506 @@
|
|||||||
|
@c The GNU Free Documentation License.
|
||||||
|
@center Version 1.3, 3 November 2008
|
||||||
|
|
||||||
|
@c This file is intended to be included within another document,
|
||||||
|
@c hence no sectioning command or @node.
|
||||||
|
|
||||||
|
@display
|
||||||
|
Copyright @copyright{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
|
||||||
|
@uref{http://fsf.org/}
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
@end display
|
||||||
|
|
||||||
|
@enumerate 0
|
||||||
|
@item
|
||||||
|
PREAMBLE
|
||||||
|
|
||||||
|
The purpose of this License is to make a manual, textbook, or other
|
||||||
|
functional and useful document @dfn{free} in the sense of freedom: to
|
||||||
|
assure everyone the effective freedom to copy and redistribute it,
|
||||||
|
with or without modifying it, either commercially or noncommercially.
|
||||||
|
Secondarily, this License preserves for the author and publisher a way
|
||||||
|
to get credit for their work, while not being considered responsible
|
||||||
|
for modifications made by others.
|
||||||
|
|
||||||
|
This License is a kind of ``copyleft'', which means that derivative
|
||||||
|
works of the document must themselves be free in the same sense. It
|
||||||
|
complements the GNU General Public License, which is a copyleft
|
||||||
|
license designed for free software.
|
||||||
|
|
||||||
|
We have designed this License in order to use it for manuals for free
|
||||||
|
software, because free software needs free documentation: a free
|
||||||
|
program should come with manuals providing the same freedoms that the
|
||||||
|
software does. But this License is not limited to software manuals;
|
||||||
|
it can be used for any textual work, regardless of subject matter or
|
||||||
|
whether it is published as a printed book. We recommend this License
|
||||||
|
principally for works whose purpose is instruction or reference.
|
||||||
|
|
||||||
|
@item
|
||||||
|
APPLICABILITY AND DEFINITIONS
|
||||||
|
|
||||||
|
This License applies to any manual or other work, in any medium, that
|
||||||
|
contains a notice placed by the copyright holder saying it can be
|
||||||
|
distributed under the terms of this License. Such a notice grants a
|
||||||
|
world-wide, royalty-free license, unlimited in duration, to use that
|
||||||
|
work under the conditions stated herein. The ``Document'', below,
|
||||||
|
refers to any such manual or work. Any member of the public is a
|
||||||
|
licensee, and is addressed as ``you''. You accept the license if you
|
||||||
|
copy, modify or distribute the work in a way requiring permission
|
||||||
|
under copyright law.
|
||||||
|
|
||||||
|
A ``Modified Version'' of the Document means any work containing the
|
||||||
|
Document or a portion of it, either copied verbatim, or with
|
||||||
|
modifications and/or translated into another language.
|
||||||
|
|
||||||
|
A ``Secondary Section'' is a named appendix or a front-matter section
|
||||||
|
of the Document that deals exclusively with the relationship of the
|
||||||
|
publishers or authors of the Document to the Document's overall
|
||||||
|
subject (or to related matters) and contains nothing that could fall
|
||||||
|
directly within that overall subject. (Thus, if the Document is in
|
||||||
|
part a textbook of mathematics, a Secondary Section may not explain
|
||||||
|
any mathematics.) The relationship could be a matter of historical
|
||||||
|
connection with the subject or with related matters, or of legal,
|
||||||
|
commercial, philosophical, ethical or political position regarding
|
||||||
|
them.
|
||||||
|
|
||||||
|
The ``Invariant Sections'' are certain Secondary Sections whose titles
|
||||||
|
are designated, as being those of Invariant Sections, in the notice
|
||||||
|
that says that the Document is released under this License. If a
|
||||||
|
section does not fit the above definition of Secondary then it is not
|
||||||
|
allowed to be designated as Invariant. The Document may contain zero
|
||||||
|
Invariant Sections. If the Document does not identify any Invariant
|
||||||
|
Sections then there are none.
|
||||||
|
|
||||||
|
The ``Cover Texts'' are certain short passages of text that are listed,
|
||||||
|
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
|
||||||
|
the Document is released under this License. A Front-Cover Text may
|
||||||
|
be at most 5 words, and a Back-Cover Text may be at most 25 words.
|
||||||
|
|
||||||
|
A ``Transparent'' copy of the Document means a machine-readable copy,
|
||||||
|
represented in a format whose specification is available to the
|
||||||
|
general public, that is suitable for revising the document
|
||||||
|
straightforwardly with generic text editors or (for images composed of
|
||||||
|
pixels) generic paint programs or (for drawings) some widely available
|
||||||
|
drawing editor, and that is suitable for input to text formatters or
|
||||||
|
for automatic translation to a variety of formats suitable for input
|
||||||
|
to text formatters. A copy made in an otherwise Transparent file
|
||||||
|
format whose markup, or absence of markup, has been arranged to thwart
|
||||||
|
or discourage subsequent modification by readers is not Transparent.
|
||||||
|
An image format is not Transparent if used for any substantial amount
|
||||||
|
of text. A copy that is not ``Transparent'' is called ``Opaque''.
|
||||||
|
|
||||||
|
Examples of suitable formats for Transparent copies include plain
|
||||||
|
@sc{ascii} without markup, Texinfo input format, La@TeX{} input
|
||||||
|
format, @acronym{SGML} or @acronym{XML} using a publicly available
|
||||||
|
@acronym{DTD}, and standard-conforming simple @acronym{HTML},
|
||||||
|
PostScript or @acronym{PDF} designed for human modification. Examples
|
||||||
|
of transparent image formats include @acronym{PNG}, @acronym{XCF} and
|
||||||
|
@acronym{JPG}. Opaque formats include proprietary formats that can be
|
||||||
|
read and edited only by proprietary word processors, @acronym{SGML} or
|
||||||
|
@acronym{XML} for which the @acronym{DTD} and/or processing tools are
|
||||||
|
not generally available, and the machine-generated @acronym{HTML},
|
||||||
|
PostScript or @acronym{PDF} produced by some word processors for
|
||||||
|
output purposes only.
|
||||||
|
|
||||||
|
The ``Title Page'' means, for a printed book, the title page itself,
|
||||||
|
plus such following pages as are needed to hold, legibly, the material
|
||||||
|
this License requires to appear in the title page. For works in
|
||||||
|
formats which do not have any title page as such, ``Title Page'' means
|
||||||
|
the text near the most prominent appearance of the work's title,
|
||||||
|
preceding the beginning of the body of the text.
|
||||||
|
|
||||||
|
The ``publisher'' means any person or entity that distributes copies
|
||||||
|
of the Document to the public.
|
||||||
|
|
||||||
|
A section ``Entitled XYZ'' means a named subunit of the Document whose
|
||||||
|
title either is precisely XYZ or contains XYZ in parentheses following
|
||||||
|
text that translates XYZ in another language. (Here XYZ stands for a
|
||||||
|
specific section name mentioned below, such as ``Acknowledgements'',
|
||||||
|
``Dedications'', ``Endorsements'', or ``History''.) To ``Preserve the Title''
|
||||||
|
of such a section when you modify the Document means that it remains a
|
||||||
|
section ``Entitled XYZ'' according to this definition.
|
||||||
|
|
||||||
|
The Document may include Warranty Disclaimers next to the notice which
|
||||||
|
states that this License applies to the Document. These Warranty
|
||||||
|
Disclaimers are considered to be included by reference in this
|
||||||
|
License, but only as regards disclaiming warranties: any other
|
||||||
|
implication that these Warranty Disclaimers may have is void and has
|
||||||
|
no effect on the meaning of this License.
|
||||||
|
|
||||||
|
@item
|
||||||
|
VERBATIM COPYING
|
||||||
|
|
||||||
|
You may copy and distribute the Document in any medium, either
|
||||||
|
commercially or noncommercially, provided that this License, the
|
||||||
|
copyright notices, and the license notice saying this License applies
|
||||||
|
to the Document are reproduced in all copies, and that you add no other
|
||||||
|
conditions whatsoever to those of this License. You may not use
|
||||||
|
technical measures to obstruct or control the reading or further
|
||||||
|
copying of the copies you make or distribute. However, you may accept
|
||||||
|
compensation in exchange for copies. If you distribute a large enough
|
||||||
|
number of copies you must also follow the conditions in section 3.
|
||||||
|
|
||||||
|
You may also lend copies, under the same conditions stated above, and
|
||||||
|
you may publicly display copies.
|
||||||
|
|
||||||
|
@item
|
||||||
|
COPYING IN QUANTITY
|
||||||
|
|
||||||
|
If you publish printed copies (or copies in media that commonly have
|
||||||
|
printed covers) of the Document, numbering more than 100, and the
|
||||||
|
Document's license notice requires Cover Texts, you must enclose the
|
||||||
|
copies in covers that carry, clearly and legibly, all these Cover
|
||||||
|
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
|
||||||
|
the back cover. Both covers must also clearly and legibly identify
|
||||||
|
you as the publisher of these copies. The front cover must present
|
||||||
|
the full title with all words of the title equally prominent and
|
||||||
|
visible. You may add other material on the covers in addition.
|
||||||
|
Copying with changes limited to the covers, as long as they preserve
|
||||||
|
the title of the Document and satisfy these conditions, can be treated
|
||||||
|
as verbatim copying in other respects.
|
||||||
|
|
||||||
|
If the required texts for either cover are too voluminous to fit
|
||||||
|
legibly, you should put the first ones listed (as many as fit
|
||||||
|
reasonably) on the actual cover, and continue the rest onto adjacent
|
||||||
|
pages.
|
||||||
|
|
||||||
|
If you publish or distribute Opaque copies of the Document numbering
|
||||||
|
more than 100, you must either include a machine-readable Transparent
|
||||||
|
copy along with each Opaque copy, or state in or with each Opaque copy
|
||||||
|
a computer-network location from which the general network-using
|
||||||
|
public has access to download using public-standard network protocols
|
||||||
|
a complete Transparent copy of the Document, free of added material.
|
||||||
|
If you use the latter option, you must take reasonably prudent steps,
|
||||||
|
when you begin distribution of Opaque copies in quantity, to ensure
|
||||||
|
that this Transparent copy will remain thus accessible at the stated
|
||||||
|
location until at least one year after the last time you distribute an
|
||||||
|
Opaque copy (directly or through your agents or retailers) of that
|
||||||
|
edition to the public.
|
||||||
|
|
||||||
|
It is requested, but not required, that you contact the authors of the
|
||||||
|
Document well before redistributing any large number of copies, to give
|
||||||
|
them a chance to provide you with an updated version of the Document.
|
||||||
|
|
||||||
|
@item
|
||||||
|
MODIFICATIONS
|
||||||
|
|
||||||
|
You may copy and distribute a Modified Version of the Document under
|
||||||
|
the conditions of sections 2 and 3 above, provided that you release
|
||||||
|
the Modified Version under precisely this License, with the Modified
|
||||||
|
Version filling the role of the Document, thus licensing distribution
|
||||||
|
and modification of the Modified Version to whoever possesses a copy
|
||||||
|
of it. In addition, you must do these things in the Modified Version:
|
||||||
|
|
||||||
|
@enumerate A
|
||||||
|
@item
|
||||||
|
Use in the Title Page (and on the covers, if any) a title distinct
|
||||||
|
from that of the Document, and from those of previous versions
|
||||||
|
(which should, if there were any, be listed in the History section
|
||||||
|
of the Document). You may use the same title as a previous version
|
||||||
|
if the original publisher of that version gives permission.
|
||||||
|
|
||||||
|
@item
|
||||||
|
List on the Title Page, as authors, one or more persons or entities
|
||||||
|
responsible for authorship of the modifications in the Modified
|
||||||
|
Version, together with at least five of the principal authors of the
|
||||||
|
Document (all of its principal authors, if it has fewer than five),
|
||||||
|
unless they release you from this requirement.
|
||||||
|
|
||||||
|
@item
|
||||||
|
State on the Title page the name of the publisher of the
|
||||||
|
Modified Version, as the publisher.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve all the copyright notices of the Document.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Add an appropriate copyright notice for your modifications
|
||||||
|
adjacent to the other copyright notices.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Include, immediately after the copyright notices, a license notice
|
||||||
|
giving the public permission to use the Modified Version under the
|
||||||
|
terms of this License, in the form shown in the Addendum below.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve in that license notice the full lists of Invariant Sections
|
||||||
|
and required Cover Texts given in the Document's license notice.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Include an unaltered copy of this License.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve the section Entitled ``History'', Preserve its Title, and add
|
||||||
|
to it an item stating at least the title, year, new authors, and
|
||||||
|
publisher of the Modified Version as given on the Title Page. If
|
||||||
|
there is no section Entitled ``History'' in the Document, create one
|
||||||
|
stating the title, year, authors, and publisher of the Document as
|
||||||
|
given on its Title Page, then add an item describing the Modified
|
||||||
|
Version as stated in the previous sentence.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve the network location, if any, given in the Document for
|
||||||
|
public access to a Transparent copy of the Document, and likewise
|
||||||
|
the network locations given in the Document for previous versions
|
||||||
|
it was based on. These may be placed in the ``History'' section.
|
||||||
|
You may omit a network location for a work that was published at
|
||||||
|
least four years before the Document itself, or if the original
|
||||||
|
publisher of the version it refers to gives permission.
|
||||||
|
|
||||||
|
@item
|
||||||
|
For any section Entitled ``Acknowledgements'' or ``Dedications'', Preserve
|
||||||
|
the Title of the section, and preserve in the section all the
|
||||||
|
substance and tone of each of the contributor acknowledgements and/or
|
||||||
|
dedications given therein.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve all the Invariant Sections of the Document,
|
||||||
|
unaltered in their text and in their titles. Section numbers
|
||||||
|
or the equivalent are not considered part of the section titles.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Delete any section Entitled ``Endorsements''. Such a section
|
||||||
|
may not be included in the Modified Version.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Do not retitle any existing section to be Entitled ``Endorsements'' or
|
||||||
|
to conflict in title with any Invariant Section.
|
||||||
|
|
||||||
|
@item
|
||||||
|
Preserve any Warranty Disclaimers.
|
||||||
|
@end enumerate
|
||||||
|
|
||||||
|
If the Modified Version includes new front-matter sections or
|
||||||
|
appendices that qualify as Secondary Sections and contain no material
|
||||||
|
copied from the Document, you may at your option designate some or all
|
||||||
|
of these sections as invariant. To do this, add their titles to the
|
||||||
|
list of Invariant Sections in the Modified Version's license notice.
|
||||||
|
These titles must be distinct from any other section titles.
|
||||||
|
|
||||||
|
You may add a section Entitled ``Endorsements'', provided it contains
|
||||||
|
nothing but endorsements of your Modified Version by various
|
||||||
|
parties---for example, statements of peer review or that the text has
|
||||||
|
been approved by an organization as the authoritative definition of a
|
||||||
|
standard.
|
||||||
|
|
||||||
|
You may add a passage of up to five words as a Front-Cover Text, and a
|
||||||
|
passage of up to 25 words as a Back-Cover Text, to the end of the list
|
||||||
|
of Cover Texts in the Modified Version. Only one passage of
|
||||||
|
Front-Cover Text and one of Back-Cover Text may be added by (or
|
||||||
|
through arrangements made by) any one entity. If the Document already
|
||||||
|
includes a cover text for the same cover, previously added by you or
|
||||||
|
by arrangement made by the same entity you are acting on behalf of,
|
||||||
|
you may not add another; but you may replace the old one, on explicit
|
||||||
|
permission from the previous publisher that added the old one.
|
||||||
|
|
||||||
|
The author(s) and publisher(s) of the Document do not by this License
|
||||||
|
give permission to use their names for publicity for or to assert or
|
||||||
|
imply endorsement of any Modified Version.
|
||||||
|
|
||||||
|
@item
|
||||||
|
COMBINING DOCUMENTS
|
||||||
|
|
||||||
|
You may combine the Document with other documents released under this
|
||||||
|
License, under the terms defined in section 4 above for modified
|
||||||
|
versions, provided that you include in the combination all of the
|
||||||
|
Invariant Sections of all of the original documents, unmodified, and
|
||||||
|
list them all as Invariant Sections of your combined work in its
|
||||||
|
license notice, and that you preserve all their Warranty Disclaimers.
|
||||||
|
|
||||||
|
The combined work need only contain one copy of this License, and
|
||||||
|
multiple identical Invariant Sections may be replaced with a single
|
||||||
|
copy. If there are multiple Invariant Sections with the same name but
|
||||||
|
different contents, make the title of each such section unique by
|
||||||
|
adding at the end of it, in parentheses, the name of the original
|
||||||
|
author or publisher of that section if known, or else a unique number.
|
||||||
|
Make the same adjustment to the section titles in the list of
|
||||||
|
Invariant Sections in the license notice of the combined work.
|
||||||
|
|
||||||
|
In the combination, you must combine any sections Entitled ``History''
|
||||||
|
in the various original documents, forming one section Entitled
|
||||||
|
``History''; likewise combine any sections Entitled ``Acknowledgements'',
|
||||||
|
and any sections Entitled ``Dedications''. You must delete all
|
||||||
|
sections Entitled ``Endorsements.''
|
||||||
|
|
||||||
|
@item
|
||||||
|
COLLECTIONS OF DOCUMENTS
|
||||||
|
|
||||||
|
You may make a collection consisting of the Document and other documents
|
||||||
|
released under this License, and replace the individual copies of this
|
||||||
|
License in the various documents with a single copy that is included in
|
||||||
|
the collection, provided that you follow the rules of this License for
|
||||||
|
verbatim copying of each of the documents in all other respects.
|
||||||
|
|
||||||
|
You may extract a single document from such a collection, and distribute
|
||||||
|
it individually under this License, provided you insert a copy of this
|
||||||
|
License into the extracted document, and follow this License in all
|
||||||
|
other respects regarding verbatim copying of that document.
|
||||||
|
|
||||||
|
@item
|
||||||
|
AGGREGATION WITH INDEPENDENT WORKS
|
||||||
|
|
||||||
|
A compilation of the Document or its derivatives with other separate
|
||||||
|
and independent documents or works, in or on a volume of a storage or
|
||||||
|
distribution medium, is called an ``aggregate'' if the copyright
|
||||||
|
resulting from the compilation is not used to limit the legal rights
|
||||||
|
of the compilation's users beyond what the individual works permit.
|
||||||
|
When the Document is included in an aggregate, this License does not
|
||||||
|
apply to the other works in the aggregate which are not themselves
|
||||||
|
derivative works of the Document.
|
||||||
|
|
||||||
|
If the Cover Text requirement of section 3 is applicable to these
|
||||||
|
copies of the Document, then if the Document is less than one half of
|
||||||
|
the entire aggregate, the Document's Cover Texts may be placed on
|
||||||
|
covers that bracket the Document within the aggregate, or the
|
||||||
|
electronic equivalent of covers if the Document is in electronic form.
|
||||||
|
Otherwise they must appear on printed covers that bracket the whole
|
||||||
|
aggregate.
|
||||||
|
|
||||||
|
@item
|
||||||
|
TRANSLATION
|
||||||
|
|
||||||
|
Translation is considered a kind of modification, so you may
|
||||||
|
distribute translations of the Document under the terms of section 4.
|
||||||
|
Replacing Invariant Sections with translations requires special
|
||||||
|
permission from their copyright holders, but you may include
|
||||||
|
translations of some or all Invariant Sections in addition to the
|
||||||
|
original versions of these Invariant Sections. You may include a
|
||||||
|
translation of this License, and all the license notices in the
|
||||||
|
Document, and any Warranty Disclaimers, provided that you also include
|
||||||
|
the original English version of this License and the original versions
|
||||||
|
of those notices and disclaimers. In case of a disagreement between
|
||||||
|
the translation and the original version of this License or a notice
|
||||||
|
or disclaimer, the original version will prevail.
|
||||||
|
|
||||||
|
If a section in the Document is Entitled ``Acknowledgements'',
|
||||||
|
``Dedications'', or ``History'', the requirement (section 4) to Preserve
|
||||||
|
its Title (section 1) will typically require changing the actual
|
||||||
|
title.
|
||||||
|
|
||||||
|
@item
|
||||||
|
TERMINATION
|
||||||
|
|
||||||
|
You may not copy, modify, sublicense, or distribute the Document
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense, or distribute it is void, and
|
||||||
|
will automatically terminate your rights under this License.
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your license
|
||||||
|
from a particular copyright holder is reinstated (a) provisionally,
|
||||||
|
unless and until the copyright holder explicitly and finally
|
||||||
|
terminates your license, and (b) permanently, if the copyright holder
|
||||||
|
fails to notify you of the violation by some reasonable means prior to
|
||||||
|
60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, receipt of a copy of some or all of the same material does
|
||||||
|
not give you any rights to use it.
|
||||||
|
|
||||||
|
@item
|
||||||
|
FUTURE REVISIONS OF THIS LICENSE
|
||||||
|
|
||||||
|
The Free Software Foundation may publish new, revised versions
|
||||||
|
of the GNU Free Documentation License from time to time. Such new
|
||||||
|
versions will be similar in spirit to the present version, but may
|
||||||
|
differ in detail to address new problems or concerns. See
|
||||||
|
@uref{http://www.gnu.org/copyleft/}.
|
||||||
|
|
||||||
|
Each version of the License is given a distinguishing version number.
|
||||||
|
If the Document specifies that a particular numbered version of this
|
||||||
|
License ``or any later version'' applies to it, you have the option of
|
||||||
|
following the terms and conditions either of that specified version or
|
||||||
|
of any later version that has been published (not as a draft) by the
|
||||||
|
Free Software Foundation. If the Document does not specify a version
|
||||||
|
number of this License, you may choose any version ever published (not
|
||||||
|
as a draft) by the Free Software Foundation. If the Document
|
||||||
|
specifies that a proxy can decide which future versions of this
|
||||||
|
License can be used, that proxy's public statement of acceptance of a
|
||||||
|
version permanently authorizes you to choose that version for the
|
||||||
|
Document.
|
||||||
|
|
||||||
|
@item
|
||||||
|
RELICENSING
|
||||||
|
|
||||||
|
``Massive Multiauthor Collaboration Site'' (or ``MMC Site'') means any
|
||||||
|
World Wide Web server that publishes copyrightable works and also
|
||||||
|
provides prominent facilities for anybody to edit those works. A
|
||||||
|
public wiki that anybody can edit is an example of such a server. A
|
||||||
|
``Massive Multiauthor Collaboration'' (or ``MMC'') contained in the
|
||||||
|
site means any set of copyrightable works thus published on the MMC
|
||||||
|
site.
|
||||||
|
|
||||||
|
``CC-BY-SA'' means the Creative Commons Attribution-Share Alike 3.0
|
||||||
|
license published by Creative Commons Corporation, a not-for-profit
|
||||||
|
corporation with a principal place of business in San Francisco,
|
||||||
|
California, as well as future copyleft versions of that license
|
||||||
|
published by that same organization.
|
||||||
|
|
||||||
|
``Incorporate'' means to publish or republish a Document, in whole or
|
||||||
|
in part, as part of another Document.
|
||||||
|
|
||||||
|
An MMC is ``eligible for relicensing'' if it is licensed under this
|
||||||
|
License, and if all works that were first published under this License
|
||||||
|
somewhere other than this MMC, and subsequently incorporated in whole
|
||||||
|
or in part into the MMC, (1) had no cover texts or invariant sections,
|
||||||
|
and (2) were thus incorporated prior to November 1, 2008.
|
||||||
|
|
||||||
|
The operator of an MMC Site may republish an MMC contained in the site
|
||||||
|
under CC-BY-SA on the same site at any time before August 1, 2009,
|
||||||
|
provided the MMC is eligible for relicensing.
|
||||||
|
|
||||||
|
@end enumerate
|
||||||
|
|
||||||
|
@page
|
||||||
|
@heading ADDENDUM: How to use this License for your documents
|
||||||
|
|
||||||
|
To use this License in a document you have written, include a copy of
|
||||||
|
the License in the document and put the following copyright and
|
||||||
|
license notices just after the title page:
|
||||||
|
|
||||||
|
@smallexample
|
||||||
|
@group
|
||||||
|
Copyright (C) @var{year} @var{your name}.
|
||||||
|
Permission is granted to copy, distribute and/or modify this document
|
||||||
|
under the terms of the GNU Free Documentation License, Version 1.3
|
||||||
|
or any later version published by the Free Software Foundation;
|
||||||
|
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
|
||||||
|
Texts. A copy of the license is included in the section entitled ``GNU
|
||||||
|
Free Documentation License''.
|
||||||
|
@end group
|
||||||
|
@end smallexample
|
||||||
|
|
||||||
|
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
|
||||||
|
replace the ``with@dots{}Texts.'' line with this:
|
||||||
|
|
||||||
|
@smallexample
|
||||||
|
@group
|
||||||
|
with the Invariant Sections being @var{list their titles}, with
|
||||||
|
the Front-Cover Texts being @var{list}, and with the Back-Cover Texts
|
||||||
|
being @var{list}.
|
||||||
|
@end group
|
||||||
|
@end smallexample
|
||||||
|
|
||||||
|
If you have Invariant Sections without Cover Texts, or some other
|
||||||
|
combination of the three, merge those two alternatives to suit the
|
||||||
|
situation.
|
||||||
|
|
||||||
|
If your document contains nontrivial examples of program code, we
|
||||||
|
recommend releasing these examples in parallel under your choice of
|
||||||
|
free software license, such as the GNU General Public License,
|
||||||
|
to permit their use in free software.
|
||||||
|
|
||||||
|
@c Local Variables:
|
||||||
|
@c ispell-local-pdict: "ispell-dict"
|
||||||
|
@c End:
|
||||||
|
|
||||||
85
vera.0
Normal file
85
vera.0
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item 100VG
|
||||||
|
100 Voice Grade [technology]
|
||||||
|
|
||||||
|
@item 10GE
|
||||||
|
10 GigaBIT Ethernet (ethernet, BIT)
|
||||||
|
|
||||||
|
@item 1D2B
|
||||||
|
1 D-channel 2 B-channels (BRI, ISDN)
|
||||||
|
|
||||||
|
@item 2B1D
|
||||||
|
2 B-channels 1 D-channel (BRI, ISDN)
|
||||||
|
|
||||||
|
@item 2S2D
|
||||||
|
Double Sided - Double Density (FDD)
|
||||||
|
|
||||||
|
@item 3DC
|
||||||
|
3D Consortium (org., Sanyo, Sharp, Sony, ...)
|
||||||
|
|
||||||
|
@item 3DDDI
|
||||||
|
3D Device Dependent Interface (MS), "3D DDI"
|
||||||
|
|
||||||
|
@item 3DRAM
|
||||||
|
3 Dimensional Random Access Memory (RAM)
|
||||||
|
|
||||||
|
@item 3GIO
|
||||||
|
Third Generation Input/Output (PCIe)
|
||||||
|
|
||||||
|
@item 3GIP
|
||||||
|
3rd Generation . Internet Protocol (org., IP, GPRS, WLAN, mobile-systems), "3G.IP"
|
||||||
|
|
||||||
|
@item 3GL
|
||||||
|
3rd Generation Language
|
||||||
|
|
||||||
|
@item 3GPP
|
||||||
|
Third Generation Partnerships Projects (org.)
|
||||||
|
|
||||||
|
@item 3PCC
|
||||||
|
Third Party Call Control (SIP, RFC 3725)
|
||||||
|
|
||||||
|
@item 4GFC
|
||||||
|
4th Generation Fibre Channel (FC), "4G FC"
|
||||||
|
|
||||||
|
@item 4GL
|
||||||
|
4th Generation Language
|
||||||
|
|
||||||
|
@item 4GT
|
||||||
|
4 GB [RAM] Tuning (RAM, GB)
|
||||||
|
|
||||||
|
@item 4MV
|
||||||
|
4 Motion Vector
|
||||||
|
|
||||||
|
@item 5GL
|
||||||
|
5th Generation Language
|
||||||
|
|
||||||
|
@item 7E1
|
||||||
|
7 [bits], Even [parity], 1 [stop bit] (MODEM, BIT)
|
||||||
|
|
||||||
|
@item 80211HR
|
||||||
|
802.11 High Rate (IEEE, WLAN), "802.11/HR"
|
||||||
|
|
||||||
|
@item 8B10B
|
||||||
|
8 bit / 10 bit [encoding] (IBM, FC, BIT), "8B/10B"
|
||||||
|
|
||||||
|
@item 8N1
|
||||||
|
8 [bits], No [parity bit], 1 [stop bit] (MODEM, BIT)
|
||||||
|
|
||||||
|
@item 8PSK
|
||||||
|
8 Phase Shift Keying (EDGE, mobile-systems)
|
||||||
|
|
||||||
|
@item 8VSB
|
||||||
|
8-Vestigial Side Band, "8-VSB"
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
916
vera.h
Normal file
916
vera.h
Normal file
@ -0,0 +1,916 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item H2U
|
||||||
|
Higher capacity to UMTS (UMTS, WLAN)
|
||||||
|
|
||||||
|
@item H4P
|
||||||
|
High Performance Parallel Processing Project (ICI)
|
||||||
|
|
||||||
|
@item HAAPI
|
||||||
|
Human Authentication Application Program Interface (API), "HA-API"
|
||||||
|
|
||||||
|
@item HACL
|
||||||
|
Host Access Class Library (HOD, API)
|
||||||
|
|
||||||
|
@item HACMP
|
||||||
|
High Availability Clustered Multi Processing (IBM, RS/6000, Bull), "HA/CMP"
|
||||||
|
|
||||||
|
@item HADR
|
||||||
|
High Availability Disaster Recovery (Informix, DB2, DB)
|
||||||
|
|
||||||
|
@item HAL
|
||||||
|
Hackers At Large (org.)
|
||||||
|
|
||||||
|
@item HAL
|
||||||
|
Hard Array Logic
|
||||||
|
|
||||||
|
@item HAL
|
||||||
|
Hardware Abstraction Layer (Windows NT)
|
||||||
|
|
||||||
|
@item HAL
|
||||||
|
Heuristically programmed ALgorithmic computer (2001)
|
||||||
|
|
||||||
|
@item HALPC
|
||||||
|
Houston Area League of PC-Users, "HAL-PC"
|
||||||
|
|
||||||
|
@item HAMPS
|
||||||
|
Host AUTODIN Message Processing System (AUTODIN, mil.)
|
||||||
|
|
||||||
|
@item HAMR
|
||||||
|
Heat Assisted Magnetic Recording (HDD)
|
||||||
|
|
||||||
|
@item HAMX
|
||||||
|
Hardware Accelerated eXcution Manager (Intel)
|
||||||
|
|
||||||
|
@item HAND
|
||||||
|
Have A Nice Day (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item HANFS
|
||||||
|
Highly Available Network File System
|
||||||
|
|
||||||
|
@item HAP
|
||||||
|
High Assurance Platform (NSA, TCG)
|
||||||
|
|
||||||
|
@item HAP
|
||||||
|
Host Access Protocol (RFC 907/1221)
|
||||||
|
|
||||||
|
@item HARQ
|
||||||
|
Hybrid Automatic Re-transmission reQuest (WIMAX)
|
||||||
|
|
||||||
|
@item HAS
|
||||||
|
High Availability Subsystem (Bull)
|
||||||
|
|
||||||
|
@item HAT
|
||||||
|
Hashed Address Table
|
||||||
|
|
||||||
|
@item HAT
|
||||||
|
Help Authoring Tool
|
||||||
|
|
||||||
|
@item HAV
|
||||||
|
High AVailability
|
||||||
|
|
||||||
|
@item HAVI
|
||||||
|
Home Audio Video Interoperability (org., Grundig, Hitachi, Matsushita, Philips, Sharp, Sony, Thomson, Toshiba)
|
||||||
|
|
||||||
|
@item HAXM
|
||||||
|
Hardware Accelerated eXecution Manager (Intel)
|
||||||
|
|
||||||
|
@item HBA
|
||||||
|
Host Bus Adapter (SCSI)
|
||||||
|
|
||||||
|
@item HBAO
|
||||||
|
Horizon-Based Ambient Occlusion (SSAO)
|
||||||
|
|
||||||
|
@item HBBTV
|
||||||
|
Hybrid Broadcast Broadband TV, "HbbTV"
|
||||||
|
|
||||||
|
@item HBCI
|
||||||
|
HomeBanking Computer Interface [old term] Internet, banking, Germany, HBCI
|
||||||
|
|
||||||
|
@item HBM
|
||||||
|
High Bandwidth Memory (DRAM, JEDEC)
|
||||||
|
|
||||||
|
@item HBM
|
||||||
|
Host Buffer Memory (NVMe)
|
||||||
|
|
||||||
|
@item HBP
|
||||||
|
Human Brain Project (Europe)
|
||||||
|
|
||||||
|
@item HBT
|
||||||
|
Hetero Bipolar Transistor (IBM, IC)
|
||||||
|
|
||||||
|
@item HC
|
||||||
|
Handler Compiler (SAX, XML)
|
||||||
|
|
||||||
|
@item HCA
|
||||||
|
Host Channel Adapter (Infiniband)
|
||||||
|
|
||||||
|
@item HCF
|
||||||
|
Hybrid Coordination Function (MAC, 802.11a)
|
||||||
|
|
||||||
|
@item HCI
|
||||||
|
Host Controller Interface (Bluetooth, Linux)
|
||||||
|
|
||||||
|
@item HCI
|
||||||
|
Human Computer Interaction (BCS, conference)
|
||||||
|
|
||||||
|
@item HCID
|
||||||
|
Handwear Computer Input Device
|
||||||
|
|
||||||
|
@item HCL
|
||||||
|
Hardware Certification List (TCPA)
|
||||||
|
|
||||||
|
@item HCL
|
||||||
|
Hardware Compatibility List (MS, Windows)
|
||||||
|
|
||||||
|
@item HCL
|
||||||
|
Host Control Links
|
||||||
|
|
||||||
|
@item HCSDS
|
||||||
|
High Capacity Satellite Digital Service
|
||||||
|
|
||||||
|
@item HCSS
|
||||||
|
High Capacity Storage System (Novell, Netware)
|
||||||
|
|
||||||
|
@item HCT
|
||||||
|
Hamburger ComputerTage (fair)
|
||||||
|
|
||||||
|
@item HCT
|
||||||
|
High-speed CMOS [logic] with TTT-compatible [logic] levels (IC, MOS)
|
||||||
|
|
||||||
|
@item HCTDS
|
||||||
|
High-Capacity Terrestrial Digital Service
|
||||||
|
|
||||||
|
@item HD
|
||||||
|
High Definition [1920x1080]
|
||||||
|
|
||||||
|
@item HD
|
||||||
|
High Density
|
||||||
|
|
||||||
|
@item HDA
|
||||||
|
High Definition Audio (Intel, audio)
|
||||||
|
|
||||||
|
@item HDAM
|
||||||
|
Hierarchical Direct Access Method (DAM)
|
||||||
|
|
||||||
|
@item HDB
|
||||||
|
HoneyDanBer [standard] (Unix)
|
||||||
|
|
||||||
|
@item HDB3
|
||||||
|
High Density Bipolar 3
|
||||||
|
|
||||||
|
@item HDBMS
|
||||||
|
Hierarchical DataBase Management System (DBMS, DB)
|
||||||
|
|
||||||
|
@item HDC
|
||||||
|
Hard Disk Controller
|
||||||
|
|
||||||
|
@item HDCD
|
||||||
|
High Density Compact Disk (CD, Sony, Phillips)
|
||||||
|
|
||||||
|
@item HDCP
|
||||||
|
High-bandwidth Digital Content Protection (DRM, HDMI, cryptography)
|
||||||
|
|
||||||
|
@item HDD
|
||||||
|
Hard Disk Drive (HDD)
|
||||||
|
|
||||||
|
@item HDD
|
||||||
|
Highly Doped Drain (IC, MOSFET)
|
||||||
|
|
||||||
|
@item HDDV
|
||||||
|
High Definition Digital Video (video)
|
||||||
|
|
||||||
|
@item HDDVD
|
||||||
|
High Density Digital Versatile Disk (DVD, NEC, Toshiba), "HD-DVD"
|
||||||
|
|
||||||
|
@item HDF
|
||||||
|
Hierarchical Data Format (NCSA)
|
||||||
|
|
||||||
|
@item HDFS
|
||||||
|
Hadoop Distributed File System (Hadoop)
|
||||||
|
|
||||||
|
@item HDH
|
||||||
|
HDLC Distant Host
|
||||||
|
|
||||||
|
@item HDI
|
||||||
|
High Density Interconnect
|
||||||
|
|
||||||
|
@item HDI
|
||||||
|
HOOPS Device Interface (VAGI)
|
||||||
|
|
||||||
|
@item HDIT
|
||||||
|
High Bandwidth Differential Interconnect Technology [bus] (VIA)
|
||||||
|
|
||||||
|
@item HDL
|
||||||
|
Hardware Description Language (ASIC)
|
||||||
|
|
||||||
|
@item HDLC
|
||||||
|
High-level Data Link Control (ISO)
|
||||||
|
|
||||||
|
@item HDM
|
||||||
|
Hardware Device Module (I2O)
|
||||||
|
|
||||||
|
@item HDMI
|
||||||
|
High Definition Multimedia Interface (DVI, HDTV)
|
||||||
|
|
||||||
|
@item HDML
|
||||||
|
Handheld Device Markup Language (mobile-systems, HDTP)
|
||||||
|
|
||||||
|
@item HDN
|
||||||
|
Hochgeschwindigkeits-DatenNetz
|
||||||
|
|
||||||
|
@item HDOP
|
||||||
|
Horizontal Dilution Of Precision (GPS)
|
||||||
|
|
||||||
|
@item HDOS
|
||||||
|
Heath Disk Operating System (OS, Heath)
|
||||||
|
|
||||||
|
@item HDR
|
||||||
|
High availability Data Replication (Informix, DB)
|
||||||
|
|
||||||
|
@item HDR
|
||||||
|
High Dynamic Range
|
||||||
|
|
||||||
|
@item HDS
|
||||||
|
Hitachi Data Systems (manufacturer)
|
||||||
|
|
||||||
|
@item HDSL
|
||||||
|
High data / bit rate Digital Subscriber Line (BELLCORE, AT&T, DSL, BIT)
|
||||||
|
|
||||||
|
@item HDSL
|
||||||
|
High-level Data Specification Language
|
||||||
|
|
||||||
|
@item HDSP
|
||||||
|
High Definition Sound Performance
|
||||||
|
|
||||||
|
@item HDTP
|
||||||
|
Handheld Device Transport Protocol (mobile-systems)
|
||||||
|
|
||||||
|
@item HDTV
|
||||||
|
High Definition TeleVision
|
||||||
|
|
||||||
|
@item HDX
|
||||||
|
Half DupleX
|
||||||
|
|
||||||
|
@item HE
|
||||||
|
HoehenEinheit [1HE = 19"]
|
||||||
|
|
||||||
|
@item HEA
|
||||||
|
Hyundai Electronics of America (manufacturer)
|
||||||
|
|
||||||
|
@item HEAAC
|
||||||
|
High Efficiency Advanced Audio Coding, "HE-ACC"
|
||||||
|
|
||||||
|
@item HEC
|
||||||
|
HDMI Ethernet Channel (HDMI)
|
||||||
|
|
||||||
|
@item HEC
|
||||||
|
Header Error Check
|
||||||
|
|
||||||
|
@item HEC
|
||||||
|
Header Error Control (ATM)
|
||||||
|
|
||||||
|
@item HECTOR
|
||||||
|
HEterogeneous Computer TOgetheR (IBM, Uni Karlsruhe, Germany)
|
||||||
|
|
||||||
|
@item HEDT
|
||||||
|
High-End DeskTop (Intel)
|
||||||
|
|
||||||
|
@item HEIF
|
||||||
|
High Efficiency Image File format (MPEG)
|
||||||
|
|
||||||
|
@item HEL
|
||||||
|
Hardware Emulation Layer
|
||||||
|
|
||||||
|
@item HEL
|
||||||
|
Header Extension Length
|
||||||
|
|
||||||
|
@item HEMT
|
||||||
|
High Electron Mobility Transistor
|
||||||
|
|
||||||
|
@item HEPNET
|
||||||
|
High Energy Physics NETwork (network)
|
||||||
|
|
||||||
|
@item HERMES
|
||||||
|
Heuristic Emergency Response Management Expert System (XPS)
|
||||||
|
|
||||||
|
@item HERODE
|
||||||
|
Handling the Electronic Representation of mixed text - image Office Documents based on ECMA standard 101 (ESPRIT, SNI, TITN, ECMA, ODA)
|
||||||
|
|
||||||
|
@item HEROS
|
||||||
|
HEeresfuehrungsinformationssystem fuer die Rechnergestuetze Operationsfuehrung in Staeben (Bundeswehr)
|
||||||
|
|
||||||
|
@item HES
|
||||||
|
Home Electronic System (SNI)
|
||||||
|
|
||||||
|
@item HES
|
||||||
|
Honeywell Executive System (OS, Honeywell 800)
|
||||||
|
|
||||||
|
@item HEVC
|
||||||
|
High Efficiency Video Coding (MPEG)
|
||||||
|
|
||||||
|
@item HF
|
||||||
|
Have Fun (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item HFC
|
||||||
|
Hybrid Fiber Coax [network] (DOCSIS)
|
||||||
|
|
||||||
|
@item HFD
|
||||||
|
Hauptanschluss fuer Direktruf / Datenleitung (DTAG), "HfD"
|
||||||
|
|
||||||
|
@item HFDS
|
||||||
|
Highly Functional Distributed System (MTRON)
|
||||||
|
|
||||||
|
@item HFP
|
||||||
|
Hands Free Profile (Bluetooth, SPP)
|
||||||
|
|
||||||
|
@item HFPA
|
||||||
|
High Fidelity Pure Audio (Universal, BD, audio, BDPA)
|
||||||
|
|
||||||
|
@item HFS
|
||||||
|
Hierachical File System (Apple, CD, MACOS)
|
||||||
|
|
||||||
|
@item HFT
|
||||||
|
High Function Terminal (AIX, IBM)
|
||||||
|
|
||||||
|
@item HFTS
|
||||||
|
Hybrid Frustrum Traced Shadows (Nvidia)
|
||||||
|
|
||||||
|
@item HGA
|
||||||
|
Hercules Graphics Adapter
|
||||||
|
|
||||||
|
@item HGC
|
||||||
|
Hercules Graphics Card [720x348]
|
||||||
|
|
||||||
|
@item HHI
|
||||||
|
Heinrich Hertz Institut Org., Germany
|
||||||
|
|
||||||
|
@item HHVM
|
||||||
|
HipHop Virtual Machine (Facebook)
|
||||||
|
|
||||||
|
@item HI
|
||||||
|
Hochschulverband Informationswissenschaften (org.)
|
||||||
|
|
||||||
|
@item HI1
|
||||||
|
Handover Interface 1 (ETSI, ES 201671)
|
||||||
|
|
||||||
|
@item HI2
|
||||||
|
Handover Interface 2 (ETSI, ES 201671)
|
||||||
|
|
||||||
|
@item HI3
|
||||||
|
Handover Interface 3 (ETSI, ES 201671)
|
||||||
|
|
||||||
|
@item HIBP
|
||||||
|
Have I Been Pwned
|
||||||
|
|
||||||
|
@item HIC
|
||||||
|
Human Interaction Component
|
||||||
|
|
||||||
|
@item HIC
|
||||||
|
Hybrid Integrated Circuit
|
||||||
|
|
||||||
|
@item HICANN
|
||||||
|
High Input Count Analog Neural Network
|
||||||
|
|
||||||
|
@item HID
|
||||||
|
Human Interface Device (MS)
|
||||||
|
|
||||||
|
@item HIDAM
|
||||||
|
Hierarchical Indexed Direct Access Method (DAM)
|
||||||
|
|
||||||
|
@item HIFD
|
||||||
|
HIgh capacity Floppy Disk (Sony, Fuji), "HiFD"
|
||||||
|
|
||||||
|
@item HIFI
|
||||||
|
Hypertext Interface For Information (ESPRIT)
|
||||||
|
|
||||||
|
@item HIFIVE
|
||||||
|
HIgh Fidelity Interactive Visual Environment (DEC), "Hi-FIVE"
|
||||||
|
|
||||||
|
@item HIFT
|
||||||
|
Hardware Implemented Fault Tolerance (SIFT)
|
||||||
|
|
||||||
|
@item HIGGENS
|
||||||
|
Human Interface Graphical GENeration System (Uni Colorado)
|
||||||
|
|
||||||
|
@item HINT
|
||||||
|
Hierarchical INTegration [benchmark]
|
||||||
|
|
||||||
|
@item HIP
|
||||||
|
Host Identity Protocol (IETF)
|
||||||
|
|
||||||
|
@item HIPERLAN
|
||||||
|
HIgh PErformance Radio Local Area Network (LAN, ETSI, EN 300 652)
|
||||||
|
|
||||||
|
@item HIPPI
|
||||||
|
HIgh Performance Parallel Interface
|
||||||
|
|
||||||
|
@item HIPPI
|
||||||
|
High Performance Peripheral Interface
|
||||||
|
|
||||||
|
@item HIRD
|
||||||
|
HURD of Interfaces Representing Depth (GNU, HURD)
|
||||||
|
|
||||||
|
@item HIS
|
||||||
|
HerstellerInitiative Software Org., Germany
|
||||||
|
|
||||||
|
@item HISAM
|
||||||
|
Hierarchical Indexed Sequential Access Method (SAM)
|
||||||
|
|
||||||
|
@item HISP
|
||||||
|
HIgh SPeed channel connector (Cray, I/O)
|
||||||
|
|
||||||
|
@item HKS
|
||||||
|
Horowitz Key Server (PGP, GPG, PKS, SKS)
|
||||||
|
|
||||||
|
@item HLG
|
||||||
|
Hybrid-Log Gamma (HDR, TV, BBC, NHK)
|
||||||
|
|
||||||
|
@item HLL
|
||||||
|
High Level Language
|
||||||
|
|
||||||
|
@item HLLAPI
|
||||||
|
High Level Language Application Programming Interface (IBM, API)
|
||||||
|
|
||||||
|
@item HLP
|
||||||
|
High Latency Profile (video, AVC)
|
||||||
|
|
||||||
|
@item HLPI
|
||||||
|
Higher Layer Protocol Identifier
|
||||||
|
|
||||||
|
@item HLR
|
||||||
|
Home Location Register (LR, GSM, GPRS, mobile-systems)
|
||||||
|
|
||||||
|
@item HLRB
|
||||||
|
HoechstLeistungsRechenzentrum Bayern (org.)
|
||||||
|
|
||||||
|
@item HLRS
|
||||||
|
HoechstLeistungsRechenzentrum Stuttgart (org.)
|
||||||
|
|
||||||
|
@item HLS
|
||||||
|
HTTP Live Streaming (Apple, HTTP)
|
||||||
|
|
||||||
|
@item HLS
|
||||||
|
Hue, Luminance, Saturation (color system, DTP)
|
||||||
|
|
||||||
|
@item HLSL
|
||||||
|
High Level Shading Language (DirectX)
|
||||||
|
|
||||||
|
@item HM
|
||||||
|
HyperMemory (graphics)
|
||||||
|
|
||||||
|
@item HMA
|
||||||
|
High Memory Area
|
||||||
|
|
||||||
|
@item HMAC
|
||||||
|
keyed-Hashing for Message AuthentiCation (cryptography, RFC 2104)
|
||||||
|
|
||||||
|
@item HMC
|
||||||
|
Hardware Management Console (IBM, Linux)
|
||||||
|
|
||||||
|
@item HMC
|
||||||
|
Highspeed Memory Controller (Apple)
|
||||||
|
|
||||||
|
@item HMC
|
||||||
|
Hybrid Memory Cube (DRAM)
|
||||||
|
|
||||||
|
@item HMD
|
||||||
|
Head Mounted Display (VR)
|
||||||
|
|
||||||
|
@item HMI
|
||||||
|
Human-Machine Interface
|
||||||
|
|
||||||
|
@item HMM
|
||||||
|
Heterogeneous Memory Management
|
||||||
|
|
||||||
|
@item HMMP
|
||||||
|
HyperMedia Management Protocol (MS, Intel, Cisco, WWW, HMMS)
|
||||||
|
|
||||||
|
@item HMMS
|
||||||
|
HyperMedia Management Schema (MS, Intel, Cisco, WWW)
|
||||||
|
|
||||||
|
@item HMOS
|
||||||
|
High performance Metal Oxide Semiconductor (IC)
|
||||||
|
|
||||||
|
@item HMP
|
||||||
|
Host Monitoring Protocol (RFC 869)
|
||||||
|
|
||||||
|
@item HMUX
|
||||||
|
Hybrid MUltipleXer (FDDI), "H-MUX"
|
||||||
|
|
||||||
|
@item HNA
|
||||||
|
Host and Network Association [message] (OLSR)
|
||||||
|
|
||||||
|
@item HNCP
|
||||||
|
HomeNet Control Protocol
|
||||||
|
|
||||||
|
@item HNF
|
||||||
|
Heinz Nixdorf Museumsforum (org., Paderborn, Germany)
|
||||||
|
|
||||||
|
@item HNI
|
||||||
|
Heinz Nixdorf Institut (org., ZIT)
|
||||||
|
|
||||||
|
@item HOA
|
||||||
|
High Order Ambisonics (MPEG)
|
||||||
|
|
||||||
|
@item HOD
|
||||||
|
Host On Demand (IBM, HOD)
|
||||||
|
|
||||||
|
@item HOL
|
||||||
|
Head Of Line
|
||||||
|
|
||||||
|
@item HOLAP
|
||||||
|
Hybrid OnLine Analytical Processing (OLAP, DB)
|
||||||
|
|
||||||
|
@item HOMERF
|
||||||
|
Home Radio Frequency (WLAN), "HomeRF"
|
||||||
|
|
||||||
|
@item HOOPS
|
||||||
|
Hierarchical Object Orientated Picture System (Ithaca, cardesk, OOP)
|
||||||
|
|
||||||
|
@item HOP
|
||||||
|
Homecast Open Protocol (WLAN, Alation Systems)
|
||||||
|
|
||||||
|
@item HOPP
|
||||||
|
Half Object Plus Protocol
|
||||||
|
|
||||||
|
@item HOS
|
||||||
|
High Order Surfaces (3D)
|
||||||
|
|
||||||
|
@item HOT
|
||||||
|
Heat Orchestration Template
|
||||||
|
|
||||||
|
@item HOTP
|
||||||
|
HMAC-based One-time Password (HMAC)
|
||||||
|
|
||||||
|
@item HP
|
||||||
|
Hewlett Packard (manufacturer)
|
||||||
|
|
||||||
|
@item HPA
|
||||||
|
High Performance Architecture (HP)
|
||||||
|
|
||||||
|
@item HPBIDS
|
||||||
|
Hewlett Packard Broadband Internet Delivery System (HP, Internet), "HP BIDS"
|
||||||
|
|
||||||
|
@item HPC
|
||||||
|
Handheld Personal Computer (PC), "H/PC"
|
||||||
|
|
||||||
|
@item HPC
|
||||||
|
High Performance Computing
|
||||||
|
|
||||||
|
@item HPCC
|
||||||
|
High Performance Computing and Communication
|
||||||
|
|
||||||
|
@item HPCS
|
||||||
|
High Performance Communication Server (Tobit, NLM, Netware)
|
||||||
|
|
||||||
|
@item HPCS
|
||||||
|
High Productivity Computing System (DARPA, Cray, IBM, Sun, ...)
|
||||||
|
|
||||||
|
@item HPE
|
||||||
|
Hewlett Packard Enterprise (HP, manufacturer)
|
||||||
|
|
||||||
|
@item HPET
|
||||||
|
High Precision Event Timer (IC, Intel, MS)
|
||||||
|
|
||||||
|
@item HPF
|
||||||
|
High Performance FORTRAN (FORTRAN)
|
||||||
|
|
||||||
|
@item HPFS
|
||||||
|
High Performance FileSystem (OS/2, FS)
|
||||||
|
|
||||||
|
@item HPG
|
||||||
|
High Performance Group (org., SPEC)
|
||||||
|
|
||||||
|
@item HPGL
|
||||||
|
Hewlett Packard Graphics Language (CAD, CAM, HP)
|
||||||
|
|
||||||
|
@item HPIB
|
||||||
|
Hewlett Packard Interface Bus (GPIB)
|
||||||
|
|
||||||
|
@item HPKP
|
||||||
|
HTTP Public Key Pinning (HHTP, cryptography)
|
||||||
|
|
||||||
|
@item HPLIP
|
||||||
|
Hewlett Packard Linux Imaging and Printing (HP, Linux)
|
||||||
|
|
||||||
|
@item HPM
|
||||||
|
Hyper Page Mode
|
||||||
|
|
||||||
|
@item HPMI
|
||||||
|
Hewlett Packard Model Interface (CAD, HP), "HP-MI"
|
||||||
|
|
||||||
|
@item HPNA
|
||||||
|
???
|
||||||
|
|
||||||
|
@item HPOFS
|
||||||
|
High Performance Optical File System (IBM, OS/2, MOD)
|
||||||
|
|
||||||
|
@item HPPA
|
||||||
|
Hewlett Packard Precision Architecture (HP, RISC)
|
||||||
|
|
||||||
|
@item HPPCL
|
||||||
|
Hewlett Packard Printer Control Language
|
||||||
|
|
||||||
|
@item HPPRM
|
||||||
|
Hewlett Packard Process Resource Manager (HP), "HP PRM"
|
||||||
|
|
||||||
|
@item HPR
|
||||||
|
High Performance Routing
|
||||||
|
|
||||||
|
@item HPR
|
||||||
|
High Priority Request (VUMA)
|
||||||
|
|
||||||
|
@item HPRILOE
|
||||||
|
??? - Remote Insight Lights-Out Edition, "HP-RILOE"
|
||||||
|
|
||||||
|
@item HPS
|
||||||
|
Hardware Product Services
|
||||||
|
|
||||||
|
@item HPS
|
||||||
|
High Performance Switch (IBM)
|
||||||
|
|
||||||
|
@item HPTS
|
||||||
|
High Performance Transaction Systems
|
||||||
|
|
||||||
|
@item HPUX
|
||||||
|
Hewlett Packard / UniX (Unix), "HP/UX"
|
||||||
|
|
||||||
|
@item HPVEE
|
||||||
|
Hewlett-Packard Visual Engineering Environment (HP, GUI), "HP VEE"
|
||||||
|
|
||||||
|
@item HPVUE
|
||||||
|
Hewlett Packard - Visual User Environment (HP, GUI), "HP-VUE"
|
||||||
|
|
||||||
|
@item HQL
|
||||||
|
Hibernate Query Language
|
||||||
|
|
||||||
|
@item HR
|
||||||
|
High Rate (IEEE 802.11)
|
||||||
|
|
||||||
|
@item HRC
|
||||||
|
Hybrid Ring Control (FDDI)
|
||||||
|
|
||||||
|
@item HRFWG
|
||||||
|
Home Radio Frequency Working Group (WLAN, HOMERF)
|
||||||
|
|
||||||
|
@item HRMS
|
||||||
|
Human Resource Management System (Peoplesoft)
|
||||||
|
|
||||||
|
@item HRTF
|
||||||
|
Head Related Transfer Function (VR)
|
||||||
|
|
||||||
|
@item HS
|
||||||
|
High Speed (MODEM)
|
||||||
|
|
||||||
|
@item HSA
|
||||||
|
Heterogenous Systems Architecture (AMD)
|
||||||
|
|
||||||
|
@item HSA
|
||||||
|
High Speed Access
|
||||||
|
|
||||||
|
@item HSB
|
||||||
|
Hue Saturation Brightness (DTP)
|
||||||
|
|
||||||
|
@item HSC
|
||||||
|
Hierarchical Storage Controller
|
||||||
|
|
||||||
|
@item HSC
|
||||||
|
HTML Sucks Completely (HTML, Amiga)
|
||||||
|
|
||||||
|
@item HSCDS
|
||||||
|
High Speed Cable Data Services
|
||||||
|
|
||||||
|
@item HSCSD
|
||||||
|
High Speed Circuit Switched Data (GSM, mobile-systems)
|
||||||
|
|
||||||
|
@item HSD
|
||||||
|
Host Storage Domain (HDS)
|
||||||
|
|
||||||
|
@item HSDPA
|
||||||
|
High Speed Downlink Packet Access (UMTS, HSUPA, mobile-systems)
|
||||||
|
|
||||||
|
@item HSDRAM
|
||||||
|
High-speed Synchronous Random Access Memory (RAM, DRAM, IC)
|
||||||
|
|
||||||
|
@item HSFS
|
||||||
|
High Sierra File System
|
||||||
|
|
||||||
|
@item HSI
|
||||||
|
High Speed Interconnect (Nvidia, AGP, PCIe)
|
||||||
|
|
||||||
|
@item HSI
|
||||||
|
High Speed Interface
|
||||||
|
|
||||||
|
@item HSI
|
||||||
|
Hue, Saturation, Intensity (DTP)
|
||||||
|
|
||||||
|
@item HSIE
|
||||||
|
Homeland Security Information Exchange (Expertelligence, Grid), "HS/IE"
|
||||||
|
|
||||||
|
@item HSIS
|
||||||
|
??? High Speed Interface / SNA, "HSI/S"
|
||||||
|
|
||||||
|
@item HSLAN
|
||||||
|
High Speed Local Area Network, "HS-LAN"
|
||||||
|
|
||||||
|
@item HSLFX
|
||||||
|
Hierarchical Specification Language - Function Extension (HDL, NTT, LSI), "HSL-FX"
|
||||||
|
|
||||||
|
@item HSLN
|
||||||
|
High Speed Local Network
|
||||||
|
|
||||||
|
@item HSM
|
||||||
|
Hardware Security Module (banking)
|
||||||
|
|
||||||
|
@item HSM
|
||||||
|
Hardware Specific Module (ODI)
|
||||||
|
|
||||||
|
@item HSM
|
||||||
|
Hierarchical Storage Management
|
||||||
|
|
||||||
|
@item HSM
|
||||||
|
Hierarchisches SpeicherManagement
|
||||||
|
|
||||||
|
@item HSMD
|
||||||
|
High Speed Mobile Data HSCSD, Germany, E-Plus
|
||||||
|
|
||||||
|
@item HSP
|
||||||
|
[UUNet] HighSpeed Peering
|
||||||
|
|
||||||
|
@item HSP
|
||||||
|
Host Signal Processing (telecommunication, WinModem)
|
||||||
|
|
||||||
|
@item HSPA
|
||||||
|
High Speed Packet Access (UMTS, HSDPA, HSUPA, mobile-systems)
|
||||||
|
|
||||||
|
@item HSR
|
||||||
|
Hidden Surface Removal (3D)
|
||||||
|
|
||||||
|
@item HSRP
|
||||||
|
Hot Standby Router Protocol (Cisco, IOS)
|
||||||
|
|
||||||
|
@item HSSDS
|
||||||
|
High-Speed Switched Digital Service
|
||||||
|
|
||||||
|
@item HSSI
|
||||||
|
High Speed Serial Interface
|
||||||
|
|
||||||
|
@item HSSM
|
||||||
|
Hicommand Storage Services Manager (HDS)
|
||||||
|
|
||||||
|
@item HSSN
|
||||||
|
HighSpeed Switching Network (Cray, ATM)
|
||||||
|
|
||||||
|
@item HST
|
||||||
|
Hawaiian Standard Time [-1030] (TZ)
|
||||||
|
|
||||||
|
@item HST
|
||||||
|
High Soft Tech (manufacturer, ISDN)
|
||||||
|
|
||||||
|
@item HST
|
||||||
|
High Speed Technology (US Robotics)
|
||||||
|
|
||||||
|
@item HSTS
|
||||||
|
HTTP Strict Transport Security (HTTP, cryptography, RFC 6797)
|
||||||
|
|
||||||
|
@item HSUPA
|
||||||
|
High Speed Uplink Packet Access (UMTS, HSDPA)
|
||||||
|
|
||||||
|
@item HSV
|
||||||
|
Hue Saturation Value (color system, DTP)
|
||||||
|
|
||||||
|
@item HSVGA
|
||||||
|
Hex Super VGA (VGA, SVGA, QUXGA)
|
||||||
|
|
||||||
|
@item HSXGA
|
||||||
|
Hex Super XGA [5120x4096] (XGA)
|
||||||
|
|
||||||
|
@item HT
|
||||||
|
Horizontal Tab
|
||||||
|
|
||||||
|
@item HT
|
||||||
|
Hyper-Threading (Intel, Pentium, SMT, CPU)
|
||||||
|
|
||||||
|
@item HTA
|
||||||
|
HTML Applications (MS, HTML)
|
||||||
|
|
||||||
|
@item HTB
|
||||||
|
Hierarchical Token Bucket
|
||||||
|
|
||||||
|
@item HTC
|
||||||
|
Hardware Thermal Controller (AMD, IC, CPU)
|
||||||
|
|
||||||
|
@item HTC
|
||||||
|
HTML Components (MS, OWA, WWW, HTML)
|
||||||
|
|
||||||
|
@item HTCPCP
|
||||||
|
Hyper Text Coffee Pot Control Protocol
|
||||||
|
|
||||||
|
@item HTDM
|
||||||
|
Hybrid Time Division Multiplexing [protocol]
|
||||||
|
|
||||||
|
@item HTF
|
||||||
|
Hyper-g Text Format (Hyper-G)
|
||||||
|
|
||||||
|
@item HTH
|
||||||
|
Hope This Helps (slang)
|
||||||
|
|
||||||
|
@item HTML
|
||||||
|
HyperText Markup Language (Internet, WWW, SGML, RFC 1866/1942, HTML)
|
||||||
|
|
||||||
|
@item HTPC
|
||||||
|
Home Theater Personal Computer (PC)
|
||||||
|
|
||||||
|
@item HTPS
|
||||||
|
High Temperature PolySilicon
|
||||||
|
|
||||||
|
@item HTSI
|
||||||
|
Host Transport Service Interface (ICC, CT-API)
|
||||||
|
|
||||||
|
@item HTTP
|
||||||
|
HyperText Transfer Protocol (WWW, RFC 2068/2616)
|
||||||
|
|
||||||
|
@item HTTPD
|
||||||
|
HyperText Transfer Protocol DAEMON (WWW, HTTP)
|
||||||
|
|
||||||
|
@item HTTPNG
|
||||||
|
HyperText Transfer Protocol - Next Generation (WWW), "HTTP-NG"
|
||||||
|
|
||||||
|
@item HTTPR
|
||||||
|
HyperText Transfer Protocol - Reliable (HTTP, IBM)
|
||||||
|
|
||||||
|
@item HTTPS
|
||||||
|
HyperText Transfer Protocol [SSL] Secured (HTTP, SSL, WWW)
|
||||||
|
|
||||||
|
@item HUD
|
||||||
|
Head-Up Display (AG)
|
||||||
|
|
||||||
|
@item HUGO
|
||||||
|
Holland User Group for OS/2 (org., user group, OS/2, Netherlands)
|
||||||
|
|
||||||
|
@item HUMA
|
||||||
|
Heterogenous Uniform Memory Access (PS4), "hUMA"
|
||||||
|
|
||||||
|
@item HUMAINE
|
||||||
|
HUman-MAchine Interaction Network on Emotion [project] (Europe)
|
||||||
|
|
||||||
|
@item HURD
|
||||||
|
HIRD of Unix-Replacing DAEMONs (GNU, HIRD)
|
||||||
|
|
||||||
|
@item HUXGA
|
||||||
|
Hex Ultra XGA [6400x4800] (XGA)
|
||||||
|
|
||||||
|
@item HVC
|
||||||
|
Holografic Versatile Card
|
||||||
|
|
||||||
|
@item HVC
|
||||||
|
Hue-Value-Chroma [model] (Tektronic, DTP)
|
||||||
|
|
||||||
|
@item HVD
|
||||||
|
High Voltage Differential [technology] (SCSI)
|
||||||
|
|
||||||
|
@item HVD
|
||||||
|
Holografic Versatile Disc
|
||||||
|
|
||||||
|
@item HVD
|
||||||
|
Hosted Virtual Desktop
|
||||||
|
|
||||||
|
@item HVGA
|
||||||
|
Half Video Graphics Array [320×480] (VGA)
|
||||||
|
|
||||||
|
@item HVM
|
||||||
|
Hardware Virtual Machine
|
||||||
|
|
||||||
|
@item HWE
|
||||||
|
HardWare Enablement [stack]] (Linux, Ubuntu)
|
||||||
|
|
||||||
|
@item HWMC
|
||||||
|
HardWare Motion Compensation
|
||||||
|
|
||||||
|
@item HXGA
|
||||||
|
Hex XGA [4096x3072] (XGA)
|
||||||
|
|
||||||
|
@item HYCH
|
||||||
|
Hope You Can Help (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item HYTEA
|
||||||
|
HYperText Environment for Authoring (ESPRIT)
|
||||||
|
|
||||||
|
@item HYTIME
|
||||||
|
Hypermedia/Time-based structuring language (SGML, ISO, IEC, IS 10744), "HyTime"
|
||||||
|
|
||||||
|
@item HYTM
|
||||||
|
HyTime Topic Map (SGML, KM), "HyTM"
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
535
vera.j
Normal file
535
vera.j
Normal file
@ -0,0 +1,535 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item J2EE
|
||||||
|
Java 2 Enterprise Edition (Java, Sun)
|
||||||
|
|
||||||
|
@item J2ME
|
||||||
|
Java 2 Micro Edition (Java, Sun)
|
||||||
|
|
||||||
|
@item J2SE
|
||||||
|
Java 2 Standard Edition (Java, Sun)
|
||||||
|
|
||||||
|
@item JAAS
|
||||||
|
Java Authentication and Authorization Service (Java, API)
|
||||||
|
|
||||||
|
@item JACC
|
||||||
|
Java Authorization Contract for Containers (Java)
|
||||||
|
|
||||||
|
@item JACK
|
||||||
|
Java Application Component Kit (Java)
|
||||||
|
|
||||||
|
@item JACM
|
||||||
|
Journal of the Association for Computing Machinery (ACM)
|
||||||
|
|
||||||
|
@item JAD
|
||||||
|
Joint Application Development
|
||||||
|
|
||||||
|
@item JADE
|
||||||
|
Jasmine Application Development Environment (Jasmine, DB, CA)
|
||||||
|
|
||||||
|
@item JAE
|
||||||
|
Java Application Environment (Java, Sun, JDK)
|
||||||
|
|
||||||
|
@item JAIN
|
||||||
|
Java API for Integrated Networks (Java, API)
|
||||||
|
|
||||||
|
@item JANET
|
||||||
|
Joint Academic NETwork (network, UK)
|
||||||
|
|
||||||
|
@item JAOO
|
||||||
|
Java and Object Orientation [conference]
|
||||||
|
|
||||||
|
@item JAP
|
||||||
|
Java Anon Proxy (Java)
|
||||||
|
|
||||||
|
@item JAPH
|
||||||
|
Just Another PERL Hacker (PERL)
|
||||||
|
|
||||||
|
@item JAR
|
||||||
|
Java ARchive (Java)
|
||||||
|
|
||||||
|
@item JARS
|
||||||
|
Java Applet Rating Service (Java, WWW)
|
||||||
|
|
||||||
|
@item JASS
|
||||||
|
Javascript-Accessable Style Sheets (HTML, WWW, JavaScript)
|
||||||
|
|
||||||
|
@item JASS
|
||||||
|
Jumpstart Architecture and Security Scripts (Sun, Solaris)
|
||||||
|
|
||||||
|
@item JAVAOS
|
||||||
|
Java Operating System (Java), "JavaOS"
|
||||||
|
|
||||||
|
@item JAX
|
||||||
|
[Konferenz fuer] Java, Apache, XML (conference, Java, Apache, XML)
|
||||||
|
|
||||||
|
@item JAX
|
||||||
|
Java API for XML (Java, API, XML)
|
||||||
|
|
||||||
|
@item JAXB
|
||||||
|
Java API for XML Binding (Java, API, XML)
|
||||||
|
|
||||||
|
@item JAXM
|
||||||
|
Java API for XML Messaging (Java, XML, API)
|
||||||
|
|
||||||
|
@item JAXP
|
||||||
|
Java API for XML Processing (Java, API, XML, JSR 206)
|
||||||
|
|
||||||
|
@item JAXR
|
||||||
|
Java API for XML Registries (Java, XML, API), "JAX-R"
|
||||||
|
|
||||||
|
@item JAXRPC
|
||||||
|
Java API for XML-based Remote Procedure Calls (Java, API, XML, RPC), "JAX-RPC"
|
||||||
|
|
||||||
|
@item JAXWS
|
||||||
|
Java API for XML-based Web Services (JAX-RPC, Java), "JAX-WS"
|
||||||
|
|
||||||
|
@item JB
|
||||||
|
Jelly Bean (Android, OS)
|
||||||
|
|
||||||
|
@item JBB
|
||||||
|
Java Business Benchmark (SPEC, Java)
|
||||||
|
|
||||||
|
@item JBC
|
||||||
|
J# Browser Controls (MS, .NET, Java)
|
||||||
|
|
||||||
|
@item JBI
|
||||||
|
Java Business Integration (Java, JSR 208)
|
||||||
|
|
||||||
|
@item JBIG
|
||||||
|
Joint Bi-level Image expert Group (org., JTC1)
|
||||||
|
|
||||||
|
@item JBOD
|
||||||
|
Just a Bunch Of Disks (HDD)
|
||||||
|
|
||||||
|
@item JBOF
|
||||||
|
Just a Bunch Of Flash
|
||||||
|
|
||||||
|
@item JCA
|
||||||
|
Java Cryptography Architecture (Java, API, cryptography)
|
||||||
|
|
||||||
|
@item JCALS
|
||||||
|
Joint Computer-Aided Logistics System (CAL)
|
||||||
|
|
||||||
|
@item JCB
|
||||||
|
Job Control Block (BS2000)
|
||||||
|
|
||||||
|
@item JCDW
|
||||||
|
Java Callable Data Wrapper (Java)
|
||||||
|
|
||||||
|
@item JCE
|
||||||
|
Java Cryptographic / Cryptography Extension (Java, JCA)
|
||||||
|
|
||||||
|
@item JCF
|
||||||
|
JESSI Common Framework
|
||||||
|
|
||||||
|
@item JCK
|
||||||
|
Java Compatibility Kit (Java, Sun)
|
||||||
|
|
||||||
|
@item JCL
|
||||||
|
Job Control Language (IBM, OS/360)
|
||||||
|
|
||||||
|
@item JCO
|
||||||
|
Java COnnector (SAP, R/3, Java, JNI)
|
||||||
|
|
||||||
|
@item JCP
|
||||||
|
Java Community Process (Java, Sun)
|
||||||
|
|
||||||
|
@item JCR
|
||||||
|
Java Content Repository (Java, API, JSR 170)
|
||||||
|
|
||||||
|
@item JCSS
|
||||||
|
??? (org.)
|
||||||
|
|
||||||
|
@item JCW
|
||||||
|
Java Callable Wrapper (MS, Java, VM, COM)
|
||||||
|
|
||||||
|
@item JDBC
|
||||||
|
Java standard DataBase Connectivity (DB, Java, Sun, Borland, ODBC, API)
|
||||||
|
|
||||||
|
@item JDK
|
||||||
|
Java Development Kit (Sun, Java)
|
||||||
|
|
||||||
|
@item JDO
|
||||||
|
Java Data Objects (Java, JSR 12)
|
||||||
|
|
||||||
|
@item JDOM
|
||||||
|
Java Document Object Model (Java)
|
||||||
|
|
||||||
|
@item JDS2
|
||||||
|
Java Desktop System 2 (Sun, Linux, Java)
|
||||||
|
|
||||||
|
@item JDT
|
||||||
|
Java Development Tooling (Java, Eclipse)
|
||||||
|
|
||||||
|
@item JDWP
|
||||||
|
Java Debug Wire Protocol (Java)
|
||||||
|
|
||||||
|
@item JECL
|
||||||
|
Jabber External Component Libraries (Jabber, API)
|
||||||
|
|
||||||
|
@item JED
|
||||||
|
Joomla! Extensions Directory (Joomla)
|
||||||
|
|
||||||
|
@item JEDEC
|
||||||
|
Joint Electronic Devices Engineering Council (org.)
|
||||||
|
|
||||||
|
@item JEE
|
||||||
|
Java Enterprise Edition (J2EE, Java, Sun)
|
||||||
|
|
||||||
|
@item JEIDA
|
||||||
|
Japan Electronics Industry Development Association (org., Japan)
|
||||||
|
|
||||||
|
@item JEITA
|
||||||
|
Japan Electronics and Information Technology industries Association (org. Japan)
|
||||||
|
|
||||||
|
@item JELD
|
||||||
|
Java Event List Daemon (Java)
|
||||||
|
|
||||||
|
@item JEM
|
||||||
|
Java Eclipse Modeling Framework Model (Java, EMF, Eclipse, WTP)
|
||||||
|
|
||||||
|
@item JEMS
|
||||||
|
Jboss Enterprise Middleware System
|
||||||
|
|
||||||
|
@item JES
|
||||||
|
Java Enterprise System (Sun, Java)
|
||||||
|
|
||||||
|
@item JES
|
||||||
|
Job Entry Subsystem (IBM)
|
||||||
|
|
||||||
|
@item JESS
|
||||||
|
Java Expert System Shell (Java, Shell)
|
||||||
|
|
||||||
|
@item JESSI
|
||||||
|
Joint European Submicron Silicon Initiative (Org, Europe)
|
||||||
|
|
||||||
|
@item JET
|
||||||
|
Java Emitter Templates (Java, EMF)
|
||||||
|
|
||||||
|
@item JET
|
||||||
|
Joint Engineering Team
|
||||||
|
|
||||||
|
@item JFC
|
||||||
|
Java Foundation Classes (Java, API, AWT)
|
||||||
|
|
||||||
|
@item JFET
|
||||||
|
Junction Field Effect Transistor (IC, FET)
|
||||||
|
|
||||||
|
@item JFFS
|
||||||
|
Journaling Flash File System (FS, Flash)
|
||||||
|
|
||||||
|
@item JFIF
|
||||||
|
JPEG File Interchange Format (JPEG)
|
||||||
|
|
||||||
|
@item JFS
|
||||||
|
Journaled File System (IBM, HP, FS)
|
||||||
|
|
||||||
|
@item JFS
|
||||||
|
Journalized File System
|
||||||
|
|
||||||
|
@item JFT
|
||||||
|
Job File Table (DOS)
|
||||||
|
|
||||||
|
@item JICST
|
||||||
|
Japan Information Center of Science and Technology (org., Japan)
|
||||||
|
|
||||||
|
@item JIEO
|
||||||
|
Joint Interoperability Engineering Organization (org., DISA, mil., USA)
|
||||||
|
|
||||||
|
@item JIF
|
||||||
|
JPEG Interchange Format (JPEG)
|
||||||
|
|
||||||
|
@item JIG
|
||||||
|
Jabber Interest Group (Jabber)
|
||||||
|
|
||||||
|
@item JIPDEC
|
||||||
|
Japan Information Processing DEvelopment Center (org., Japan)
|
||||||
|
|
||||||
|
@item JIPS
|
||||||
|
JANET Internet Protocol Service (JANET)
|
||||||
|
|
||||||
|
@item JIS
|
||||||
|
Japanese Institute of Standards (org., Japan)
|
||||||
|
|
||||||
|
@item JISC
|
||||||
|
Japanese Industrial Standards Committee (org., Japan)
|
||||||
|
|
||||||
|
@item JIT
|
||||||
|
Just In Time [compiler]
|
||||||
|
|
||||||
|
@item JITC
|
||||||
|
Joint Interoperability Technology Center (org., DISA, mil.)
|
||||||
|
|
||||||
|
@item JK
|
||||||
|
Just Kidding (telecommunication, Usenet, IRC)
|
||||||
|
|
||||||
|
@item JLCA
|
||||||
|
Java Language Conversion Assistant (MS, Java, .NET)
|
||||||
|
|
||||||
|
@item JM
|
||||||
|
Joint Model (AVC)
|
||||||
|
|
||||||
|
@item JMAPI
|
||||||
|
Java Management API (Java, API)
|
||||||
|
|
||||||
|
@item JMF
|
||||||
|
Java Media Format (Java)
|
||||||
|
|
||||||
|
@item JMI
|
||||||
|
Java Metadata Interface (Java)
|
||||||
|
|
||||||
|
@item JMM
|
||||||
|
Java Memory Model (Java)
|
||||||
|
|
||||||
|
@item JMS
|
||||||
|
Java Messages Service (Java, API)
|
||||||
|
|
||||||
|
@item JMSC
|
||||||
|
Japanese MIDI Standard Committee (org., Japan)
|
||||||
|
|
||||||
|
@item JMSWG
|
||||||
|
Joint Multi-TADIL Standards Working Group (org., mil., TADIL)
|
||||||
|
|
||||||
|
@item JMX
|
||||||
|
Java Management eXtensions (Java)
|
||||||
|
|
||||||
|
@item JND
|
||||||
|
Just Noticeable Difference (video)
|
||||||
|
|
||||||
|
@item JNDI
|
||||||
|
Java Naming and Directory Interface (JavaSoft, API, Java)
|
||||||
|
|
||||||
|
@item JNI
|
||||||
|
Java Native method Interface (Java, API)
|
||||||
|
|
||||||
|
@item JNSS
|
||||||
|
??? (org.)
|
||||||
|
|
||||||
|
@item JNT
|
||||||
|
Java Network Technology (Java, Informatec)
|
||||||
|
|
||||||
|
@item JODS
|
||||||
|
Jasmine Object Database Server (Jasmine, DB, CA)
|
||||||
|
|
||||||
|
@item JOHNNIAC
|
||||||
|
JOHN von Neumann Integrator and Automatic Computer
|
||||||
|
|
||||||
|
@item JOL
|
||||||
|
Journal of Online Law (WWW)
|
||||||
|
|
||||||
|
@item JOLT
|
||||||
|
Java OnLine Transactions (Java, Bea, OLTP)
|
||||||
|
|
||||||
|
@item JOOP
|
||||||
|
Journal of Object Orientated Programming (OOP)
|
||||||
|
|
||||||
|
@item JOSL
|
||||||
|
Jabber Open Source License (Jabber)
|
||||||
|
|
||||||
|
@item JOSS
|
||||||
|
JOHNNIAC Open Shop System (OS, JOHNNIAC)
|
||||||
|
|
||||||
|
@item JOSS
|
||||||
|
Joint Object Services Submission
|
||||||
|
|
||||||
|
@item JOTS
|
||||||
|
Joint Operational Tactical System (mil.)
|
||||||
|
|
||||||
|
@item JOVE
|
||||||
|
Jonathan's Own Version of EMACS (EMACS)
|
||||||
|
|
||||||
|
@item JOVIAL
|
||||||
|
Jules Own Version of the International Algorithmic Language
|
||||||
|
|
||||||
|
@item JPA
|
||||||
|
Java Persistence API (Java, API, JEE, EJB)
|
||||||
|
|
||||||
|
@item JPEG
|
||||||
|
Joint Photographics Expert Group (org., JTC1, RFC 1521, JPEG)
|
||||||
|
|
||||||
|
@item JPLDIS
|
||||||
|
Jet Propulsion Laboratory Display Information System
|
||||||
|
|
||||||
|
@item JPM
|
||||||
|
Java Package Manager (MS, Java, VM)
|
||||||
|
|
||||||
|
@item JPS
|
||||||
|
Java Print Service (Java)
|
||||||
|
|
||||||
|
@item JRE
|
||||||
|
Java Runtime Environment (Java)
|
||||||
|
|
||||||
|
@item JRMP
|
||||||
|
Java Remote Method Protocol (Java)
|
||||||
|
|
||||||
|
@item JRPG
|
||||||
|
Japanese Role Playing Game (RPG)
|
||||||
|
|
||||||
|
@item JSA
|
||||||
|
Japanese Standards Association (org., Japan)
|
||||||
|
|
||||||
|
@item JSA
|
||||||
|
Juristische StandardAntwort (slang, Usenet)
|
||||||
|
|
||||||
|
@item JSAI
|
||||||
|
Japanese Society for Artificial Intelligence (org., Japan)
|
||||||
|
|
||||||
|
@item JSAN
|
||||||
|
Joint Staff Automation of the Nineties (mil.)
|
||||||
|
|
||||||
|
@item JSD
|
||||||
|
Jackson System Development (JSP)
|
||||||
|
|
||||||
|
@item JSDK
|
||||||
|
Java Servlet Development Kit (Java, Sun)
|
||||||
|
|
||||||
|
@item JSF
|
||||||
|
JavaServer Faces (Java, J2EE)
|
||||||
|
|
||||||
|
@item JSME
|
||||||
|
Japan Society of Mechanical Engineering (org., Japan)
|
||||||
|
|
||||||
|
@item JSON
|
||||||
|
JavaScript Object Notation (JavaScript, JSON)
|
||||||
|
|
||||||
|
@item JSP
|
||||||
|
Jackson Structured Programming (JSD)
|
||||||
|
|
||||||
|
@item JSP
|
||||||
|
Java Server Pages (Java, Sun, JSP)
|
||||||
|
|
||||||
|
@item JSPA
|
||||||
|
Java Specification Participation Agreement (Java, JCP)
|
||||||
|
|
||||||
|
@item JSPE
|
||||||
|
Japan Society of Professional Engineers (org., Japan)
|
||||||
|
|
||||||
|
@item JSR
|
||||||
|
Java Specification Request (Java, JCP)
|
||||||
|
|
||||||
|
@item JSSA
|
||||||
|
Japan Society for System Audits (org., JIPDEC, Japan)
|
||||||
|
|
||||||
|
@item JSSE
|
||||||
|
Java Secure Socket Extension (Java, API)
|
||||||
|
|
||||||
|
@item JST
|
||||||
|
Japan Standard Time [+0900] (TZ)
|
||||||
|
|
||||||
|
@item JSTL
|
||||||
|
JSP Standard Tag Library (Java, JSP, WSDP)
|
||||||
|
|
||||||
|
@item JT
|
||||||
|
Java Time [+0730] (TZ)
|
||||||
|
|
||||||
|
@item JTA
|
||||||
|
Java Transaction API (Java, API)
|
||||||
|
|
||||||
|
@item JTA
|
||||||
|
Joint Technical Architecture (JIEO, mil.)
|
||||||
|
|
||||||
|
@item JTAG
|
||||||
|
Joint Test Action Group (org., IC)
|
||||||
|
|
||||||
|
@item JTB
|
||||||
|
Jump Trace Buffer (CPU)
|
||||||
|
|
||||||
|
@item JTBP
|
||||||
|
Job To Be Processed [block] (BS2000)
|
||||||
|
|
||||||
|
@item JTBPX
|
||||||
|
Job To Be Processed [block] eXtension (BS2000)
|
||||||
|
|
||||||
|
@item JTC1
|
||||||
|
Joint Technical Committee 1 (ISO, IEC, IT)
|
||||||
|
|
||||||
|
@item JTM
|
||||||
|
Job Transfer and Manipulation (ISO 8831/32)
|
||||||
|
|
||||||
|
@item JTMS
|
||||||
|
Justification based Truth Maintenance System (AI)
|
||||||
|
|
||||||
|
@item JTS
|
||||||
|
Java Transaction Services (Java, API)
|
||||||
|
|
||||||
|
@item JTSSG
|
||||||
|
Joint Telecommunications Standards Steering Group (mil.)
|
||||||
|
|
||||||
|
@item JTWI
|
||||||
|
Java Technology for Wireless Industry (Java, JSR-185)
|
||||||
|
|
||||||
|
@item JUGHEAD
|
||||||
|
Jonzy's Universal Gopher Hierarchy Excavation And Display
|
||||||
|
|
||||||
|
@item JUI
|
||||||
|
Joomla User Interface
|
||||||
|
|
||||||
|
@item JUMBO
|
||||||
|
Java Universal Molecular Browser for Objects (XML)
|
||||||
|
|
||||||
|
@item JUMP
|
||||||
|
JUelich MultiProcessor (IBM)
|
||||||
|
|
||||||
|
@item JUNET
|
||||||
|
Japan Unix NETwork (network, Unix)
|
||||||
|
|
||||||
|
@item JURIS
|
||||||
|
JURistisches InformationsSystem
|
||||||
|
|
||||||
|
@item JV
|
||||||
|
JobVariablen (BS2000)
|
||||||
|
|
||||||
|
@item JVC
|
||||||
|
J++ Visual Compiler (MS, Java)
|
||||||
|
|
||||||
|
@item JVET
|
||||||
|
Joint Video Exploration Team (org., ITU)
|
||||||
|
|
||||||
|
@item JVIDS
|
||||||
|
Joint Visually Integrated Display System (mil.)
|
||||||
|
|
||||||
|
@item JVM
|
||||||
|
Java Virtual Machine (Java)
|
||||||
|
|
||||||
|
@item JVMPI
|
||||||
|
Java Virtual Machine Profiling Interface (Java, JDK)
|
||||||
|
|
||||||
|
@item JVMTI
|
||||||
|
Java Virtual Machine Tool Interface (Java, JVM, J2SE)
|
||||||
|
|
||||||
|
@item JVT
|
||||||
|
Joint Video Team (ITU-T, ISO, IEC, MPEG)
|
||||||
|
|
||||||
|
@item JWE
|
||||||
|
JSON Web Encryption (JSON)
|
||||||
|
|
||||||
|
@item JWICS
|
||||||
|
Joint Worldwide Intelligence Communications System (mil.)
|
||||||
|
|
||||||
|
@item JWS
|
||||||
|
Java Web Services (Java)
|
||||||
|
|
||||||
|
@item JWS
|
||||||
|
Java Web Start (Java, IBM)
|
||||||
|
|
||||||
|
@item JWS
|
||||||
|
Javadoc extensions for Web Services (BEA, Java)
|
||||||
|
|
||||||
|
@item JWS
|
||||||
|
JSON Web Signature (JSON)
|
||||||
|
|
||||||
|
@item JWT
|
||||||
|
JSON Web Token (JSON)
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
283
vera.k
Normal file
283
vera.k
Normal file
@ -0,0 +1,283 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item KAISER
|
||||||
|
Kernel Address Isolation to have Side-channels Efficiently Removed
|
||||||
|
|
||||||
|
@item KAN
|
||||||
|
KriminalAktenNachweis (INPOL)
|
||||||
|
|
||||||
|
@item KARL
|
||||||
|
KAiserslautern Register transfer Language [version II/III] (HDL)
|
||||||
|
|
||||||
|
@item KARL
|
||||||
|
KArlsruhe Register transfer Language [version I] (HDL)
|
||||||
|
|
||||||
|
@item KASLR
|
||||||
|
Kernel Address Space Layout Randomization (OS)
|
||||||
|
|
||||||
|
@item KB
|
||||||
|
KiloByte
|
||||||
|
|
||||||
|
@item KBPS
|
||||||
|
KiloBits Per Second (BIT)
|
||||||
|
|
||||||
|
@item KBS
|
||||||
|
Knowledge-Based System
|
||||||
|
|
||||||
|
@item KCC
|
||||||
|
Knowledge Consistency Checker (AD)
|
||||||
|
|
||||||
|
@item KCCU
|
||||||
|
Keyboard Cursor Control Unit (Airbus, A380)
|
||||||
|
|
||||||
|
@item KCGI
|
||||||
|
Kyocera ??? (Kyocera)
|
||||||
|
|
||||||
|
@item KCGL
|
||||||
|
KyoCera Graphic Language (Kyocera)
|
||||||
|
|
||||||
|
@item KCMS
|
||||||
|
Kodak Color Management System (Kodak, DTP)
|
||||||
|
|
||||||
|
@item KDC
|
||||||
|
Kerberos Domain Controller (Kerberos)
|
||||||
|
|
||||||
|
@item KDC
|
||||||
|
Key Distribution Center (cryptography)
|
||||||
|
|
||||||
|
@item KDD
|
||||||
|
Kokusai Denshin Denwa (org., Japan)
|
||||||
|
|
||||||
|
@item KDE
|
||||||
|
K Destop Environment (Linux, KDE, GUI)
|
||||||
|
|
||||||
|
@item KDM
|
||||||
|
K Display Manager (KDE)
|
||||||
|
|
||||||
|
@item KDM
|
||||||
|
Key Delivery Message (DCI)
|
||||||
|
|
||||||
|
@item KDT
|
||||||
|
Keyboard Display Terminal
|
||||||
|
|
||||||
|
@item KERMIT
|
||||||
|
Kl-10 Error-free Reciprocal Micro Interconnect over Tty lines
|
||||||
|
|
||||||
|
@item KES
|
||||||
|
Key Escrow System (cryptography)
|
||||||
|
|
||||||
|
@item KFM
|
||||||
|
K File Manager (KDE)
|
||||||
|
|
||||||
|
@item KGEM
|
||||||
|
Kernel Generalized Event Management (CA, GPL, Linux)
|
||||||
|
|
||||||
|
@item KGRZ
|
||||||
|
Kommunales GebietsRechenzentrum Giessen (org.)
|
||||||
|
|
||||||
|
@item KHG
|
||||||
|
Kernel Hacking Guide (Linux)
|
||||||
|
|
||||||
|
@item KI
|
||||||
|
Kuenstliche Intelligenz
|
||||||
|
|
||||||
|
@item KIBI
|
||||||
|
KIloBInary [(2^10)^1] (IEC)
|
||||||
|
|
||||||
|
@item KIF
|
||||||
|
Konferenz der Informatik Fachschaften (Konferenz)
|
||||||
|
|
||||||
|
@item KIO
|
||||||
|
K Input / Output (KDE)
|
||||||
|
|
||||||
|
@item KIPI
|
||||||
|
KDE Image Plugin Interface (KDE)
|
||||||
|
|
||||||
|
@item KIPS
|
||||||
|
Kilo Instructions Per Second
|
||||||
|
|
||||||
|
@item KIR
|
||||||
|
Kyocera Image Refinement (Kyocera)
|
||||||
|
|
||||||
|
@item KISS
|
||||||
|
Keep It Simple, Stupid (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item KIT
|
||||||
|
Kernel software for Intelligent Terminals (T-Online, DTAG, BTX)
|
||||||
|
|
||||||
|
@item KK
|
||||||
|
KitKat (Android, OS)
|
||||||
|
|
||||||
|
@item KK
|
||||||
|
Konnectivity Koordination (DE-NIC)
|
||||||
|
|
||||||
|
@item KLICK
|
||||||
|
Karlsruher LIChtleiter-Kommunikationsnetz (Uni Karlsruhe, Germany)
|
||||||
|
|
||||||
|
@item KLIPS
|
||||||
|
Kernel IPSec (Linux, IPSEC)
|
||||||
|
|
||||||
|
@item KLIPS
|
||||||
|
Kilo Logical Inferences Per Second (AI, KI, XPS)
|
||||||
|
|
||||||
|
@item KLT
|
||||||
|
Karhunen Loeve Transformation
|
||||||
|
|
||||||
|
@item KLT
|
||||||
|
Kernel Latency Time
|
||||||
|
|
||||||
|
@item KM
|
||||||
|
Knowledge Management
|
||||||
|
|
||||||
|
@item KMDF
|
||||||
|
Kernel-Mode Driver Framework (UMDF, MS, Windows, Vista)
|
||||||
|
|
||||||
|
@item KMDL
|
||||||
|
Knowledge Modeling and Description Language
|
||||||
|
|
||||||
|
@item KME
|
||||||
|
Kombinat Mikroelektronik Erfurt
|
||||||
|
|
||||||
|
@item KML
|
||||||
|
Keyhole Markup Language (XML, Google)
|
||||||
|
|
||||||
|
@item KMOS
|
||||||
|
Kernel of a Multiprocess Operating System (OS)
|
||||||
|
|
||||||
|
@item KMS
|
||||||
|
Key Management Server (AD)
|
||||||
|
|
||||||
|
@item KMS
|
||||||
|
Knowledge Management Systeme
|
||||||
|
|
||||||
|
@item KNI
|
||||||
|
Katmai New Instructions (Intel, ISSE, predecessor)
|
||||||
|
|
||||||
|
@item KNN
|
||||||
|
Kuenstliche Neuronale Netze (neural nets)
|
||||||
|
|
||||||
|
@item KNOOM
|
||||||
|
KNowledge Orientated Office Model
|
||||||
|
|
||||||
|
@item KOLIBRI
|
||||||
|
KOpal LIBrary for Retrieval and Ingest (KOPAL), "koLibRi"
|
||||||
|
|
||||||
|
@item KOPAL
|
||||||
|
KoOPerativer Aufbau eines Langzeitarchivs
|
||||||
|
|
||||||
|
@item KORE
|
||||||
|
???
|
||||||
|
|
||||||
|
@item KOS
|
||||||
|
Kent On-Line System (OS)
|
||||||
|
|
||||||
|
@item KPCMS
|
||||||
|
Kodak Precision Color Management System (Kodak, DTP)
|
||||||
|
|
||||||
|
@item KPDL
|
||||||
|
Kyocera Page Description Language (Kyocera)
|
||||||
|
|
||||||
|
@item KPI
|
||||||
|
Kernel Programming Interface (Unix, API)
|
||||||
|
|
||||||
|
@item KPM
|
||||||
|
Kyocera PrintMonitor (Kyocera)
|
||||||
|
|
||||||
|
@item KPOP
|
||||||
|
Kerberized Post Office Protocol (POP3)
|
||||||
|
|
||||||
|
@item KPT
|
||||||
|
Kai's PowerTools (DTP)
|
||||||
|
|
||||||
|
@item KPTI
|
||||||
|
Kernel Page-Table Isolation (OS)
|
||||||
|
|
||||||
|
@item KQML
|
||||||
|
Knowledge Query Manipulation Language (AI)
|
||||||
|
|
||||||
|
@item KR
|
||||||
|
[brian] Kernighan & [dennis] Ritchie [c standard], "K&R"
|
||||||
|
|
||||||
|
@item KR
|
||||||
|
Knowledge Representation (AI)
|
||||||
|
|
||||||
|
@item KRA
|
||||||
|
Key Recovery Alliance (org., cryptography)
|
||||||
|
|
||||||
|
@item KRACK
|
||||||
|
Key Installation AttaCK (WPA, WLAN)
|
||||||
|
|
||||||
|
@item KSA
|
||||||
|
Kalman Saffran Associates (manufacturer)
|
||||||
|
|
||||||
|
@item KSA
|
||||||
|
KommunikationsStrukturAnalyse (OA, TUB)
|
||||||
|
|
||||||
|
@item KSDS
|
||||||
|
Key Sequenced Data Set (VSAM)
|
||||||
|
|
||||||
|
@item KSH
|
||||||
|
Key Strokes per Hour
|
||||||
|
|
||||||
|
@item KSH
|
||||||
|
Korn SHell (Unix, Shell)
|
||||||
|
|
||||||
|
@item KSIG
|
||||||
|
Khronos Special Interest Group
|
||||||
|
|
||||||
|
@item KSK
|
||||||
|
Key Signing Key (ZSK)
|
||||||
|
|
||||||
|
@item KSLNRC
|
||||||
|
Knowledge Systems Laboratory of the National Research Council (org., Canada, AI)
|
||||||
|
|
||||||
|
@item KSN
|
||||||
|
Kaspersky Security Network
|
||||||
|
|
||||||
|
@item KSOS
|
||||||
|
Kernelized Secure Operating System (OS)
|
||||||
|
|
||||||
|
@item KSPM
|
||||||
|
KeyStrokes Per Minute
|
||||||
|
|
||||||
|
@item KSR
|
||||||
|
Keyboard Send Receive
|
||||||
|
|
||||||
|
@item KSS
|
||||||
|
Kilo-Samples per Second
|
||||||
|
|
||||||
|
@item KUTGW
|
||||||
|
Keep Up The Good Work (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item KV
|
||||||
|
KabelVerzweiger
|
||||||
|
|
||||||
|
@item KV
|
||||||
|
Karnaugh Veitch diagram
|
||||||
|
|
||||||
|
@item KVA
|
||||||
|
Kernel Virtual Address [space]
|
||||||
|
|
||||||
|
@item KVM
|
||||||
|
Kernel-based Virtual Machine (Linux, VM)
|
||||||
|
|
||||||
|
@item KVM
|
||||||
|
Keyboard, Video, Mouse
|
||||||
|
|
||||||
|
@item KVM
|
||||||
|
Kilobyte Virtual Machine (Java, Sun, MIDP)
|
||||||
|
|
||||||
|
@item KWM
|
||||||
|
K Window Manager (KDE)
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
283
vera.q
Normal file
283
vera.q
Normal file
@ -0,0 +1,283 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item QA
|
||||||
|
Quality Assurance
|
||||||
|
|
||||||
|
@item QA
|
||||||
|
Question & Answers, "Q&A"
|
||||||
|
|
||||||
|
@item QA
|
||||||
|
Quick Arbitration (HD)
|
||||||
|
|
||||||
|
@item QAM
|
||||||
|
Quadrature Amplitude Modulation (HiperLAN/2, 802.11a)
|
||||||
|
|
||||||
|
@item QAP
|
||||||
|
Quality-Assurance Program (QA)
|
||||||
|
|
||||||
|
@item QAPI
|
||||||
|
Quality-Assurance Program Inspections (QA)
|
||||||
|
|
||||||
|
@item QAPI
|
||||||
|
Queue Application Program Interface (SAP, API)
|
||||||
|
|
||||||
|
@item QAPP
|
||||||
|
Quality-Assurance Program Plan (QA)
|
||||||
|
|
||||||
|
@item QAS
|
||||||
|
Quasi-Associated Signaling
|
||||||
|
|
||||||
|
@item QAT
|
||||||
|
Quick Assist Technology (Intel)
|
||||||
|
|
||||||
|
@item QBASIC
|
||||||
|
Quick Beginner's All-purpose Symbolic Instruction Code (BASIC, DOS)
|
||||||
|
|
||||||
|
@item QBBS
|
||||||
|
Quick Bulletin Board System (BBS)
|
||||||
|
|
||||||
|
@item QBE
|
||||||
|
Query By Example (DB)
|
||||||
|
|
||||||
|
@item QBF
|
||||||
|
Query By Forms (DB)
|
||||||
|
|
||||||
|
@item QBH
|
||||||
|
Query By Humming (DB, audio), "QbH"
|
||||||
|
|
||||||
|
@item QBIC
|
||||||
|
Query By Image Content (IBM)
|
||||||
|
|
||||||
|
@item QBS
|
||||||
|
Query By Struct (DB)
|
||||||
|
|
||||||
|
@item QC
|
||||||
|
Quad Core (CPU)
|
||||||
|
|
||||||
|
@item QCA
|
||||||
|
Quantum-dot Cellular Automata
|
||||||
|
|
||||||
|
@item QCB
|
||||||
|
Queue Control Block
|
||||||
|
|
||||||
|
@item QCDP
|
||||||
|
Quality Color Dithering Modus
|
||||||
|
|
||||||
|
@item QCIF
|
||||||
|
Quarter Common Interchange Format [176 x 144]
|
||||||
|
|
||||||
|
@item QCIF
|
||||||
|
Quarter Common Intermediate Format [176x144] (video)
|
||||||
|
|
||||||
|
@item QCM
|
||||||
|
Quad Core Modul (IBM, DCM)
|
||||||
|
|
||||||
|
@item QCT
|
||||||
|
Quanta Cloud Technologies
|
||||||
|
|
||||||
|
@item QD
|
||||||
|
Queueing Delay
|
||||||
|
|
||||||
|
@item QDEF
|
||||||
|
Quantum Dot Enhancment Film (3M)
|
||||||
|
|
||||||
|
@item QDL
|
||||||
|
Quadri Data Layer [CD] (CD)
|
||||||
|
|
||||||
|
@item QDOS
|
||||||
|
Quick and Dirty Operating System (OS, PC, MS-DOS, predecessor)
|
||||||
|
|
||||||
|
@item QDP
|
||||||
|
Quad-Die -Package
|
||||||
|
|
||||||
|
@item QDR
|
||||||
|
Quad Data Rate (SDR, GDR, ODR)
|
||||||
|
|
||||||
|
@item QEMM
|
||||||
|
Quarterdeck Expanded Memory Manager (EMM, Quarterdeck)
|
||||||
|
|
||||||
|
@item QEMU
|
||||||
|
Quick EMUlator (Linux)
|
||||||
|
|
||||||
|
@item QF
|
||||||
|
Query Filter (DB)
|
||||||
|
|
||||||
|
@item QFA
|
||||||
|
Quick File Access
|
||||||
|
|
||||||
|
@item QFE
|
||||||
|
Quick Fix Engineering (MS)
|
||||||
|
|
||||||
|
@item QFHD
|
||||||
|
Quad Full High Definition
|
||||||
|
|
||||||
|
@item QFP
|
||||||
|
Quad Flat Pack
|
||||||
|
|
||||||
|
@item QHD
|
||||||
|
Quarter High Definition [640x360], [960x540] (HD)
|
||||||
|
|
||||||
|
@item QIC
|
||||||
|
Quarter Inch Committee (org., Streamer)
|
||||||
|
|
||||||
|
@item QICSC
|
||||||
|
Quarter Inch Cartridge Standards Committee (QIC)
|
||||||
|
|
||||||
|
@item QICW
|
||||||
|
Quarter Inch Cartridge Wide (QIC)
|
||||||
|
|
||||||
|
@item QIS
|
||||||
|
Quality Information System
|
||||||
|
|
||||||
|
@item QL
|
||||||
|
Query Language
|
||||||
|
|
||||||
|
@item QLC
|
||||||
|
Quadruple Level Cell (Flash)
|
||||||
|
|
||||||
|
@item QLD
|
||||||
|
Queuing Literature Database (DB)
|
||||||
|
|
||||||
|
@item QLI
|
||||||
|
Query Language Interpreter
|
||||||
|
|
||||||
|
@item QLLC
|
||||||
|
Qualified Logical Link Control [protocol] (IBM)
|
||||||
|
|
||||||
|
@item QMB
|
||||||
|
Quad Band Memory (IC)
|
||||||
|
|
||||||
|
@item QMC
|
||||||
|
Quine McCluskey approach
|
||||||
|
|
||||||
|
@item QMF
|
||||||
|
Query Management Facility (IBM)
|
||||||
|
|
||||||
|
@item QML
|
||||||
|
Qt Meta / Modeling Language
|
||||||
|
|
||||||
|
@item QMR
|
||||||
|
Quarterly Maintenance Releases (Lotus)
|
||||||
|
|
||||||
|
@item QMS
|
||||||
|
Queue Management Service (Netware)
|
||||||
|
|
||||||
|
@item QOS
|
||||||
|
Quality Of Service (ATM, CLR, CTD, CDV), "QoS"
|
||||||
|
|
||||||
|
@item QP
|
||||||
|
Queue Pair (Infiniband, HCA)
|
||||||
|
|
||||||
|
@item QPA
|
||||||
|
Quality Program Analysis
|
||||||
|
|
||||||
|
@item QPE
|
||||||
|
Qtopia Palmtop Environment (PDA)
|
||||||
|
|
||||||
|
@item QPEL
|
||||||
|
Quarter PixEL (DivX, video), "QPel"
|
||||||
|
|
||||||
|
@item QPI
|
||||||
|
Quick Path Interconnect
|
||||||
|
|
||||||
|
@item QPI
|
||||||
|
Quick Path Interface
|
||||||
|
|
||||||
|
@item QPL
|
||||||
|
Q Public License
|
||||||
|
|
||||||
|
@item QPS
|
||||||
|
Quark Publishing System (DTP)
|
||||||
|
|
||||||
|
@item QPSK
|
||||||
|
Quadri Phase Shift Keying [modulation] (HiperLAN/2, , 802.11a)
|
||||||
|
|
||||||
|
@item QPSX
|
||||||
|
Queue Packet and Synchronous circuit Exchange
|
||||||
|
|
||||||
|
@item QPU
|
||||||
|
Quick Pascal Units (MS)
|
||||||
|
|
||||||
|
@item QR
|
||||||
|
Quick Response [code]
|
||||||
|
|
||||||
|
@item QSA
|
||||||
|
Qt Script for Applications
|
||||||
|
|
||||||
|
@item QSA
|
||||||
|
Query String Append (HTTPD, Apache)
|
||||||
|
|
||||||
|
@item QSAM
|
||||||
|
Queued Sequential Access Method (SAM)
|
||||||
|
|
||||||
|
@item QSU
|
||||||
|
Quatech Serial to USB [adapter] (USB)
|
||||||
|
|
||||||
|
@item QSVGA
|
||||||
|
Quarter SVGA [400x300] (SVGA, VGA)
|
||||||
|
|
||||||
|
@item QSXGA
|
||||||
|
Quad Super XGA [2560x2048] (XGA)
|
||||||
|
|
||||||
|
@item QTAM
|
||||||
|
Queued Terminal Access Method
|
||||||
|
|
||||||
|
@item QTC
|
||||||
|
Quantum Tunneling Composite [polymer]
|
||||||
|
|
||||||
|
@item QTE
|
||||||
|
Quick-Time-Event
|
||||||
|
|
||||||
|
@item QTVR
|
||||||
|
QuickTime Virtual Reality (Apple, VR)
|
||||||
|
|
||||||
|
@item QUEST
|
||||||
|
Quality Excellence for Suppliers of Telecommunication Leadership (org.), "QuEST"
|
||||||
|
|
||||||
|
@item QUEX
|
||||||
|
Query Update by EXample
|
||||||
|
|
||||||
|
@item QUHD
|
||||||
|
Quad Ultra HD [15360x8640] (HD)
|
||||||
|
|
||||||
|
@item QUIC
|
||||||
|
Quick UDP Internet Connections (UDP, Google)
|
||||||
|
|
||||||
|
@item QUICC
|
||||||
|
QUad Integrated Communications Controller (Motorola)
|
||||||
|
|
||||||
|
@item QUIP
|
||||||
|
QUad In-line Package
|
||||||
|
|
||||||
|
@item QUIPS
|
||||||
|
QUality Improvements Per Second
|
||||||
|
|
||||||
|
@item QUXGA
|
||||||
|
Quad Ultra XGA [3200x2400] (XGA, HSVGA)
|
||||||
|
|
||||||
|
@item QVGA
|
||||||
|
Quarter Video Graphics Array [320 x 240] (VGA)
|
||||||
|
|
||||||
|
@item QWAVE
|
||||||
|
Quality Windows Audio Video Experience (MS, Windows)
|
||||||
|
|
||||||
|
@item QWUXGA
|
||||||
|
Quad Wide Ultra XGA [3840x2400] (XGA, WQUXGA)
|
||||||
|
|
||||||
|
@item QXGA
|
||||||
|
Quantum Extended Graphics Array [2048 x 1536]
|
||||||
|
|
||||||
|
@item QXI
|
||||||
|
Queue eXecutive Interface
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
796
vera.u
Normal file
796
vera.u
Normal file
@ -0,0 +1,796 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item U2F
|
||||||
|
Universal Second Factor (FIDO-Alliance)
|
||||||
|
|
||||||
|
@item U3D
|
||||||
|
Universal 3 Dimensional [format] (3D)
|
||||||
|
|
||||||
|
@item UA
|
||||||
|
Unnumbered Acknowledgement
|
||||||
|
|
||||||
|
@item UA
|
||||||
|
Upgrade Advantage (MS)
|
||||||
|
|
||||||
|
@item UA
|
||||||
|
User Agent (MHS, OSI)
|
||||||
|
|
||||||
|
@item UAA
|
||||||
|
Universal Audio Architecture (MS, Windows, XP)
|
||||||
|
|
||||||
|
@item UAA
|
||||||
|
UnternehmensAnwendungsArchitektur (IM)
|
||||||
|
|
||||||
|
@item UAAG
|
||||||
|
User Agent Accessibility Guidelines (WAI)
|
||||||
|
|
||||||
|
@item UAB
|
||||||
|
Unix Appletalk Bridge (Apple, AppleTalk, Unix)
|
||||||
|
|
||||||
|
@item UAC
|
||||||
|
Universal Access Control (IBM)
|
||||||
|
|
||||||
|
@item UAC
|
||||||
|
User Account Control (MS, Windows, Vista)
|
||||||
|
|
||||||
|
@item UADPS
|
||||||
|
Uniform Automatic Data Processing System
|
||||||
|
|
||||||
|
@item UADSL
|
||||||
|
Universal Asymmetric Digital Subscriber Line (DSL, ADSL)
|
||||||
|
|
||||||
|
@item UAE
|
||||||
|
Universal Amiga Emulator (Amiga)
|
||||||
|
|
||||||
|
@item UAE
|
||||||
|
Unknown / Unrecoverable Application Error (Windows)
|
||||||
|
|
||||||
|
@item UAF
|
||||||
|
Universal Authentication Framework (FIDO-Alliance)
|
||||||
|
|
||||||
|
@item UAF
|
||||||
|
User Authorization File
|
||||||
|
|
||||||
|
@item UAP
|
||||||
|
User Account Protection (MS, Windows, Vista)
|
||||||
|
|
||||||
|
@item UAPDU
|
||||||
|
User Agent Protocol Data Unit (PDU)
|
||||||
|
|
||||||
|
@item UART
|
||||||
|
Universal Asynchronous Receive and Transmit
|
||||||
|
|
||||||
|
@item UAS
|
||||||
|
UnAvailable Seconds (DS1/E1, DS3/E3)
|
||||||
|
|
||||||
|
@item UAS
|
||||||
|
USB-Attached SCSI (USB, SCSI)
|
||||||
|
|
||||||
|
@item UASP
|
||||||
|
USB Attached SCSI Protocol (USB, SCSI)
|
||||||
|
|
||||||
|
@item UAWG
|
||||||
|
Universal ADSL Working Group (Org, ADSL, DSL)
|
||||||
|
|
||||||
|
@item UBA
|
||||||
|
UniBus Adapter (DEC)
|
||||||
|
|
||||||
|
@item UBC
|
||||||
|
Unified Buffer Cache
|
||||||
|
|
||||||
|
@item UBE
|
||||||
|
Unsolicited Bulk Email (spam, Internet, UCE)
|
||||||
|
|
||||||
|
@item UBL
|
||||||
|
Universal Business Language (OASIS, XML)
|
||||||
|
|
||||||
|
@item UBNI
|
||||||
|
Ungermann-Bass Network Interface
|
||||||
|
|
||||||
|
@item UBR
|
||||||
|
Unspecified Bit Rate (ATM, CBR, VBR, ABR, QOS, BIT)
|
||||||
|
|
||||||
|
@item UBSAN
|
||||||
|
Undefined Behavior Sanitizer (GCC), "UBSan"
|
||||||
|
|
||||||
|
@item UBU
|
||||||
|
UEFI BIOS Updater
|
||||||
|
|
||||||
|
@item UC
|
||||||
|
Universal Code (Internet)
|
||||||
|
|
||||||
|
@item UC
|
||||||
|
User Customization (mobile-systems)
|
||||||
|
|
||||||
|
@item UCA
|
||||||
|
Utility Communication Architecture
|
||||||
|
|
||||||
|
@item UCC
|
||||||
|
Uniform Code Council (USA)
|
||||||
|
|
||||||
|
@item UCC
|
||||||
|
Uniform Commercial Code
|
||||||
|
|
||||||
|
@item UCE
|
||||||
|
Unsolicited Commercial E-mail (Usenet, spam, UBE)
|
||||||
|
|
||||||
|
@item UCFF
|
||||||
|
Ultra Compact Form Factor
|
||||||
|
|
||||||
|
@item UCI
|
||||||
|
User-Computer Interface
|
||||||
|
|
||||||
|
@item UCITA
|
||||||
|
Uniform Computer Information Transaction Act (USA, DRM)
|
||||||
|
|
||||||
|
@item UCLA
|
||||||
|
University of California at Los Angeles (org., USA)
|
||||||
|
|
||||||
|
@item UCLAVM
|
||||||
|
UCLA Virtual Machine (OS, UCLA, VM), "UCLA VM"
|
||||||
|
|
||||||
|
@item UCM
|
||||||
|
[rational] Unified Change Management (IBM, DCT, SCM)
|
||||||
|
|
||||||
|
@item UCP
|
||||||
|
Universal Computer Protocol (SMS, Europe)
|
||||||
|
|
||||||
|
@item UCR
|
||||||
|
Under Color Removal (DTP)
|
||||||
|
|
||||||
|
@item UCS
|
||||||
|
Unified Computing System (Cisco)
|
||||||
|
|
||||||
|
@item UCS
|
||||||
|
Univention Corporate Server
|
||||||
|
|
||||||
|
@item UCS
|
||||||
|
Universal [multiple-octet] coded Character Set (ISO, IEC, DIS 10646, Unicode)
|
||||||
|
|
||||||
|
@item UCS
|
||||||
|
Universal Classification System
|
||||||
|
|
||||||
|
@item UCSB
|
||||||
|
University of California at Santa Barbara (org. USA)
|
||||||
|
|
||||||
|
@item UCSD
|
||||||
|
University California San Diego (org., USA)
|
||||||
|
|
||||||
|
@item UDA
|
||||||
|
Unified Driver Architecture (Nvidia)
|
||||||
|
|
||||||
|
@item UDB
|
||||||
|
Universal DataBase [server] (IBM, DB)
|
||||||
|
|
||||||
|
@item UDC
|
||||||
|
Universal Decimal Classification
|
||||||
|
|
||||||
|
@item UDC
|
||||||
|
Universal Display Corporation (manufacturer)
|
||||||
|
|
||||||
|
@item UDDI
|
||||||
|
Universal Description, Discovery and Integration of business for the web (org., WWW, XML)
|
||||||
|
|
||||||
|
@item UDF
|
||||||
|
Universal Disc Format (CD, OSTA)
|
||||||
|
|
||||||
|
@item UDF
|
||||||
|
User Defined Function
|
||||||
|
|
||||||
|
@item UDI
|
||||||
|
Unified Display Interface
|
||||||
|
|
||||||
|
@item UDIAGS
|
||||||
|
Und Das Ist Auch Gut So (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item UDIMM
|
||||||
|
Unbuffered Dual Inline Memory Module
|
||||||
|
|
||||||
|
@item UDK
|
||||||
|
UmweltDatenKatalog (NUIS-SH)
|
||||||
|
|
||||||
|
@item UDK
|
||||||
|
Unreal Development Kit
|
||||||
|
|
||||||
|
@item UDLI
|
||||||
|
Unified Design Language for integrated circuits / I (HDL), "UDL/I"
|
||||||
|
|
||||||
|
@item UDMA
|
||||||
|
Ultra Direct Memory Access (DMA, ATA)
|
||||||
|
|
||||||
|
@item UDO
|
||||||
|
Ultra Density Optical (Plasmon, HP, ECMA 350, ISO/IEC 17345)
|
||||||
|
|
||||||
|
@item UDO
|
||||||
|
User Defined Objects
|
||||||
|
|
||||||
|
@item UDOR
|
||||||
|
Ultra Density Optical - Recordable (UDO), "UDO-R"
|
||||||
|
|
||||||
|
@item UDORW
|
||||||
|
Ultra Density Optical - ReWritable (UDO), "UDO-RW"
|
||||||
|
|
||||||
|
@item UDP
|
||||||
|
Usenet Death Penalty (Usenet, spam)
|
||||||
|
|
||||||
|
@item UDP
|
||||||
|
User Datagram Protocol (Internet, RFC 768)
|
||||||
|
|
||||||
|
@item UDPIP
|
||||||
|
User Datagram Protocol / Internet Protocol (IP), "UDP/IP"
|
||||||
|
|
||||||
|
@item UDRP
|
||||||
|
Uniform [Domain-name] Dispute Resolution Policy (ICANN)
|
||||||
|
|
||||||
|
@item UDSL
|
||||||
|
Universal Digital Subscriber Line
|
||||||
|
|
||||||
|
@item UDT
|
||||||
|
User-defined DataType (DB)
|
||||||
|
|
||||||
|
@item UDVM
|
||||||
|
Universal Data Voice Multiplexer
|
||||||
|
|
||||||
|
@item UE
|
||||||
|
User Equipment (mobile-systems, UMTS, GSM)
|
||||||
|
|
||||||
|
@item UEFI
|
||||||
|
Unified Extended Firmware Interface
|
||||||
|
|
||||||
|
@item UEIDE
|
||||||
|
Ultra Enhanced Integrated Drive Electronics (IDE, HDD)
|
||||||
|
|
||||||
|
@item UER
|
||||||
|
Unrecoverable Error Rate
|
||||||
|
|
||||||
|
@item UEV
|
||||||
|
User End of Volume
|
||||||
|
|
||||||
|
@item UFED
|
||||||
|
Universal Forensic Extraction Device (Cellebrite)
|
||||||
|
|
||||||
|
@item UFS
|
||||||
|
Universal File System
|
||||||
|
|
||||||
|
@item UFS
|
||||||
|
Universal Flash Storage (JEDEC)
|
||||||
|
|
||||||
|
@item UFS
|
||||||
|
Unix File System (Unix)
|
||||||
|
|
||||||
|
@item UFST
|
||||||
|
Universal Font Scaling Technology (Agfa)
|
||||||
|
|
||||||
|
@item UHA
|
||||||
|
Ultra High Aperture [ratio] (LCD, TNLCD)
|
||||||
|
|
||||||
|
@item UHC
|
||||||
|
United Hitech Corporation (manufacturer, Taiwan)
|
||||||
|
|
||||||
|
@item UHCI
|
||||||
|
Universal Host Controller Interface (USB, Intel, VIA, OHCI)
|
||||||
|
|
||||||
|
@item UHD
|
||||||
|
Ultra HD [3840x2160] (HD)
|
||||||
|
|
||||||
|
@item UHF
|
||||||
|
Ultra High Frequency
|
||||||
|
|
||||||
|
@item UHL
|
||||||
|
User Head Label
|
||||||
|
|
||||||
|
@item UHS
|
||||||
|
Ultra High Speed (SD)
|
||||||
|
|
||||||
|
@item UI
|
||||||
|
Unix International (manufacturer, Unix)
|
||||||
|
|
||||||
|
@item UI
|
||||||
|
User Interface
|
||||||
|
|
||||||
|
@item UIC
|
||||||
|
User Identification Code
|
||||||
|
|
||||||
|
@item UID
|
||||||
|
Unit IDentifier (cryptography, EES)
|
||||||
|
|
||||||
|
@item UID
|
||||||
|
User IDentification
|
||||||
|
|
||||||
|
@item UIDL
|
||||||
|
Unique ID Listing (POP3, RFC 1939)
|
||||||
|
|
||||||
|
@item UIEE
|
||||||
|
Universal Information Exchange Environment (AWS)
|
||||||
|
|
||||||
|
@item UIL
|
||||||
|
User Interface Language
|
||||||
|
|
||||||
|
@item UIMA
|
||||||
|
Unstructured Information Management Architecture (IBM)
|
||||||
|
|
||||||
|
@item UIMS
|
||||||
|
User Interface Management System
|
||||||
|
|
||||||
|
@item UIN
|
||||||
|
Universal Identification Number (ICQ)
|
||||||
|
|
||||||
|
@item UIQ
|
||||||
|
User Interface Quartz (Symbian)
|
||||||
|
|
||||||
|
@item UIS
|
||||||
|
UmweltInformationsSystem
|
||||||
|
|
||||||
|
@item UISRM
|
||||||
|
User Interface System Reference Model
|
||||||
|
|
||||||
|
@item UJSR
|
||||||
|
Umbrella Java Specification Request (JCP, Java)
|
||||||
|
|
||||||
|
@item UKERNA
|
||||||
|
United Kingdom Education and Research Networking Association (org., UK)
|
||||||
|
|
||||||
|
@item UKOLN
|
||||||
|
United Kingdom Office for Library and information Networking (org.)
|
||||||
|
|
||||||
|
@item UL
|
||||||
|
United Linux (Linux)
|
||||||
|
|
||||||
|
@item ULA
|
||||||
|
Uncommitted Logic Array
|
||||||
|
|
||||||
|
@item ULA
|
||||||
|
Unique Local Address (IP, IETF)
|
||||||
|
|
||||||
|
@item ULANA
|
||||||
|
Unified Local Area Network Architecture
|
||||||
|
|
||||||
|
@item ULC
|
||||||
|
UltraLightClient (Java, RIA, WWW)
|
||||||
|
|
||||||
|
@item ULCC
|
||||||
|
University of London Computer Center (org., UK)
|
||||||
|
|
||||||
|
@item ULCE
|
||||||
|
United Linux Certified Expert (Linux)
|
||||||
|
|
||||||
|
@item ULCP
|
||||||
|
United Linux Certified Professional (Linux)
|
||||||
|
|
||||||
|
@item ULD
|
||||||
|
Unabhaengiges Landeszentrum fuer Datenschutz [Schleswig Holstein] (org.)
|
||||||
|
|
||||||
|
@item ULMB
|
||||||
|
Ultra Low Motion Blur (Nvidia)
|
||||||
|
|
||||||
|
@item ULN
|
||||||
|
Unbreakable Linux Network (Oracle, Linux)
|
||||||
|
|
||||||
|
@item ULP
|
||||||
|
Upper Layer Protocols (FC)
|
||||||
|
|
||||||
|
@item ULS
|
||||||
|
User Location Interface
|
||||||
|
|
||||||
|
@item ULSI
|
||||||
|
Ultra Large Scale Integration
|
||||||
|
|
||||||
|
@item ULV
|
||||||
|
Ultra Low Voltage
|
||||||
|
|
||||||
|
@item UMA
|
||||||
|
Unified Memory Architecture
|
||||||
|
|
||||||
|
@item UMA
|
||||||
|
Universal Measurement Architecture (Unix, X/Open)
|
||||||
|
|
||||||
|
@item UMA
|
||||||
|
Upper Memory Area (Intel)
|
||||||
|
|
||||||
|
@item UMADS
|
||||||
|
Universal Measurement Architecture Data Storage (UMA)
|
||||||
|
|
||||||
|
@item UMB
|
||||||
|
Upper Memory Block (Intel, UMA)
|
||||||
|
|
||||||
|
@item UMC
|
||||||
|
United Microelectronics Corporation (manufacturer)
|
||||||
|
|
||||||
|
@item UMD
|
||||||
|
Universal Media Disk (Sony)
|
||||||
|
|
||||||
|
@item UMDF
|
||||||
|
User-Mode Driver Framework (KMDF, MS, Windows, Vista)
|
||||||
|
|
||||||
|
@item UME
|
||||||
|
UNI Management Entity (UNI, ILMI)
|
||||||
|
|
||||||
|
@item UML
|
||||||
|
Unified Method Language (CASE, DB, OMG)
|
||||||
|
|
||||||
|
@item UML
|
||||||
|
Unified Modelling Language (OOP)
|
||||||
|
|
||||||
|
@item UML
|
||||||
|
User Mode Linux (Linux)
|
||||||
|
|
||||||
|
@item UMPC
|
||||||
|
Ultra Mobile Personal Computer (PC)
|
||||||
|
|
||||||
|
@item UMS
|
||||||
|
Unified Messaging System
|
||||||
|
|
||||||
|
@item UMTS
|
||||||
|
Universal Mobile Telecommunications System (IN, mobile-systems)
|
||||||
|
|
||||||
|
@item UNA
|
||||||
|
Universal Network Architecture
|
||||||
|
|
||||||
|
@item UNARP
|
||||||
|
UNsolicited Address Resolution Protocol (ARP, RFC 1868)
|
||||||
|
|
||||||
|
@item UNB
|
||||||
|
Ultra-Narrow-Band [modulation] (WAN, LP-WAN, IoT)
|
||||||
|
|
||||||
|
@item UNC
|
||||||
|
Universal Naming Convention (IBM, MS, Novell, LAN)
|
||||||
|
|
||||||
|
@item UNCEFACT
|
||||||
|
United Nations CEFACT (org., CEFACT), "UN/CEFACT"
|
||||||
|
|
||||||
|
@item UNCID
|
||||||
|
UNiform rules of Conduct for Interchange of Trade data by teletransmission (EDIFACT)
|
||||||
|
|
||||||
|
@item UNCLE
|
||||||
|
Unix Net for Computer security in Law Enforcement (org., USA, Unix), "U.N.C.L.E."
|
||||||
|
|
||||||
|
@item UNEDIFACT
|
||||||
|
United Nations EDIFACT (ISO 9735, EDIFACT), "UN/EDIFACT"
|
||||||
|
|
||||||
|
@item UNGTDI
|
||||||
|
United Nations Guidelines for Trade Data Interchange (UN/EDIFACT, predecessor), "UN/GTDI"
|
||||||
|
|
||||||
|
@item UNI
|
||||||
|
Universal Network Interface (Cogent)
|
||||||
|
|
||||||
|
@item UNI
|
||||||
|
User Network Interface
|
||||||
|
|
||||||
|
@item UNICS
|
||||||
|
UNiplexed Information and Computing Service (OS, MULTICS, Bell)
|
||||||
|
|
||||||
|
@item UNIKOPS
|
||||||
|
UNIversell KOnfigurierbare sicherheitsloesung fuer cyber-Physikalische Systeme
|
||||||
|
|
||||||
|
@item UNITE
|
||||||
|
Ubiquitous aNd Integrated Teamwork Environment (SIT)
|
||||||
|
|
||||||
|
@item UNIVAC
|
||||||
|
UNIVersal Automatic Computer
|
||||||
|
|
||||||
|
@item UNMA
|
||||||
|
Unified Network Management Architecture
|
||||||
|
|
||||||
|
@item UNSM
|
||||||
|
United Nations Standard Message, (UN/EDIFACT)
|
||||||
|
|
||||||
|
@item UNTDED
|
||||||
|
United Nations Trade Data Elements Directory (EDIFACT)
|
||||||
|
|
||||||
|
@item UNTDID
|
||||||
|
United Nations Trade Data Interchange Directory (EDIFACT)
|
||||||
|
|
||||||
|
@item UP
|
||||||
|
Uni Processor [system]
|
||||||
|
|
||||||
|
@item UPA
|
||||||
|
Ultra Port Architecture (Sun, SMP)
|
||||||
|
|
||||||
|
@item UPA
|
||||||
|
Usability Professionals Association (org.)
|
||||||
|
|
||||||
|
@item UPAM
|
||||||
|
User Primary Access Method (BS2000)
|
||||||
|
|
||||||
|
@item UPC
|
||||||
|
Universal Product Code (EAN)
|
||||||
|
|
||||||
|
@item UPC
|
||||||
|
Usage Parameter Control (UNI, ATM)
|
||||||
|
|
||||||
|
@item UPD
|
||||||
|
UserParameterDaten (DDBAC)
|
||||||
|
|
||||||
|
@item UPL
|
||||||
|
User Program Language
|
||||||
|
|
||||||
|
@item UPM
|
||||||
|
Umdrehungen Pro Minute (HDD)
|
||||||
|
|
||||||
|
@item UPM
|
||||||
|
User Profile Management (IBM)
|
||||||
|
|
||||||
|
@item UPN
|
||||||
|
Umgekehrte Polnische Notation
|
||||||
|
|
||||||
|
@item UPNP
|
||||||
|
Universal Plug 'N Play (PNP), "UPnP"
|
||||||
|
|
||||||
|
@item UPP
|
||||||
|
Universal Procedure Pointer (AE, Apple)
|
||||||
|
|
||||||
|
@item UPPS
|
||||||
|
Universal Portable Protocol Stack / Support (Schneider & Koch)
|
||||||
|
|
||||||
|
@item UPS
|
||||||
|
Uninterruptible Power Supply
|
||||||
|
|
||||||
|
@item UPS
|
||||||
|
Unix Print Services (Unix)
|
||||||
|
|
||||||
|
@item UPT
|
||||||
|
Universal Personal Telecommunications [number] (IN, mobile-systems)
|
||||||
|
|
||||||
|
@item UPT
|
||||||
|
Universelle Personengebundene Telekommunikation (IN)
|
||||||
|
|
||||||
|
@item UR2
|
||||||
|
??? (DTAG, T-DSL), "U-R2"
|
||||||
|
|
||||||
|
@item URA
|
||||||
|
Uniform Resource Agent (WWW)
|
||||||
|
|
||||||
|
@item URB
|
||||||
|
USB Request Block (USB)
|
||||||
|
|
||||||
|
@item URC
|
||||||
|
Uniform Resource Citation (WWW)
|
||||||
|
|
||||||
|
@item URC
|
||||||
|
Uniform Resources Characteristics (URI, WWW)
|
||||||
|
|
||||||
|
@item URI
|
||||||
|
Universal Resource Identifier (WWW, RFC 1630/2396)
|
||||||
|
|
||||||
|
@item URL
|
||||||
|
Uniform Resource Locator (WWW, RFC 1738)
|
||||||
|
|
||||||
|
@item URN
|
||||||
|
Uniform Resource Name (WWW, RFC 1737)
|
||||||
|
|
||||||
|
@item URSN
|
||||||
|
Unique Resource Serial Number (URI, WWW)
|
||||||
|
|
||||||
|
@item US
|
||||||
|
Unit Separator (BTX, VPCE)
|
||||||
|
|
||||||
|
@item USA
|
||||||
|
United Software Association (org., USA)
|
||||||
|
|
||||||
|
@item USACNII
|
||||||
|
US Advisory Council on the National Information Infrastructure (org., USA)
|
||||||
|
|
||||||
|
@item USART
|
||||||
|
Universal Synchronous Asynchronous Receiver / Transmitter (IC)
|
||||||
|
|
||||||
|
@item USB
|
||||||
|
Universal Serial Bus (Intel, USB)
|
||||||
|
|
||||||
|
@item USBDDK
|
||||||
|
Universal Serial Bus Driver Development Kit (USB, DDK), "USB-DDK"
|
||||||
|
|
||||||
|
@item USBIF
|
||||||
|
Universal Serial Bus Implementers Forum (org., USB), "USB-IF"
|
||||||
|
|
||||||
|
@item USBOTG
|
||||||
|
Universal Serial Bus - On The Go (USB), "USB-OTG"
|
||||||
|
|
||||||
|
@item USBPD
|
||||||
|
Universal Serial Bus - Power Delivery (USB), "USB-PD"
|
||||||
|
|
||||||
|
@item USCP
|
||||||
|
Unicos Station Call Processor [protocol] (Cray, MPP)
|
||||||
|
|
||||||
|
@item USD
|
||||||
|
User's Supplementary Documents (BSD, Unix)
|
||||||
|
|
||||||
|
@item USDC
|
||||||
|
Universal Switched Data Capability [consortium] (LCD, org.)
|
||||||
|
|
||||||
|
@item USDN
|
||||||
|
United States Digital Network
|
||||||
|
|
||||||
|
@item USEC
|
||||||
|
User-based SECurity [model] (SNMP)
|
||||||
|
|
||||||
|
@item USENET
|
||||||
|
USErs' NETwork (Internet)
|
||||||
|
|
||||||
|
@item USF
|
||||||
|
Uplink State Flag (GPRS, mobile-systems)
|
||||||
|
|
||||||
|
@item USFF
|
||||||
|
Ultra-Small Form Factor
|
||||||
|
|
||||||
|
@item USG
|
||||||
|
Universal Subscriber Gateway (Nomadix)
|
||||||
|
|
||||||
|
@item USG
|
||||||
|
Unix Support Group (org., Unix)
|
||||||
|
|
||||||
|
@item USI
|
||||||
|
Usage State Information (CPCM, DVB)
|
||||||
|
|
||||||
|
@item USIM
|
||||||
|
Universal Subscriber Identity Module (mobile-systems, UMTS)
|
||||||
|
|
||||||
|
@item USITA
|
||||||
|
United States Independent Telephone Association (org., USA)
|
||||||
|
|
||||||
|
@item USL
|
||||||
|
Unix Systems Laboratories (AT&T, Unix)
|
||||||
|
|
||||||
|
@item USM
|
||||||
|
User-based Security Model (SNMP, RFC 2574)
|
||||||
|
|
||||||
|
@item USMT
|
||||||
|
User State Migration Tool (MS, Windows, Vista)
|
||||||
|
|
||||||
|
@item USMTF
|
||||||
|
United States Message Text Format (USA)
|
||||||
|
|
||||||
|
@item USN
|
||||||
|
Update Sequence Number (AD)
|
||||||
|
|
||||||
|
@item USP
|
||||||
|
Universal Storage Platform (HDS)
|
||||||
|
|
||||||
|
@item USP
|
||||||
|
User Stack Pointer
|
||||||
|
|
||||||
|
@item USR
|
||||||
|
U.S. Robotics (manufacturer)
|
||||||
|
|
||||||
|
@item USR
|
||||||
|
User Service Routines
|
||||||
|
|
||||||
|
@item USRP
|
||||||
|
Universal Software Radio Peripheral
|
||||||
|
|
||||||
|
@item USRT
|
||||||
|
Universal Synchronous Receiver/Transmitter (IC)
|
||||||
|
|
||||||
|
@item USS
|
||||||
|
Unix Support Services (z/OS, IBM)
|
||||||
|
|
||||||
|
@item USSD
|
||||||
|
UnStructured Supplementary Services (GSM, mobile-systems)
|
||||||
|
|
||||||
|
@item USSP
|
||||||
|
User Space Serial Port (Bluetooth)
|
||||||
|
|
||||||
|
@item USTA
|
||||||
|
United States Telephone Association (org., USA)
|
||||||
|
|
||||||
|
@item USV
|
||||||
|
Unterbrechungsfreie Strom-Versorgung
|
||||||
|
|
||||||
|
@item USWC
|
||||||
|
Uncached Speculative Write Combining (CPU)
|
||||||
|
|
||||||
|
@item UT
|
||||||
|
Universal Time [+0000] (TZ, GMT)
|
||||||
|
|
||||||
|
@item UT
|
||||||
|
Upper Tester
|
||||||
|
|
||||||
|
@item UTC
|
||||||
|
Universal Time Coordinated (DCE)
|
||||||
|
|
||||||
|
@item UTC
|
||||||
|
Universal Time Coordinates [+0000] (TZ, GMT)
|
||||||
|
|
||||||
|
@item UTF
|
||||||
|
UCS Transformation Format (Unicode, UCS)
|
||||||
|
|
||||||
|
@item UTI
|
||||||
|
Universal Text Interchange
|
||||||
|
|
||||||
|
@item UTL
|
||||||
|
User Trailer Label
|
||||||
|
|
||||||
|
@item UTLB
|
||||||
|
Unified Translation Look-aside Buffer (CPU)
|
||||||
|
|
||||||
|
@item UTM
|
||||||
|
Unified Threat Management (Funkwerk)
|
||||||
|
|
||||||
|
@item UTM
|
||||||
|
Universal Transaction Monitor
|
||||||
|
|
||||||
|
@item UTM
|
||||||
|
Universeller TransaktionsMonitor (BS2000, Sinix, TP)
|
||||||
|
|
||||||
|
@item UTMS
|
||||||
|
Universal Mobile Telecommunications System
|
||||||
|
|
||||||
|
@item UTOPIA
|
||||||
|
Universal Test & Operations Physical layer Interface for ATM (PL, ATM)
|
||||||
|
|
||||||
|
@item UTP
|
||||||
|
Unshielded Twisted Pair [cable] (TP)
|
||||||
|
|
||||||
|
@item UTRAN
|
||||||
|
UMTS Terrestrial Radio Access Network (UMTS, mobile-systems)
|
||||||
|
|
||||||
|
@item UTS
|
||||||
|
Universal Timesharing System
|
||||||
|
|
||||||
|
@item UTSL
|
||||||
|
Use The Source, Luke (telecommunication, Usenet, IRC)
|
||||||
|
|
||||||
|
@item UTTC
|
||||||
|
Universal Tape-To-Tape Converter
|
||||||
|
|
||||||
|
@item UUCICO
|
||||||
|
Unix to Unix Copy Incoming Copy Outgoing (Unix)
|
||||||
|
|
||||||
|
@item UUCP
|
||||||
|
Unix to Unix Copy Protocol (Unix)
|
||||||
|
|
||||||
|
@item UUG
|
||||||
|
Unix User Group (org., Unix, user group)
|
||||||
|
|
||||||
|
@item UUID
|
||||||
|
Universal Unique IDentifier
|
||||||
|
|
||||||
|
@item UUNET
|
||||||
|
Unix to Unix NETwork (org., ISP)
|
||||||
|
|
||||||
|
@item UUT
|
||||||
|
Unit-Under-Test
|
||||||
|
|
||||||
|
@item UVD
|
||||||
|
Unified Video Decoder (AMD)
|
||||||
|
|
||||||
|
@item UVL
|
||||||
|
User Volume Label
|
||||||
|
|
||||||
|
@item UVLC
|
||||||
|
Universal Variable Length Coding
|
||||||
|
|
||||||
|
@item UVM
|
||||||
|
User Verification Manager (IBM, ESS)
|
||||||
|
|
||||||
|
@item UW
|
||||||
|
Ultra Wide [SCSI] (SCSI)
|
||||||
|
|
||||||
|
@item UWA
|
||||||
|
Universal Widget API (API, Netvibes)
|
||||||
|
|
||||||
|
@item UWB
|
||||||
|
Ultra WideBand (MBOA)
|
||||||
|
|
||||||
|
@item UWP
|
||||||
|
Universal Windows Platform (MS, Windows)
|
||||||
|
|
||||||
|
@item UWXGA
|
||||||
|
Ultra Wide XGA [1600x768] (XGA)
|
||||||
|
|
||||||
|
@item UXGA
|
||||||
|
Ultra eXtended Graphics Adapter [1600 x 1200] (XGA)
|
||||||
|
|
||||||
|
@item UXSS
|
||||||
|
Universal Cross-Site Scripting (WWW, XSS)
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
913
vera.w
Normal file
913
vera.w
Normal file
@ -0,0 +1,913 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item W2K
|
||||||
|
Windows 2000 (Windows, MS)
|
||||||
|
|
||||||
|
@item W3C
|
||||||
|
World Wide Web Consortium (WWW, org.)
|
||||||
|
|
||||||
|
@item WABI
|
||||||
|
Windows Application Binary Interface (MS, Windows)
|
||||||
|
|
||||||
|
@item WAFL
|
||||||
|
Write Anywhere File Layout (Netapp)
|
||||||
|
|
||||||
|
@item WAFS
|
||||||
|
Wide Area File Services
|
||||||
|
|
||||||
|
@item WAG
|
||||||
|
Wild-Assed Guess (slang, Cygwin)
|
||||||
|
|
||||||
|
@item WAI
|
||||||
|
Web Accessibility Initiative (WWW, W3C, WAI)
|
||||||
|
|
||||||
|
@item WAI
|
||||||
|
Web Application Interface (WWW, Netscape)
|
||||||
|
|
||||||
|
@item WAIK
|
||||||
|
Windows Automated Installation Kit (MS, Windows, Vista)
|
||||||
|
|
||||||
|
@item WAIS
|
||||||
|
Wide Area Information Service (Internet)
|
||||||
|
|
||||||
|
@item WAITS
|
||||||
|
Westcoast Alternative to ITS
|
||||||
|
|
||||||
|
@item WAM
|
||||||
|
Warren Abstract Machine (PROLOG)
|
||||||
|
|
||||||
|
@item WAM
|
||||||
|
Web Application Manager (MS, Windows)
|
||||||
|
|
||||||
|
@item WAM
|
||||||
|
Wikia Activity Monitor
|
||||||
|
|
||||||
|
@item WAM
|
||||||
|
Windows Animation Manager (MS, Windows)
|
||||||
|
|
||||||
|
@item WAMIS
|
||||||
|
Wireless, Adaptive and Mobile Information Systems (ESTO)
|
||||||
|
|
||||||
|
@item WAMP
|
||||||
|
Windows, Apache, MySQL, PHP (Windows, Apache, PHP, DB, SQL)
|
||||||
|
|
||||||
|
@item WAMPP
|
||||||
|
Windows, Apache, MySQL, PHP and PERL (Windows, Apache, DB, SQL, PHP, PERL)
|
||||||
|
|
||||||
|
@item WAN
|
||||||
|
Wide Area Network
|
||||||
|
|
||||||
|
@item WAND
|
||||||
|
Wide Area Network Distribution (WAN)
|
||||||
|
|
||||||
|
@item WAP
|
||||||
|
Wireless Application Protocol (mobile-systems, WLAN)
|
||||||
|
|
||||||
|
@item WAP
|
||||||
|
Wissenschaftliche ArbeitsPlatzrechner
|
||||||
|
|
||||||
|
@item WAPP
|
||||||
|
Windows, Apache, PostgreSQL, PHP (Windows, Apache, PHP, DB, SQL)
|
||||||
|
|
||||||
|
@item WAR
|
||||||
|
Web Application aRchive (Java)
|
||||||
|
|
||||||
|
@item WAR
|
||||||
|
Write-After-Read (WAW, RAW)
|
||||||
|
|
||||||
|
@item WARP
|
||||||
|
Windows Advanced Rasterization Platform (MS, Windows)
|
||||||
|
|
||||||
|
@item WAS
|
||||||
|
Websphere Application Server (IBM, WBISF)
|
||||||
|
|
||||||
|
@item WASC
|
||||||
|
Web Application Security Consortium (org., WWW)
|
||||||
|
|
||||||
|
@item WASN
|
||||||
|
Wide Area Sensor Network
|
||||||
|
|
||||||
|
@item WASP
|
||||||
|
Web stAndardS Project (WWW, W3C)
|
||||||
|
|
||||||
|
@item WAT
|
||||||
|
West Africa Time [-0100] (TZ)
|
||||||
|
|
||||||
|
@item WATS
|
||||||
|
Wide Area Telephone Service
|
||||||
|
|
||||||
|
@item WAW
|
||||||
|
Write-After-Write (WAR, RAW)
|
||||||
|
|
||||||
|
@item WB
|
||||||
|
WorkBench (Amiga, Commodore)
|
||||||
|
|
||||||
|
@item WBC
|
||||||
|
Web Based Collaboration (WWW)
|
||||||
|
|
||||||
|
@item WBC
|
||||||
|
Wide Band Channel (FDDI)
|
||||||
|
|
||||||
|
@item WBEM
|
||||||
|
Web Based Enterprise Management [protocol] (DMTF, CIM, XML, HTTP, BMC, Cisco, Compaq, Intel, MS)
|
||||||
|
|
||||||
|
@item WBF
|
||||||
|
Windows Biometric Framework (MS, Windows)
|
||||||
|
|
||||||
|
@item WBI
|
||||||
|
Web Browser Intelligence (WWW, IBM)
|
||||||
|
|
||||||
|
@item WBISF
|
||||||
|
Websphere Business Integration Server Foundation (IBM, BPEL)
|
||||||
|
|
||||||
|
@item WBS
|
||||||
|
WissensBasierte Systeme (KI)
|
||||||
|
|
||||||
|
@item WC
|
||||||
|
WildCard multicast route entry (PIM, Multicast)
|
||||||
|
|
||||||
|
@item WC
|
||||||
|
Word Count (Unix)
|
||||||
|
|
||||||
|
@item WC
|
||||||
|
Write Cache (SCSI, HDD)
|
||||||
|
|
||||||
|
@item WCA
|
||||||
|
Wikimedia Chapters Association (org.)
|
||||||
|
|
||||||
|
@item WCAG
|
||||||
|
Web Content Accessibility Guidelines (WAI, W3C)
|
||||||
|
|
||||||
|
@item WCB
|
||||||
|
Write Combining Buffer (CPU)
|
||||||
|
|
||||||
|
@item WCCE
|
||||||
|
World Conference on Computers in Education (IFIP, conference)
|
||||||
|
|
||||||
|
@item WCDMA
|
||||||
|
Wideband Code Division Multiple Access (mobile-systems)
|
||||||
|
|
||||||
|
@item WCDMAFDD
|
||||||
|
Wide-band Code Division Multiple Access - Frequency Division Duplex (UMTS, mobile-systems), "WCDMA-FDD"
|
||||||
|
|
||||||
|
@item WCDMATDD
|
||||||
|
Wide-band Code Division Multiple Access - Time Division Duplex (UMTS, mobile-systems), "WCDMA-TDD"
|
||||||
|
|
||||||
|
@item WCF
|
||||||
|
Windows Communication Foundation (MS, Windows)
|
||||||
|
|
||||||
|
@item WCGA
|
||||||
|
World Computer Graphics Association (org.)
|
||||||
|
|
||||||
|
@item WCIT
|
||||||
|
World Conference on International Telecommunication (ITU)
|
||||||
|
|
||||||
|
@item WCMS
|
||||||
|
Web Content Management Software / System (CMS)
|
||||||
|
|
||||||
|
@item WCS
|
||||||
|
Windows Color System (MS, Windows)
|
||||||
|
|
||||||
|
@item WCS
|
||||||
|
Writable Control Store (VAX, DEC)
|
||||||
|
|
||||||
|
@item WCST
|
||||||
|
Webcam Child Sex Tourism
|
||||||
|
|
||||||
|
@item WCTS
|
||||||
|
Without Consulting The Source (slang, Cygwin)
|
||||||
|
|
||||||
|
@item WD
|
||||||
|
Western Digital [corporation] (manufacturer)
|
||||||
|
|
||||||
|
@item WD
|
||||||
|
Working Draft
|
||||||
|
|
||||||
|
@item WDG
|
||||||
|
Web Design Group (WWW, org.)
|
||||||
|
|
||||||
|
@item WDK
|
||||||
|
Word Developers Kit (MS)
|
||||||
|
|
||||||
|
@item WDL
|
||||||
|
Windows Driver Library (MS, Windows)
|
||||||
|
|
||||||
|
@item WDL
|
||||||
|
World Definition Language
|
||||||
|
|
||||||
|
@item WDM
|
||||||
|
Wavelength Division Multiplexing [protocol]
|
||||||
|
|
||||||
|
@item WDM
|
||||||
|
Windows / Win32 Driver Model (MS, Windows)
|
||||||
|
|
||||||
|
@item WDMCSA
|
||||||
|
Windows Driver Model Connection and Streaming Architecture (MS, Windows, WDM)
|
||||||
|
|
||||||
|
@item WDP
|
||||||
|
WatchDog Process
|
||||||
|
|
||||||
|
@item WDRP
|
||||||
|
Whois Data Reminder Policy (ICANN)
|
||||||
|
|
||||||
|
@item WDS
|
||||||
|
WatchDog Server
|
||||||
|
|
||||||
|
@item WDS
|
||||||
|
Windows Deployment Service (MS, Windows)
|
||||||
|
|
||||||
|
@item WDS
|
||||||
|
Wireless Distribution System (WLAN)
|
||||||
|
|
||||||
|
@item WDS
|
||||||
|
Wireless Domain Service (Cisco, WLAN)
|
||||||
|
|
||||||
|
@item WDT
|
||||||
|
Watch Dog Timer
|
||||||
|
|
||||||
|
@item WDT
|
||||||
|
Western [European] Daylight Time [+0100] (TZ, WET)
|
||||||
|
|
||||||
|
@item WEBDAV
|
||||||
|
Web Distributed Authoring and Versioning (WWW, HTTP, RFC 2518), "webDAV"
|
||||||
|
|
||||||
|
@item WEBRC
|
||||||
|
Wave and Equation Based Rate Control
|
||||||
|
|
||||||
|
@item WEBRTC
|
||||||
|
WEB Real Time Communication (WWW, W3C), "WebRTC"
|
||||||
|
|
||||||
|
@item WECA
|
||||||
|
Wireless Ethernet Compatibility Alliance (org., WLAN, LAN)
|
||||||
|
|
||||||
|
@item WEEB
|
||||||
|
Western Europe EDIFACT Board (org., EDIFACT), "WE/EB"
|
||||||
|
|
||||||
|
@item WEEE
|
||||||
|
Waste from Electrical and Electronic Equipment (Europe)
|
||||||
|
|
||||||
|
@item WEFT
|
||||||
|
Web Embedding Font Tool (MS, WWW)
|
||||||
|
|
||||||
|
@item WELL
|
||||||
|
Whole Earth 'Lectronic Net (network)
|
||||||
|
|
||||||
|
@item WEP
|
||||||
|
Wired Equivalent Privacy (WLAN)
|
||||||
|
|
||||||
|
@item WESA
|
||||||
|
World ESports Association (org.)
|
||||||
|
|
||||||
|
@item WESTNET
|
||||||
|
WESTern regional NETwork (network, USA), "Westnet"
|
||||||
|
|
||||||
|
@item WET
|
||||||
|
Western European Time [+0000] (TZ, WDT)
|
||||||
|
|
||||||
|
@item WF
|
||||||
|
[Windows] Workflow Foundation (MS, Windows)
|
||||||
|
|
||||||
|
@item WFA
|
||||||
|
WiFi Alliance (org., WiFi)
|
||||||
|
|
||||||
|
@item WFC
|
||||||
|
Wait for Caller (BBS)
|
||||||
|
|
||||||
|
@item WFC
|
||||||
|
Windows Foundation Classes (MS, Java, API)
|
||||||
|
|
||||||
|
@item WFM
|
||||||
|
Wired For Management (Intel, IBM, BIOS), "WfM"
|
||||||
|
|
||||||
|
@item WFM
|
||||||
|
Works For Me (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item WFMC
|
||||||
|
WorkFlow Management Coalition (org.), "WfMC"
|
||||||
|
|
||||||
|
@item WFP
|
||||||
|
Windows Filtering Platform (MS, Windows)
|
||||||
|
|
||||||
|
@item WFQ
|
||||||
|
Weighted Fair Queueing (VoIP)
|
||||||
|
|
||||||
|
@item WFS
|
||||||
|
Web Feature Service (OGC)
|
||||||
|
|
||||||
|
@item WFW
|
||||||
|
Windows For Workgroups (MS), "WfW"
|
||||||
|
|
||||||
|
@item WG
|
||||||
|
Working Group (SC, ISO, IEC, ETSI)
|
||||||
|
|
||||||
|
@item WGA
|
||||||
|
Windows Genuine Advantage [program] (MS, Windows)
|
||||||
|
|
||||||
|
@item WHAT
|
||||||
|
Web Hypertext Applications Technology [working group] (WWW, org.)
|
||||||
|
|
||||||
|
@item WHATWG
|
||||||
|
Web Hypertext Application Technology Working Group (WWW, org.)
|
||||||
|
|
||||||
|
@item WHCA
|
||||||
|
White House Communications Agency (DISA)
|
||||||
|
|
||||||
|
@item WHDI
|
||||||
|
Wireless Home Digital Interface (org.)
|
||||||
|
|
||||||
|
@item WHEA
|
||||||
|
Windows Hardware Error Architecture (MS, Windows)
|
||||||
|
|
||||||
|
@item WHIIG
|
||||||
|
Windows Hardware Instrumentation Implementation Guidelines (MS, Windows)
|
||||||
|
|
||||||
|
@item WHOLIS
|
||||||
|
World Health Organization Library Information System (org., UNO)
|
||||||
|
|
||||||
|
@item WHOSIS
|
||||||
|
World Health Organization Statistical Information System (org., UNO)
|
||||||
|
|
||||||
|
@item WHQL
|
||||||
|
Windows Hardware Quality Lab (MS, Windows, PC97)
|
||||||
|
|
||||||
|
@item WHSXGA
|
||||||
|
Wide Hex Super XGA [6400x4096] (XGA)
|
||||||
|
|
||||||
|
@item WHUXGA
|
||||||
|
Wide Hex Ultra XGA [7680x4800] (XGA)
|
||||||
|
|
||||||
|
@item WHXGA
|
||||||
|
Wide Hex XGA [5120x3200] (XGA)
|
||||||
|
|
||||||
|
@item WHYLINE
|
||||||
|
Workspace for Helping You Link Instructions to Numbers and Events (EuropeSES)
|
||||||
|
|
||||||
|
@item WIA
|
||||||
|
Windows Image Acquisition (MS, Windows, API, DDI)
|
||||||
|
|
||||||
|
@item WIA
|
||||||
|
Windows Imaging Architecture (MS, Windows, Vista)
|
||||||
|
|
||||||
|
@item WIC
|
||||||
|
Windows Imaging Component (MS, Windows)
|
||||||
|
|
||||||
|
@item WICG
|
||||||
|
Web platform Incubator Community Group (org., W3C)
|
||||||
|
|
||||||
|
@item WIDD
|
||||||
|
Web InformationsDienst Deutschland (WWW, Neuss, Germany)
|
||||||
|
|
||||||
|
@item WIDI
|
||||||
|
WIreless DIsplay (Intel), "WiDi"
|
||||||
|
|
||||||
|
@item WIF
|
||||||
|
Web Interface Facility (WWW, MVS, OS/390)
|
||||||
|
|
||||||
|
@item WIFI
|
||||||
|
WIreless FIdelity [alliance] (WLAN), "Wi-Fi"
|
||||||
|
|
||||||
|
@item WIFI
|
||||||
|
WIreless FIdelity [certificate] (WECA, WLAN), "WiFi"
|
||||||
|
|
||||||
|
@item WIIS
|
||||||
|
Windows Internet Information Server (MS, Windows, Internet)
|
||||||
|
|
||||||
|
@item WIKINGER
|
||||||
|
WIKI Next Generation Enhancement Repository
|
||||||
|
|
||||||
|
@item WIM
|
||||||
|
Wireless Identity Module (WAP, cryptography)
|
||||||
|
|
||||||
|
@item WIMA
|
||||||
|
[windows] Webserver - IIS - MSDE - ASP.Net (MS, IIS, MSDE, ASP)
|
||||||
|
|
||||||
|
@item WIMAN
|
||||||
|
WIreless Metropolitan Area Network (MAN, W-LAN)
|
||||||
|
|
||||||
|
@item WIMAX
|
||||||
|
Worldwide Interoperability for Microwave ACCess (IEEE 802.16)
|
||||||
|
|
||||||
|
@item WIMP
|
||||||
|
Window, Icon, Menu, Pointing device
|
||||||
|
|
||||||
|
@item WIN
|
||||||
|
WIssenschaftsNetz (network, DFN)
|
||||||
|
|
||||||
|
@item WINHEC
|
||||||
|
WINdows Hardware Engineering Conference (MS, Windows, conference), "WinHEC"
|
||||||
|
|
||||||
|
@item WINLAB
|
||||||
|
Wireless Information Network LABoratory (org., STC, USA)
|
||||||
|
|
||||||
|
@item WINNIE
|
||||||
|
Water Initiated Numerical Number Integrating Engine
|
||||||
|
|
||||||
|
@item WINRE
|
||||||
|
WINdows Recovery Environment (MS, Windows), "Win RE"
|
||||||
|
|
||||||
|
@item WINS
|
||||||
|
Windows Internet Naming Service (MS, Windows NT)
|
||||||
|
|
||||||
|
@item WIP
|
||||||
|
Work In Progress (slang)
|
||||||
|
|
||||||
|
@item WIPO
|
||||||
|
World Intellectual Property Organization (org.)
|
||||||
|
|
||||||
|
@item WIPS
|
||||||
|
Web Interactions Per Second (TPC)
|
||||||
|
|
||||||
|
@item WIPSB
|
||||||
|
Web Interactions Per Second Browsing (TPC, WIPS), "WIPSb"
|
||||||
|
|
||||||
|
@item WIPSO
|
||||||
|
Web Interactions Per Second Ordering (TPC, WIPS), "WIPSo"
|
||||||
|
|
||||||
|
@item WISA
|
||||||
|
Wireless Speaker and Audio Association (org.)
|
||||||
|
|
||||||
|
@item WISC
|
||||||
|
Wisconsin Integrally Synchronized Computer
|
||||||
|
|
||||||
|
@item WISE
|
||||||
|
World-wide Information System for r&d Efforts (WWW, IGD)
|
||||||
|
|
||||||
|
@item WISH
|
||||||
|
Wireless Intelligent Stream Handling (W-LAN)
|
||||||
|
|
||||||
|
@item WISIA
|
||||||
|
Wissenschaftliches InformationsSystem fuer den Internationalen Artenschutz (WWW)
|
||||||
|
|
||||||
|
@item WISPR
|
||||||
|
Wireless ??? ISP Roaming (WLAN, ISP, org., WECA), "WISPr"
|
||||||
|
|
||||||
|
@item WITCH
|
||||||
|
Wolverhampton Instrument for Teaching Computation from Harwell
|
||||||
|
|
||||||
|
@item WITT
|
||||||
|
Workstation Interactive Test Tool (IBM)
|
||||||
|
|
||||||
|
@item WIX
|
||||||
|
Windows Installer XML (MS, Windows, XML), "WiX"
|
||||||
|
|
||||||
|
@item WIZOP
|
||||||
|
WIzard sysOP, "WizOp"
|
||||||
|
|
||||||
|
@item WKS
|
||||||
|
Well Known Services (DNS, Internet)
|
||||||
|
|
||||||
|
@item WLAN
|
||||||
|
Wireless Local Area Network (LAN, WLAN, IEEE)
|
||||||
|
|
||||||
|
@item WLANA
|
||||||
|
Wireless Local Area Network Alliance (org., WLAN, LAN)
|
||||||
|
|
||||||
|
@item WLBS
|
||||||
|
Windows Load Balancing Service (MS, Windows NT)
|
||||||
|
|
||||||
|
@item WLC
|
||||||
|
Workload License Charge (IBM, PSLC)
|
||||||
|
|
||||||
|
@item WLCG
|
||||||
|
Worldwide LHC Computing Grid (CERN)
|
||||||
|
|
||||||
|
@item WLCSP
|
||||||
|
Wafer-Level ChipScale Packaging
|
||||||
|
|
||||||
|
@item WLIF
|
||||||
|
Wireless LAN Interoperability Forum (org., WLAN, LAN)
|
||||||
|
|
||||||
|
@item WLL
|
||||||
|
Wireless Local Loop
|
||||||
|
|
||||||
|
@item WLM
|
||||||
|
WorkLoad Manager (IBM, HP-UX)
|
||||||
|
|
||||||
|
@item WLO
|
||||||
|
Windows Libraries for OS/2 (MS, IBM, API, OS/2, Windows)
|
||||||
|
|
||||||
|
@item WLO
|
||||||
|
Windows Library Objects
|
||||||
|
|
||||||
|
@item WLOG
|
||||||
|
Without Loss Of Generality
|
||||||
|
|
||||||
|
@item WLP
|
||||||
|
Wafer Level Packaging
|
||||||
|
|
||||||
|
@item WLS
|
||||||
|
White Line Skip (Fax)
|
||||||
|
|
||||||
|
@item WLSEC
|
||||||
|
Wireless LAN SECurity [framework], WLSec
|
||||||
|
|
||||||
|
@item WMA
|
||||||
|
Windows Media Audio [CODEC] (MS, Windows, audio, CODEC)
|
||||||
|
|
||||||
|
@item WMA
|
||||||
|
Wireless Messaging API (API, Java, J2ME, JSR-120)
|
||||||
|
|
||||||
|
@item WMAN
|
||||||
|
Wireless Metropolitan Area Network (WLAN, MAN)
|
||||||
|
|
||||||
|
@item WMC
|
||||||
|
Windows Media Connect (MS, Windows, DRM)
|
||||||
|
|
||||||
|
@item WMCDC
|
||||||
|
Wireless Mobile Communication Device Class (USB, MS, Windows, CDC)
|
||||||
|
|
||||||
|
@item WMF
|
||||||
|
WikiMedia Foundation (org.)
|
||||||
|
|
||||||
|
@item WMI
|
||||||
|
Web Management Interface
|
||||||
|
|
||||||
|
@item WMI
|
||||||
|
Windows Management Instrumentation / Interface (MS, Windows, WMI, CIM)
|
||||||
|
|
||||||
|
@item WML
|
||||||
|
Wireless Markup Language (mobile-systems, WAP, XML)
|
||||||
|
|
||||||
|
@item WMM
|
||||||
|
WiFi MultiMedia (WiFi, WLAN)
|
||||||
|
|
||||||
|
@item WMP
|
||||||
|
Windows Media Player (Windows)
|
||||||
|
|
||||||
|
@item WMRM
|
||||||
|
Windows Media Rights Manager (MS, Windows)
|
||||||
|
|
||||||
|
@item WMS
|
||||||
|
Warehouse Management System (DB)
|
||||||
|
|
||||||
|
@item WMS
|
||||||
|
Web Mapping Service (OGC)
|
||||||
|
|
||||||
|
@item WMS
|
||||||
|
Workflow Management Systems
|
||||||
|
|
||||||
|
@item WMT
|
||||||
|
Web Marketing Tools [magazine] (Italy, WWW)
|
||||||
|
|
||||||
|
@item WMT
|
||||||
|
Web Marketing Tools [newsletter] (WWW)
|
||||||
|
|
||||||
|
@item WMV
|
||||||
|
Windows Media Video [CODEC] (MS, Windows, video, CODEC)
|
||||||
|
|
||||||
|
@item WMVHD
|
||||||
|
Windows Media Video - High Definition (WMV, Windows), "WMV-HD"
|
||||||
|
|
||||||
|
@item WNIM
|
||||||
|
Wide area Network Interface Module
|
||||||
|
|
||||||
|
@item WNM
|
||||||
|
Wireless Network Management (CA, Unicenter)
|
||||||
|
|
||||||
|
@item WNPP
|
||||||
|
Work-Needing and Prospective Packages (Linux, Debian)
|
||||||
|
|
||||||
|
@item WOF
|
||||||
|
Windows Overlay Filter (MS, Windows)
|
||||||
|
|
||||||
|
@item WOF
|
||||||
|
WithOut Fan (CPU)
|
||||||
|
|
||||||
|
@item WOFF
|
||||||
|
Web Open Font Format (WWW)
|
||||||
|
|
||||||
|
@item WOL
|
||||||
|
Wake On LAN (LAN, APM, BIOS)
|
||||||
|
|
||||||
|
@item WON
|
||||||
|
World-O-Networking (BeOS)
|
||||||
|
|
||||||
|
@item WOPC
|
||||||
|
Walking Optimal Power Calibration (BenQ, Philips, DVD)
|
||||||
|
|
||||||
|
@item WORDIA
|
||||||
|
WORD Internet Assistant (MS)
|
||||||
|
|
||||||
|
@item WORM
|
||||||
|
Write Once Read Many (CD)
|
||||||
|
|
||||||
|
@item WOSA
|
||||||
|
Windows Open System Architecture (MS)
|
||||||
|
|
||||||
|
@item WOSAXCEM
|
||||||
|
WOSA eXtensions for Control, Engineering and Manufacturing (WOSA, MS)
|
||||||
|
|
||||||
|
@item WOSAXFS
|
||||||
|
WOSA eXtensions for Financial Services (WOSA, MS), "WOSA X FS"
|
||||||
|
|
||||||
|
@item WOSAXRT
|
||||||
|
WOSA eXtensions for Real-Time market data (WOSA, MS)
|
||||||
|
|
||||||
|
@item WOSC
|
||||||
|
World Organization of Systems and Cybernetics (org., France)
|
||||||
|
|
||||||
|
@item WOT
|
||||||
|
Web Of Things (W3C), "WoT"
|
||||||
|
|
||||||
|
@item WOW
|
||||||
|
Windows On Windows
|
||||||
|
|
||||||
|
@item WOW
|
||||||
|
World Of Warcraft
|
||||||
|
|
||||||
|
@item WP
|
||||||
|
Word Perfect
|
||||||
|
|
||||||
|
@item WPA
|
||||||
|
Wi-Fi Protected Access (WEP, WLAN)
|
||||||
|
|
||||||
|
@item WPAD
|
||||||
|
Web Proxy Auto Discovery (MS, Windows)
|
||||||
|
|
||||||
|
@item WPAN
|
||||||
|
Wireless Personal Area Network
|
||||||
|
|
||||||
|
@item WPBT
|
||||||
|
Windows Platform Binary Table (MS, Windows, BIOS, UEFI)
|
||||||
|
|
||||||
|
@item WPE
|
||||||
|
Windows Protected Environment
|
||||||
|
|
||||||
|
@item WPF
|
||||||
|
Windows Presentation Foundation (MS, Windows, XAML)
|
||||||
|
|
||||||
|
@item WPFE
|
||||||
|
Windows Presentation Foundation / Everywhere (MS, Windows), "WPF/E"
|
||||||
|
|
||||||
|
@item WPS
|
||||||
|
Wi-fi Protected Setup (W-LAN, Wi-Fi)
|
||||||
|
|
||||||
|
@item WPS
|
||||||
|
Windows Printing System (MS, Windows)
|
||||||
|
|
||||||
|
@item WPS
|
||||||
|
Wireless Portal Suite (WLAN)
|
||||||
|
|
||||||
|
@item WPS
|
||||||
|
Word Processing Software
|
||||||
|
|
||||||
|
@item WPS
|
||||||
|
WorkPlace Shell (OS/2, IBM, Shell)
|
||||||
|
|
||||||
|
@item WQE
|
||||||
|
Work Queue Element (Infiniband, CA, QP)
|
||||||
|
|
||||||
|
@item WQHD
|
||||||
|
Wide Quad HD [2560x1440] (HD)
|
||||||
|
|
||||||
|
@item WQL
|
||||||
|
WMI Query Language (MS, Windows, WMI)
|
||||||
|
|
||||||
|
@item WQSXGA
|
||||||
|
Wide Quad Super XGA [3200x2048] (XGA)
|
||||||
|
|
||||||
|
@item WQUXGA
|
||||||
|
Wide Quad Ultra XGA [3840x2400] (XGA, QWUXGA)
|
||||||
|
|
||||||
|
@item WQVGA
|
||||||
|
Wide Quarter VGA [432x240] (QVGA, VGA)
|
||||||
|
|
||||||
|
@item WQXGA
|
||||||
|
Wide Quad XGA [2560x1600] (XGA)
|
||||||
|
|
||||||
|
@item WRAM
|
||||||
|
Window Random Access Memory (RAM, IC, Samsung, Matrox)
|
||||||
|
|
||||||
|
@item WRB
|
||||||
|
Web Request Broker (Oracle, WWW)
|
||||||
|
|
||||||
|
@item WRSF
|
||||||
|
Web Service Resource Language (grid)
|
||||||
|
|
||||||
|
@item WRT
|
||||||
|
Whitewater Resource Toolkit (Windows, TPW)
|
||||||
|
|
||||||
|
@item WRT
|
||||||
|
With Respect To (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item WS
|
||||||
|
[Red Hat Enterprise Linux] WorkStation (RedHat, Linux, RHEL)
|
||||||
|
|
||||||
|
@item WS
|
||||||
|
Web Server (Corel)
|
||||||
|
|
||||||
|
@item WS4B
|
||||||
|
Web Services for Browser (WWW)
|
||||||
|
|
||||||
|
@item WSA
|
||||||
|
Wafer Supply Agreement (AMD)
|
||||||
|
|
||||||
|
@item WSAD
|
||||||
|
Websphere Studio Application Developper (IBM, Java)
|
||||||
|
|
||||||
|
@item WSCM
|
||||||
|
Web Services Component Model (OASIS, WWW)
|
||||||
|
|
||||||
|
@item WSDD
|
||||||
|
Web Service Deployment Descriptor (WWW, XML)
|
||||||
|
|
||||||
|
@item WSDK
|
||||||
|
Websphere Software Development Kit (IBM, Java)
|
||||||
|
|
||||||
|
@item WSDL
|
||||||
|
Web Services Description Language (WWW, XML)
|
||||||
|
|
||||||
|
@item WSDP
|
||||||
|
[Java] Web Services Developer Pack (WWW, XML, Java, Sun)
|
||||||
|
|
||||||
|
@item WSE
|
||||||
|
Web Service Enhancements (MS, WWW)
|
||||||
|
|
||||||
|
@item WSEB
|
||||||
|
Warp Server E-Business (IBM, OS/2), "WSeb"
|
||||||
|
|
||||||
|
@item WSF
|
||||||
|
Work Station Feature (IBM)
|
||||||
|
|
||||||
|
@item WSF
|
||||||
|
Work Station Function (IN)
|
||||||
|
|
||||||
|
@item WSFL
|
||||||
|
Web Services Flow Language (WWW, IBM)
|
||||||
|
|
||||||
|
@item WSH
|
||||||
|
Windows Scripting Host (MS, Windows, COM, WSH)
|
||||||
|
|
||||||
|
@item WSI
|
||||||
|
Web Services Interoperability (org., OASIS, WWW), "WS-I"
|
||||||
|
|
||||||
|
@item WSIA
|
||||||
|
Web Services for Interactive Applications (OASIS, WWW)
|
||||||
|
|
||||||
|
@item WSIF
|
||||||
|
Web Services Invocation Framework
|
||||||
|
|
||||||
|
@item WSIL
|
||||||
|
Web Services Inspection Language (IBM, XML)
|
||||||
|
|
||||||
|
@item WSIS
|
||||||
|
World Summit on the Information Society
|
||||||
|
|
||||||
|
@item WSL
|
||||||
|
Windows Subsystem for Linux (MS, Windows, Linux)
|
||||||
|
|
||||||
|
@item WSM
|
||||||
|
Wireless Site Management
|
||||||
|
|
||||||
|
@item WSP
|
||||||
|
White SPace [character] (ABNF, RFC 2234)
|
||||||
|
|
||||||
|
@item WSP
|
||||||
|
Wireless Session Protocol (WAP, mobile-systems)
|
||||||
|
|
||||||
|
@item WSP
|
||||||
|
Workstation Security Package
|
||||||
|
|
||||||
|
@item WSRM
|
||||||
|
Windows System Resource Manager (MS, Windows)
|
||||||
|
|
||||||
|
@item WSRP
|
||||||
|
Web Services for Remote Portals (WSIA, WSXL, OASIS)
|
||||||
|
|
||||||
|
@item WSS
|
||||||
|
Web Services Security (WWW)
|
||||||
|
|
||||||
|
@item WSS
|
||||||
|
Windows Sharepoint Services (MS, Windows)
|
||||||
|
|
||||||
|
@item WSS
|
||||||
|
Windows Sound System (Windows, audio)
|
||||||
|
|
||||||
|
@item WSSD
|
||||||
|
Windows Server Software-Defined (MS, Windows)
|
||||||
|
|
||||||
|
@item WSTK
|
||||||
|
Web Service ToolKit (IBM, WWW)
|
||||||
|
|
||||||
|
@item WSTKMD
|
||||||
|
Web Services Tool Kit for Mobile Devices (IBM, Java)
|
||||||
|
|
||||||
|
@item WSUS
|
||||||
|
Windows Server Update Services (MS, Windows)
|
||||||
|
|
||||||
|
@item WSVGA
|
||||||
|
Wide Super Video Graphics Adapter / Array (VGA)
|
||||||
|
|
||||||
|
@item WSVT
|
||||||
|
Web Service Validation Tools (WTP)
|
||||||
|
|
||||||
|
@item WSXGA
|
||||||
|
Wide Super eXtended Graphics Adapter / Array (XGA), "WSXGA+"
|
||||||
|
|
||||||
|
@item WSXL
|
||||||
|
Web Services Experience Language (WWW)
|
||||||
|
|
||||||
|
@item WT
|
||||||
|
Working Text (DSL-Forum, TR)
|
||||||
|
|
||||||
|
@item WTB
|
||||||
|
Want To Buy (MMORPG, slang)
|
||||||
|
|
||||||
|
@item WTC
|
||||||
|
Windows Terminal Controller
|
||||||
|
|
||||||
|
@item WTF
|
||||||
|
What / Where / Who / Why The Fuck (telecommunication, Usenet, IRC)
|
||||||
|
|
||||||
|
@item WTH
|
||||||
|
What / Where / Who / Why The Hell (telecommunication, Usenet, IRC)
|
||||||
|
|
||||||
|
@item WTLS
|
||||||
|
Wireless Transport Layer Security [protocol] (TLS, WAP)
|
||||||
|
|
||||||
|
@item WTP
|
||||||
|
Web Tool Platform (Eclipse, Java, WWW)
|
||||||
|
|
||||||
|
@item WTP
|
||||||
|
Wireless Transport Protocol (WAP, mobile-systems)
|
||||||
|
|
||||||
|
@item WTS
|
||||||
|
Want To Sell (MMORPG, slang)
|
||||||
|
|
||||||
|
@item WTS
|
||||||
|
Web Transaction Security (WWW)
|
||||||
|
|
||||||
|
@item WTS
|
||||||
|
Windows Terminal Server (MS, :NET)
|
||||||
|
|
||||||
|
@item WTT
|
||||||
|
Want To Trade (MMORPG, slang)
|
||||||
|
|
||||||
|
@item WTX
|
||||||
|
Workstation Technology eXtended [format]
|
||||||
|
|
||||||
|
@item WUXGA
|
||||||
|
Wide Ultra eXtended Graphics Adapter [1920x1200] (XGA)
|
||||||
|
|
||||||
|
@item WVGA
|
||||||
|
Wide Video Graphics Array [800 x 480], [854 x 480], ...
|
||||||
|
|
||||||
|
@item WVNET
|
||||||
|
West Virginia Network for Educational Telecomputing (network, USA)
|
||||||
|
|
||||||
|
@item WVSO
|
||||||
|
WiederVerwendbare SoftwareObjekte
|
||||||
|
|
||||||
|
@item WWAN
|
||||||
|
Wireless Wide Area Network (WLAN, WAN, LTE)
|
||||||
|
|
||||||
|
@item WWCID
|
||||||
|
World Wide Cartridge IDentifier (IBM, Streamer, WORM)
|
||||||
|
|
||||||
|
@item WWDC
|
||||||
|
World Wide Developer Conference (Apple)
|
||||||
|
|
||||||
|
@item WWDM
|
||||||
|
Wide Wave Division Multiplex
|
||||||
|
|
||||||
|
@item WWIMS
|
||||||
|
Worldwide Warning Indicator Monitoring System (mil.)
|
||||||
|
|
||||||
|
@item WWMCCS
|
||||||
|
Worldwide Military Command and Control System (mil., predecessor, GCCS)
|
||||||
|
|
||||||
|
@item WWOLS
|
||||||
|
World Wide On-Line System (mil.)
|
||||||
|
|
||||||
|
@item WWW
|
||||||
|
World Wide Waiting (slang)
|
||||||
|
|
||||||
|
@item WWW
|
||||||
|
World Wide Web (Internet)
|
||||||
|
|
||||||
|
@item WXGA
|
||||||
|
Wide eXtended Graphics Adapter (XGA)
|
||||||
|
|
||||||
|
@item WYGIWYNTYH
|
||||||
|
What You Get Is What You Never Thought You Had (slang)
|
||||||
|
|
||||||
|
@item WYSBYGI
|
||||||
|
What You See Before You Get It (DTP)
|
||||||
|
|
||||||
|
@item WYSIWIS
|
||||||
|
What You See Is What I See
|
||||||
|
|
||||||
|
@item WYSIWYG
|
||||||
|
What You See Is What You Get (DTP)
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
391
vera.x
Normal file
391
vera.x
Normal file
@ -0,0 +1,391 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item X11
|
||||||
|
X window System version 11 (X-Windows)
|
||||||
|
|
||||||
|
@item XA
|
||||||
|
eXtended Architecture (IBM, VM, ESA, VM/ESA, XC)
|
||||||
|
|
||||||
|
@item XAA
|
||||||
|
Xfree86 Acceleration Architecture (X-Windows)
|
||||||
|
|
||||||
|
@item XACML
|
||||||
|
eXtensible Access Control Markup Language (OASIS, XML)
|
||||||
|
|
||||||
|
@item XACT
|
||||||
|
Xante's Accurate Calibration Technology (Xante), "X*ACT"
|
||||||
|
|
||||||
|
@item XADES
|
||||||
|
XML ADvanced Electronic Signature (XML, ETSI, cryptography), "XAdES"
|
||||||
|
|
||||||
|
@item XAG
|
||||||
|
XML Accessibility Guidelines (XML, W3C, WWW)
|
||||||
|
|
||||||
|
@item XAML
|
||||||
|
XML Application Markup Language (XML, MS, Windows)
|
||||||
|
|
||||||
|
@item XAPIA
|
||||||
|
X.400 API Association (org., X.400, API)
|
||||||
|
|
||||||
|
@item XAVC
|
||||||
|
eXtended Advanced Video Coding (Sony, video)
|
||||||
|
|
||||||
|
@item XBEL
|
||||||
|
XML Bookmark Exchange Language (XML, PSA)
|
||||||
|
|
||||||
|
@item XBL
|
||||||
|
eXtensible Binding Language (Mozilla)
|
||||||
|
|
||||||
|
@item XBMC
|
||||||
|
XBox Media Center [old term]
|
||||||
|
|
||||||
|
@item XBMSP
|
||||||
|
XBox Media Streaming Protocol (Xbox)
|
||||||
|
|
||||||
|
@item XBP
|
||||||
|
XBase Parts (Xbase/2, OS/2, DB)
|
||||||
|
|
||||||
|
@item XBRL
|
||||||
|
Extensible Business Reporting Language (XFRML, XML)
|
||||||
|
|
||||||
|
@item XC
|
||||||
|
eXtended Configuration (IBM, ESA, VM)
|
||||||
|
|
||||||
|
@item XCBF
|
||||||
|
XML Common Biometric Format (XML)
|
||||||
|
|
||||||
|
@item XCBL
|
||||||
|
XML Common Business Library (XML), "xCBL"
|
||||||
|
|
||||||
|
@item XCCI
|
||||||
|
X Common Client Interface (X-Windows), "X CCI"
|
||||||
|
|
||||||
|
@item XCEM
|
||||||
|
eXtensions for Control, Engineering and Manufacturing (API, MS, Windows)
|
||||||
|
|
||||||
|
@item XCHS
|
||||||
|
eXtended Cylinder Head Sectors (EIDE)
|
||||||
|
|
||||||
|
@item XCMOS
|
||||||
|
eXtended CMOS (IC, CMOS)
|
||||||
|
|
||||||
|
@item XCMS
|
||||||
|
X Color Management System (X-Windows), "Xcms"
|
||||||
|
|
||||||
|
@item XCOFF
|
||||||
|
eXtended Common Object File Format (Unix)
|
||||||
|
|
||||||
|
@item XCRL
|
||||||
|
extensible Customer Relationships Language (OASIS, CIQ, CRML), "xCRL"
|
||||||
|
|
||||||
|
@item XCUTS
|
||||||
|
X Commands and Utilities Test Suite (X/Open)
|
||||||
|
|
||||||
|
@item XD
|
||||||
|
eXecute Disable (Intel)
|
||||||
|
|
||||||
|
@item XDM
|
||||||
|
X Display Manager (X-Windows)
|
||||||
|
|
||||||
|
@item XDMCP
|
||||||
|
X Display Manager Control Protocol (X-Windows)
|
||||||
|
|
||||||
|
@item XDP
|
||||||
|
eXpress Data Path (BPF, Linux)
|
||||||
|
|
||||||
|
@item XDR
|
||||||
|
eXternal Data Representation (ONC, RPCL, Sun, RFC 1832)
|
||||||
|
|
||||||
|
@item XDRRAM
|
||||||
|
eXtreme Data Rate Random Access Memory (Rambus, RAM), "XDR-RAM"
|
||||||
|
|
||||||
|
@item XDS
|
||||||
|
Xeros Data Systems (manufacturer, Xerox)
|
||||||
|
|
||||||
|
@item XDSL
|
||||||
|
x Digital Subscriber Line (ADSL, HDSL, SDSL, UDSL, VDSL), "xDSL"
|
||||||
|
|
||||||
|
@item XE
|
||||||
|
eXtreme Edition (Intel, Pentium)
|
||||||
|
|
||||||
|
@item XEP
|
||||||
|
XMPP Extension Protocols (XMPP)
|
||||||
|
|
||||||
|
@item XES
|
||||||
|
Xerox Engineering Systems (Xerox)
|
||||||
|
|
||||||
|
@item XFA
|
||||||
|
XML Forms Architecture (XML)
|
||||||
|
|
||||||
|
@item XFCB
|
||||||
|
Extended File Control Block
|
||||||
|
|
||||||
|
@item XFE
|
||||||
|
X Front End (X-Windows)
|
||||||
|
|
||||||
|
@item XFI
|
||||||
|
eXtreme FIdelity (audio, Creative), "X-Fi"
|
||||||
|
|
||||||
|
@item XFN
|
||||||
|
X/open Federated Naming (X/Open)
|
||||||
|
|
||||||
|
@item XFR
|
||||||
|
eXtended Frequency Range (CPU, AMD)
|
||||||
|
|
||||||
|
@item XFRML
|
||||||
|
Extensible Financial Reporting Markup Language (XBRL)
|
||||||
|
|
||||||
|
@item XFS
|
||||||
|
eXtended File System (SGI, Unix, Windows)
|
||||||
|
|
||||||
|
@item XG
|
||||||
|
eXtended General MIDI (Yamaha, MIDI)
|
||||||
|
|
||||||
|
@item XGA
|
||||||
|
eXtended Graphics Adapter [1024x768] (IBM, PS/2)
|
||||||
|
|
||||||
|
@item XGMML
|
||||||
|
eXtensible Graph Markup and Modeling Language
|
||||||
|
|
||||||
|
@item XHTML
|
||||||
|
eXtended HyperText Markup Language (HTML, WWW, XML)
|
||||||
|
|
||||||
|
@item XID
|
||||||
|
[SNA] eXchange IDentifier (SNA)
|
||||||
|
|
||||||
|
@item XIE
|
||||||
|
X Image Extension (X-Windows)
|
||||||
|
|
||||||
|
@item XINU
|
||||||
|
XINU Is Not Unix (OS)
|
||||||
|
|
||||||
|
@item XIOS
|
||||||
|
eXtended Input/Output System (Novell, Netware)
|
||||||
|
|
||||||
|
@item XIP
|
||||||
|
eXecute In Place
|
||||||
|
|
||||||
|
@item XKMS
|
||||||
|
XML Key Management Specification (XML, W3C)
|
||||||
|
|
||||||
|
@item XLFD
|
||||||
|
X Logical Font Description (X-Windows)
|
||||||
|
|
||||||
|
@item XLIFF
|
||||||
|
XML Localisation Interchange File Format (XML)
|
||||||
|
|
||||||
|
@item XLIFF
|
||||||
|
XML Localization Interchange File Format (XML, OASIS)
|
||||||
|
|
||||||
|
@item XLINK
|
||||||
|
eXtended Lokales InformatikNetz Karlsruhe (telecommunication, network, ISP)
|
||||||
|
|
||||||
|
@item XLINK
|
||||||
|
XML LINKing language (XML)
|
||||||
|
|
||||||
|
@item XMAPI
|
||||||
|
eXtended Messaging Application Program Interface (API)
|
||||||
|
|
||||||
|
@item XMF
|
||||||
|
eXtensible Music Format (MMA, MIDI)
|
||||||
|
|
||||||
|
@item XMI
|
||||||
|
eXtended Memory Interconnect (DEC)
|
||||||
|
|
||||||
|
@item XMI
|
||||||
|
XML Metadata Interchange [format] (XML, OMG)
|
||||||
|
|
||||||
|
@item XML
|
||||||
|
eXtensible Markup Language (WWW, XML, W3C)
|
||||||
|
|
||||||
|
@item XMLSS
|
||||||
|
XML Spreadsheet Scheme (XML, MS, Excel)
|
||||||
|
|
||||||
|
@item XMM
|
||||||
|
eXtended Memory Manager (DOS, LIM)
|
||||||
|
|
||||||
|
@item XMMS
|
||||||
|
X MultiMedia System (X-Windows)
|
||||||
|
|
||||||
|
@item XMP
|
||||||
|
eXtensible Metadata Format
|
||||||
|
|
||||||
|
@item XMP
|
||||||
|
X/open Management Protocol (X/Open, X-Windows)
|
||||||
|
|
||||||
|
@item XMPP
|
||||||
|
eXtensible Messaging and Presence Protocol (XMPP)
|
||||||
|
|
||||||
|
@item XMS
|
||||||
|
eXtended Memory Specification (DOS, LIM)
|
||||||
|
|
||||||
|
@item XMS
|
||||||
|
eXtended Multiprocessor operating System (OS)
|
||||||
|
|
||||||
|
@item XN
|
||||||
|
eXecution Node
|
||||||
|
|
||||||
|
@item XNS
|
||||||
|
Xerox Network Services / Systems / Standard (Xerox, XNS)
|
||||||
|
|
||||||
|
@item XNSCP
|
||||||
|
[PPP] XNS IDP Control Protocol (RFC 1764, Xerox, XNS, PPP, XNS, IDP)
|
||||||
|
|
||||||
|
@item XNSIDP
|
||||||
|
Xerox Network Services - Internet Datagram Protocol (Xerox, Internet, XNS), "XNS-IDP"
|
||||||
|
|
||||||
|
@item XNSITP
|
||||||
|
Xerox Network Services/Internet Transport Protocol (Xerox, XNS), "XNS/ITP"
|
||||||
|
|
||||||
|
@item XNTP
|
||||||
|
eXperimental Network Time Protocol (NTP)
|
||||||
|
|
||||||
|
@item XOFF
|
||||||
|
eXchange OFF (MODEM)
|
||||||
|
|
||||||
|
@item XOL
|
||||||
|
XML based Ontology exchange Language (XML, WWW)
|
||||||
|
|
||||||
|
@item XON
|
||||||
|
eXchange ON (MODEM)
|
||||||
|
|
||||||
|
@item XOT
|
||||||
|
X.25 Over TCP (Cisco, X.25, TCP, RFC 1613)
|
||||||
|
|
||||||
|
@item XP
|
||||||
|
[Windows] eXPerience (MS, Windows, OS)
|
||||||
|
|
||||||
|
@item XP
|
||||||
|
eXtreme Programming
|
||||||
|
|
||||||
|
@item XPC
|
||||||
|
X Performance Characterization [group] (GPC, X-Windows)
|
||||||
|
|
||||||
|
@item XPE
|
||||||
|
XchangePoint Europe (ISP)
|
||||||
|
|
||||||
|
@item XPFE
|
||||||
|
cross Platform Front End (Mozilla)
|
||||||
|
|
||||||
|
@item XPG
|
||||||
|
X/open Portability Guide (X/Open, X-Windows)
|
||||||
|
|
||||||
|
@item XPGR3
|
||||||
|
X/open Portability Guide Release 3 (X/Open, X-Windows)
|
||||||
|
|
||||||
|
@item XPP
|
||||||
|
eXtrem Processor Platform (MPP)
|
||||||
|
|
||||||
|
@item XPP
|
||||||
|
X Printing Panel (X-Windows, CUPS, printing)
|
||||||
|
|
||||||
|
@item XPS
|
||||||
|
eXPert System (AI, XPS)
|
||||||
|
|
||||||
|
@item XPS
|
||||||
|
eXtended Parallel Server (DB, Informix)
|
||||||
|
|
||||||
|
@item XPS
|
||||||
|
XML Paper Specification (MS, Windows, Vista)
|
||||||
|
|
||||||
|
@item XPSB
|
||||||
|
X - Protocol Stream Benchmark (XPC, X-Windows)
|
||||||
|
|
||||||
|
@item XQL
|
||||||
|
XML Query language (XML)
|
||||||
|
|
||||||
|
@item XRIP
|
||||||
|
eXtended ??? Routing Information Protocol (Novell, Netware)
|
||||||
|
|
||||||
|
@item XRL
|
||||||
|
X-Ray Lithography
|
||||||
|
|
||||||
|
@item XRML
|
||||||
|
eXtensible Rights Markup Language (RMS, MS, NGSCB), "XrML"
|
||||||
|
|
||||||
|
@item XRN
|
||||||
|
eXpandable Resilient Networking (3Com, LAN)
|
||||||
|
|
||||||
|
@item XRT
|
||||||
|
eXtensions for Real-Time market data (API, MS, Windows)
|
||||||
|
|
||||||
|
@item XSD
|
||||||
|
eXtra Space Design [monitor] (Philips)
|
||||||
|
|
||||||
|
@item XSD
|
||||||
|
XML Schema Definition [language] (XML)
|
||||||
|
|
||||||
|
@item XSDT
|
||||||
|
eXtended System Description Table (ACPI)
|
||||||
|
|
||||||
|
@item XSHM
|
||||||
|
Cross-Site History Manipulation (WWW)
|
||||||
|
|
||||||
|
@item XSHM
|
||||||
|
X Shared Memory (X-Windows)
|
||||||
|
|
||||||
|
@item XSL
|
||||||
|
eXtensible Stylesheet Language (XML, XSL)
|
||||||
|
|
||||||
|
@item XSLFO
|
||||||
|
XML Stylesheet Language - Formatting Objects (XML, XSL), "XSL-FO"
|
||||||
|
|
||||||
|
@item XSLT
|
||||||
|
eXtensible Stylesheet Language Transformations (XSL, XML)
|
||||||
|
|
||||||
|
@item XSMD
|
||||||
|
eXtended Storage Module Driver interface
|
||||||
|
|
||||||
|
@item XSS
|
||||||
|
Cross-Site Scripting (WWW)
|
||||||
|
|
||||||
|
@item XT
|
||||||
|
eXtended Technology (IBM, PC)
|
||||||
|
|
||||||
|
@item XT
|
||||||
|
eXtreme Tailoring (XP)
|
||||||
|
|
||||||
|
@item XTF
|
||||||
|
eXtensible Tag Framework (Mozilla, XML)
|
||||||
|
|
||||||
|
@item XTI
|
||||||
|
X/open Transport Interface (X/Open, X-Windows)
|
||||||
|
|
||||||
|
@item XTM
|
||||||
|
XML Topic Map (XML, KM, XTM)
|
||||||
|
|
||||||
|
@item XTP
|
||||||
|
eXpress Transport Protocol
|
||||||
|
|
||||||
|
@item XTP
|
||||||
|
eXtreme Transactional Processing (MS)
|
||||||
|
|
||||||
|
@item XUI
|
||||||
|
X-windows User Interface (UI, X-Windows)
|
||||||
|
|
||||||
|
@item XUIDL
|
||||||
|
X-Unique-ID-Listing. (UIDL, POP3), "X-UIDL"
|
||||||
|
|
||||||
|
@item XUL
|
||||||
|
XML-based User interface Language (XML, Netscape, Mozilla, AOL)
|
||||||
|
|
||||||
|
@item XUMA
|
||||||
|
eXpertensystem UMweltgefaehrlichkeit von Altlasten (XPS)
|
||||||
|
|
||||||
|
@item XVBA
|
||||||
|
X-Video Bitstream Acceleration (AMD, ATI), "XvBA"
|
||||||
|
|
||||||
|
@item XVT
|
||||||
|
eXecutive Vector Table (BS2000)
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
94
vera.y
Normal file
94
vera.y
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item Y2K
|
||||||
|
[Year 2000] [problem] (slang)
|
||||||
|
|
||||||
|
@item YAAS
|
||||||
|
Yet Another Acronym Server (WWW)
|
||||||
|
|
||||||
|
@item YABA
|
||||||
|
Yet Another Bloody Acronym (slang)
|
||||||
|
|
||||||
|
@item YACC
|
||||||
|
Yet Another Compiler Compiler (Unix)
|
||||||
|
|
||||||
|
@item YACY
|
||||||
|
Yet Another CYberspace (P2P), "YaCy"
|
||||||
|
|
||||||
|
@item YADE
|
||||||
|
Yet Another DSSSL Engine (DSSSL)
|
||||||
|
|
||||||
|
@item YAFFS
|
||||||
|
Yet Another Flash File System (FS, Flash)
|
||||||
|
|
||||||
|
@item YAFIYGI
|
||||||
|
You asked for it, you got it (Usenet, IRC, slang)
|
||||||
|
|
||||||
|
@item YAGNI
|
||||||
|
Youn Ain't Gonna Need It (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item YAHOO
|
||||||
|
Yet Another Hierarchically Officious Oracle (WWW)
|
||||||
|
|
||||||
|
@item YAML
|
||||||
|
Yet Another Multicolumn Layout (HTML, XHTML, CSS)
|
||||||
|
|
||||||
|
@item YAPC
|
||||||
|
Yet Another PERL Conference (PERL)
|
||||||
|
|
||||||
|
@item YARN
|
||||||
|
Yet Another Resource Negotiator (Hadoop)
|
||||||
|
|
||||||
|
@item YASOS
|
||||||
|
Yet Another Scheme Object System
|
||||||
|
|
||||||
|
@item YAST
|
||||||
|
Yet Another Setup Tool (Linux, SUSE), "YaST"
|
||||||
|
|
||||||
|
@item YAUN
|
||||||
|
Yet Another Unix Nerd
|
||||||
|
|
||||||
|
@item YAY
|
||||||
|
Yet Another YACC (YACC, Bull)
|
||||||
|
|
||||||
|
@item YCPS
|
||||||
|
Yale Center for Parallel Supercomputing (org., USA, HPC)
|
||||||
|
|
||||||
|
@item YGWYPF
|
||||||
|
You Get What You Pay For (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item YHTWFWYWTS
|
||||||
|
You Have To Wait For What You Want To See (slang, WYSIWYG)
|
||||||
|
|
||||||
|
@item YLOD
|
||||||
|
Yellow Light Of Death (Sony, Playstation)
|
||||||
|
|
||||||
|
@item YMMD
|
||||||
|
You Made My Day (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item YMMV
|
||||||
|
Your Mileage May Vary (slang)
|
||||||
|
|
||||||
|
@item YOU
|
||||||
|
YAST Online Update (YAST, Linux, SuSE)
|
||||||
|
|
||||||
|
@item YOYO
|
||||||
|
You're On Your Own (slang, Usenet, IRC)
|
||||||
|
|
||||||
|
@item YSM
|
||||||
|
Yourdon Structured Method
|
||||||
|
|
||||||
|
@item YST
|
||||||
|
Yukon Standard Time [-0900] (TZ)
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
214
vera.z
Normal file
214
vera.z
Normal file
@ -0,0 +1,214 @@
|
|||||||
|
@c -*-texinfo-*-
|
||||||
|
@c This is part of the GNU edition of V.E.R.A.
|
||||||
|
@c Copyright (C) 1993/2020 Oliver Heidelbach
|
||||||
|
@c See the file vera.texi for copying conditions.
|
||||||
|
@c
|
||||||
|
@c Syntax:
|
||||||
|
@c ACRONYM
|
||||||
|
@c Expansion[ (Reference)][, "Style"]
|
||||||
|
@c Additional explanations are included in [square brackets]
|
||||||
|
|
||||||
|
@table @asis
|
||||||
|
@item ZAAP
|
||||||
|
Z[series] Application Assist Processor (IBM, zSeries), "zAAP"
|
||||||
|
|
||||||
|
@item ZAK
|
||||||
|
Zero Administration Kit (ZAW, MS, Windows NT)
|
||||||
|
|
||||||
|
@item ZAP
|
||||||
|
ZFS Attribute Processor (ZFS)
|
||||||
|
|
||||||
|
@item ZAPP
|
||||||
|
Zero Assignment Parallel Processor
|
||||||
|
|
||||||
|
@item ZAW
|
||||||
|
Zero Administration initiative for Windows (MS, Windows NT)
|
||||||
|
|
||||||
|
@item ZBR
|
||||||
|
Zone Bit Recording (BIT)
|
||||||
|
|
||||||
|
@item ZC
|
||||||
|
Zone Co-ordinator (FidoNet)
|
||||||
|
|
||||||
|
@item ZCAV
|
||||||
|
Zone Constant Angular Velocity
|
||||||
|
|
||||||
|
@item ZCLV
|
||||||
|
Zoned Constant Linear Velocity (DVD, DVD-RAM)
|
||||||
|
|
||||||
|
@item ZCR
|
||||||
|
Zero Channel RAID (RAID)
|
||||||
|
|
||||||
|
@item ZCV
|
||||||
|
Zortech Class Viewer (Zortech)
|
||||||
|
|
||||||
|
@item ZDPMS
|
||||||
|
Zero Delay Power Monitoring System (Enermax)
|
||||||
|
|
||||||
|
@item ZDS
|
||||||
|
Zenith Data Systems (manufacturer)
|
||||||
|
|
||||||
|
@item ZDVA
|
||||||
|
Zentrale DatenVerarbeitungsAnlage [des bundes]
|
||||||
|
|
||||||
|
@item ZE
|
||||||
|
Zentraleinheit (CPU)
|
||||||
|
|
||||||
|
@item ZEAS
|
||||||
|
ZEntrales AbsatzanalyseSystem (MBAG)
|
||||||
|
|
||||||
|
@item ZEBES
|
||||||
|
Zentrales teile-BEstandsSteuerungssystem (MBAG)
|
||||||
|
|
||||||
|
@item ZEDAT
|
||||||
|
ZentralEinrichtung DATenverarbeitung (FUB, Org)
|
||||||
|
|
||||||
|
@item ZEDIS
|
||||||
|
ZEntrales teile-DispositionsSystem (MBAG)
|
||||||
|
|
||||||
|
@item ZEO
|
||||||
|
ZOPE Enterprise Objects (ZOPE)
|
||||||
|
|
||||||
|
@item ZEPRAS
|
||||||
|
ZEntrales PReisabwicklungs- und AnalyseSystem (MBAG)
|
||||||
|
|
||||||
|
@item ZESOD
|
||||||
|
ZEntrale teileSOrtimentDatei (MBAG)
|
||||||
|
|
||||||
|
@item ZEVIS
|
||||||
|
ZEntrales VerkehrsInformationsSystem (Kraftfahrzeugbundesamt)
|
||||||
|
|
||||||
|
@item ZFOD
|
||||||
|
Zero-Filled On Demand
|
||||||
|
|
||||||
|
@item ZFS
|
||||||
|
Zettabyte File System [old term] (Sun, Solaris)
|
||||||
|
|
||||||
|
@item ZGDV
|
||||||
|
Zentrum fuer Grafische DatenVerabeitung (org., Darmstadt, Germany)
|
||||||
|
|
||||||
|
@item ZIAM
|
||||||
|
Zentrum fuer Industrielle Anwendungen Massiver parallelitaet [gmbh] (org.)
|
||||||
|
|
||||||
|
@item ZIB
|
||||||
|
[konrad-zuse] Zentrum fuer Informationstechnik Berlin (org.)
|
||||||
|
|
||||||
|
@item ZIF
|
||||||
|
Zero Insertion Force [socket] (IC)
|
||||||
|
|
||||||
|
@item ZIIP
|
||||||
|
[system] Z9 Integrated Information Processor (IBM, zSeries), "zIIP"
|
||||||
|
|
||||||
|
@item ZIL
|
||||||
|
ZFS Intent Log (ZFS)
|
||||||
|
|
||||||
|
@item ZIL
|
||||||
|
Zork Implementation Language (Infocom)
|
||||||
|
|
||||||
|
@item ZILOG
|
||||||
|
Z (the last word of) Integrated LOGic (manufacturer), "ZiLOG"
|
||||||
|
|
||||||
|
@item ZIP
|
||||||
|
Zigzag Inline Package (VRAM)
|
||||||
|
|
||||||
|
@item ZIP
|
||||||
|
Zone Information Protocol (AppleTalk)
|
||||||
|
|
||||||
|
@item ZIS
|
||||||
|
ZollInformationsSystem Germany
|
||||||
|
|
||||||
|
@item ZISC
|
||||||
|
Zero Instruction Set Computer (CPU)
|
||||||
|
|
||||||
|
@item ZIT
|
||||||
|
interdisziplinaeres forschungsZentrum fuer Informatik und Technik (org., Uni Paderborn, Germany)
|
||||||
|
|
||||||
|
@item ZKA
|
||||||
|
Zentraler Kreditausschuss banking, Org., Germany
|
||||||
|
|
||||||
|
@item ZKDSG
|
||||||
|
ZugangsKontrollDiensteSchutzGesetz Germany, telecommunication
|
||||||
|
|
||||||
|
@item ZKI
|
||||||
|
Zentralinstitut fuer Kybernetik und Informationsprozesse (GDR)
|
||||||
|
|
||||||
|
@item ZMD
|
||||||
|
Zenworks [Linux] Management DAEMON (Novell, Linux, DEAMON)
|
||||||
|
|
||||||
|
@item ZMH
|
||||||
|
Zone Mail Hour (FidoNet)
|
||||||
|
|
||||||
|
@item ZMI
|
||||||
|
ZOPE Management Interface (ZOPE)
|
||||||
|
|
||||||
|
@item ZMT
|
||||||
|
Zentrum fuer Multimediale Telekommunikation (BERKOM)
|
||||||
|
|
||||||
|
@item ZOC
|
||||||
|
Zap-O-Comm (OS/2, telecommunication)
|
||||||
|
|
||||||
|
@item ZODB
|
||||||
|
ZOPE DataBase (DB, OO, ZOPE)
|
||||||
|
|
||||||
|
@item ZOL
|
||||||
|
ZFS On Linux (Linux, ZFS)
|
||||||
|
|
||||||
|
@item ZOPE
|
||||||
|
Z Object Publishing Environment (ZOPE)
|
||||||
|
|
||||||
|
@item ZOS
|
||||||
|
Z/Operating System (IBM, Java, OS), "z/OS"
|
||||||
|
|
||||||
|
@item ZPL
|
||||||
|
ZFS POSIX Layer (ZFS, POSIX)
|
||||||
|
|
||||||
|
@item ZPL
|
||||||
|
Zope Public License
|
||||||
|
|
||||||
|
@item ZPR
|
||||||
|
Zentrum fuer Paralleles Rechnen (org., Uni Koeln, Germany)
|
||||||
|
|
||||||
|
@item ZPR
|
||||||
|
Zero Power Resistance
|
||||||
|
|
||||||
|
@item ZPT
|
||||||
|
ZOPE Page Templates (ZOPE)
|
||||||
|
|
||||||
|
@item ZRE
|
||||||
|
Zero Rate Error
|
||||||
|
|
||||||
|
@item ZRTP
|
||||||
|
Zimmerman's Real-time Transport Protocol (TTP)
|
||||||
|
|
||||||
|
@item ZRZ
|
||||||
|
Zentrales RechenZentrum (org., TUB)
|
||||||
|
|
||||||
|
@item ZSI
|
||||||
|
Zentralstelle fuer Sicherheit in der Informationstechnik [old term] Org., Germany, BSI, Vorlaeufer
|
||||||
|
|
||||||
|
@item ZSK
|
||||||
|
Zone Signing Key (KSK)
|
||||||
|
|
||||||
|
@item ZSL
|
||||||
|
Zero Slot LAN (LAN)
|
||||||
|
|
||||||
|
@item ZV
|
||||||
|
Zoomed Video (video)
|
||||||
|
|
||||||
|
@item ZVM
|
||||||
|
Z/Virtual Machine (IBM, VM), "z/VM"
|
||||||
|
|
||||||
|
@item ZVOL
|
||||||
|
ZFS VOLume (ZFS)
|
||||||
|
|
||||||
|
@item ZWEI
|
||||||
|
ZWEI Was EINE Initially (EINE, LISP)
|
||||||
|
|
||||||
|
@item ZZF
|
||||||
|
Zentralamt zur Zulassung von Fernmeldeeinrichtungen (org., DTAG, predecessor, BZT)
|
||||||
|
|
||||||
|
@item ZZK
|
||||||
|
ZentralZeichengabeKanal (ISDN)
|
||||||
|
|
||||||
|
@end table
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user