T.R | Title | User | Personal Name | Date | Lines |
---|
1203.1 | we're playing 'sounds like', right? | HYDRA::SCHAFER | Mark Schafer, SPE MRO | Thu Feb 06 1997 09:07 | 1 |
| brassiere?
|
1203.2 | | NETCAD::MORRISON | Bob M. LKG2-A/R5 226-7570 | Thu Feb 06 1997 14:58 | 10 |
| Years ago, I was reading an article about obscure words and it mentioned
"embracery". It said it had a legal meaning, but I forgot what. It is not
related to "embrace". I got curious and looked it up in the dictionary.
A decade or so later, after buying a new dictionary, I got curious again and
looked it up. It wasn't there. Usually, when a word disappears from the
dictionary, it means that it is no longer used by the profession that formerly
used it. So I'm guessing that this word is no longer used by the U.S. legal pro-
fession. Perhaps "jury tampering" is the replacement term.
If you can find a big dictionary that is over 20 years old, or a very big
(library-type) dictionary, that word is probably in there.
|
1203.3 | | WLDBIL::KILGORE | How serious is this? | Fri Feb 07 1997 07:10 | 7 |
|
embracery n : an attempty to influence a jury corruptly (as by bribes
or threats
(Webster's Ninth New Collegiate, (C)1988, Merriam-Webster; 2.8 lb, 1562
pages)
|
1203.4 | Don't need an OLD dictionary, just a COMPENDIOUS one. | SMURF::BINDER | Errabit quicquid errare potest. | Fri Feb 07 1997 09:24 | 7 |
| embracery n., pl. embraceries. Law.
An attempt to corrupt a jury, as with bribery. [Middle English
<embracerie>, from <embracen>, to influence a jury by illegal means, to
embrace. See EMBRACE.]
-- American Heritage Dictionary, Third Edition, � 1992; Electronic
version � 1994-1996, Softkey International.
|
1203.5 | Thankyou so much. | SHRCTR::PJOHNSON | Vaya con huevos. | Fri Feb 07 1997 17:31 | 0 |
1203.6 | Use the on-line Webster... | UTRUST::TIMMER | Semper TECO! | Mon Feb 10 1997 07:35 | 9 |
|
UTR03_FTA44:> webster embracery
Connecting to Xwebster server at 16.1.16.1
The meaning of the word is:
DEFINITION 0
em.brac.ery \im-'bra-s-(*-)re-\ n [ME, fr. AF embraceor] : an attempt
to
influence a jury corruptly
|
1203.7 | | BUSY::SLAB | Form feed = <ctrl>v <ctrl>l | Mon Feb 17 1997 12:19 | 3 |
|
Apparently some of us are without an on-line Webster.
|
1203.8 | Teach a man to fish (rather than tease him) | PCBUOA::BAYJ | Jim, Portables | Mon Feb 17 1997 12:28 | 5 |
| Yeah. I bet if someone volunteered information on what one is and how
one uses it, more people might use it.
jeb
|
1203.9 | Go Fish! | HYDRA::SCHAFER | Mark Schafer, SPE MRO | Mon Feb 17 1997 13:32 | 4 |
| 15 mins. and AltaVista produced these and others:
http://c.gp.cs.cmu.edu:5103/prog/webster
http://www.uiuc.edu/cgi-bin/oed/
|
1203.10 | webster.com | UTRUST::TIMMER | Semper TECO! | Tue Feb 18 1997 06:47 | 183 |
| $ create webster.c
/*
* Author:
*
* James A. Lundon
*
* Date:
*
* 22 September 1993
*
* Abstract:
*
* This is probably the most basic client possible to XWEBSTER situated
* at WEBSTER_IP_ADDR. It will allow the user input a word and then
* return the definition of that word, nothing else.
*
* Instructions to Compile:
*
* To compile this program on VMS:
*
* $ define SYS SYS$LIBRARY ! Get the proper header files
* $ define NETINET SYS$LIBRARY ! Get the proper header files
* $ cc webster
* $ link webster, sys$input/opt
* sys$library:ucx$ipc/lib ! UCX functions e.g connect, send...
* sys$library:vaxcrtl.exe/share ! VAX C RTL
* ^Z
* $ run webster
*
* To compile this program on ULTRIX:
*
* % cc(c89) -o webster webster.c
* % webster
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#define BUFSIZ 32768
#define WEBSTER_IP_ADDR "16.1.16.1"
#if vms
#define NO_SCREEN 0X10000000
#define EXIT(status) (exit (NO_SCREEN | status))
#else
#define EXIT(status) (exit (status))
#endif
main (
int argc,
char *argv[])
{
char webster_read[BUFSIZ],
webster_query[BUFSIZ],
temp_str[50 + 1];
int s,
status,
count;
struct sockaddr_in *SockAddr;
/*
* Validate input
*/
if ( argc > 1 )
{
strcpy (temp_str, argv[1]);
}
else
{
printf ("Please input word to get definition : ");
fgets (temp_str, 50, stdin);
temp_str[strlen (temp_str) - 1] = (char) NULL;
}
/*
* Checking for existance of wildcards or other illegal characters
*/
count = 0;
while ( temp_str[count] != (char) NULL )
{
if ( !isalpha (temp_str[count]) )
{
printf ("Illegal wilcard characters in the input word\n");
EXIT(EXIT_FAILURE);
}
count++;
}
/*
* Connect to Xwebster
*/
SockAddr = (struct sockaddr_in *) calloc (sizeof (struct sockaddr), 1);
SockAddr->sin_family = AF_INET;
SockAddr->sin_addr.s_addr = inet_addr (WEBSTER_IP_ADDR);
SockAddr->sin_port = htons (10300);
/*
* Socket provides sequence, reliable, two-way connection based byte
* streams with an available out-of-band data transmission machanism.
*/
s = socket (AF_INET, SOCK_STREAM, 0);
printf ("Connecting to Xwebster server at %s", WEBSTER_IP_ADDR);
status = connect (
s,
SockAddr,
sizeof(struct sockaddr_in));
if ( status != 0 )
{
printf ("connect status is %d and errno is %d\n", status, errno);
EXIT(EXIT_FAILURE);
}
/*
* Read/Write to/from server
*/
sprintf (
webster_query,
"DEFINE %s\015\012",
temp_str);
status = send (
s,
webster_query,
strlen(webster_query), 0);
if ( status < 0 )
{
printf ("\nError with server query - Exitting\n");
EXIT(EXIT_FAILURE);
}
status = read (
s,
webster_read,
BUFSIZ);
if ( status < 0 )
{
printf ("\nError with server returning output - Exitting\n");
EXIT(EXIT_FAILURE);
}
printf ("\nThe meaning of the word is:\n");
printf ("%s\n", webster_read);
status = close (s);
if ( status != 0 )
{
printf ("close status is %d and errno is %d\n", status, errno);
EXIT(EXIT_FAILURE);
}
EXIT(EXIT_SUCCESS);
}
$ define SYS SYS$LIBRARY ! Get the proper header files
$ define NETINET SYS$LIBRARY ! Get the proper header files
$ cc webster
$ link webster, sys$input/opt
sys$library:ucx$ipc/lib ! UCX functions e.g connect, send...
sys$library:vaxcrtl.exe/share ! VAX C RTL
$ exit
|
1203.11 | A version for DEC C (Alpha and VAX) | HNDYMN::MCCARTHY | A Quinn Martin Production | Tue Feb 18 1997 07:18 | 209 |
| $ create webster.c
/*
* Author:
*
* James A. Lundon
*
* Date:
*
* 22 September 1993
*
* Abstract:
*
* This is probably the most basic client possible to XWEBSTER situated
* at WEBSTER_IP_ADDR. It will allow the user input a word and then
* return the definition of that word, nothing else.
*
* Instructions to Compile:
*
* To compile this program on VMS:
*
* $ define/user SYS SYS$LIBRARY ! Get the proper header files
* $ define/user NETINET SYS$LIBRARY ! Get the proper header files
*
* $ ! Alpha systems:
*
* $ cc/stand=vaxc webster
* $ link webster
*
* $ ! VAX systems (DEC C installed)
*
* $ cc/decc/stand=vaxc webster
* $ link webster
*
* $ ! VAX systems (VAX C only)
*
* $ cc webster
* $ link webster, sys$input/opt
* sys$library:ucx$ipc/lib ! UCX functions e.g connect, send...
* sys$library:vaxcrtl.exe/share ! VAX C RTL
* ^Z
*
* $ run webster
*
* To compile this program on ULTRIX:
*
* % cc(c89) -o webster webster.c
* % webster
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#define BUFSIZ 32768
#define WEBSTER_IP_ADDR "16.1.16.1"
#if vms
#define NO_SCREEN 0X10000000
#define EXIT(status) (exit (NO_SCREEN | status))
#else
#define EXIT(status) (exit (status))
#endif
main (
int argc,
char *argv[])
{
char webster_read[BUFSIZ],
webster_query[BUFSIZ],
temp_str[50 + 1];
int s,
status,
count;
struct sockaddr_in *SockAddr;
/*
* Validate input
*/
if ( argc > 1 )
{
strcpy (temp_str, argv[1]);
}
else
{
printf ("Please input word to get definition : ");
fgets (temp_str, 50, stdin);
temp_str[strlen (temp_str) - 1] = (char) NULL;
}
/*
* Checking for existance of wildcards or other illegal characters
*/
count = 0;
while ( temp_str[count] != (char) NULL )
{
if ( !isalpha (temp_str[count]) )
{
printf ("Illegal wilcard characters in the input word\n");
EXIT(EXIT_FAILURE);
}
count++;
}
/*
* Connect to Xwebster
*/
SockAddr = (struct sockaddr_in *) calloc (sizeof (struct sockaddr), 1);
SockAddr->sin_family = AF_INET;
SockAddr->sin_addr.s_addr = inet_addr (WEBSTER_IP_ADDR);
SockAddr->sin_port = htons (10300);
/*
* Socket provides sequence, reliable, two-way connection based byte
* streams with an available out-of-band data transmission machanism.
*/
s = socket (AF_INET, SOCK_STREAM, 0);
printf ("Connecting to Xwebster server at %s", WEBSTER_IP_ADDR);
status = connect (
s,
SockAddr,
sizeof(struct sockaddr_in));
if ( status != 0 )
{
printf ("connect status is %d and errno is %d\n", status, errno);
EXIT(EXIT_FAILURE);
}
/*
* Read/Write to/from server
*/
sprintf (
webster_query,
"DEFINE %s\015\012",
temp_str);
status = send (
s,
webster_query,
strlen(webster_query), 0);
if ( status < 0 )
{
printf ("\nError with server query - Exitting\n");
EXIT(EXIT_FAILURE);
}
status = read (
s,
webster_read,
BUFSIZ);
if ( status < 0 )
{
printf ("\nError with server returning output - Exitting\n");
EXIT(EXIT_FAILURE);
}
printf ("\nThe meaning of the word is:\n");
printf ("%s\n", webster_read);
status = close (s);
if ( status != 0 )
{
printf ("close status is %d and errno is %d\n", status, errno);
EXIT(EXIT_FAILURE);
}
EXIT(EXIT_SUCCESS);
}
$ define/user SYS SYS$LIBRARY ! Get the proper header files
$ define/user NETINET SYS$LIBRARY ! Get the proper header files
$ IF f$getsyi ("ARCH_NAME") .EQS. "Alpha"
$ THEN
$ cc/stand=vaxc webster
$ link webster
$ else
$ IF F$SEARCH("SYS$SYSTEM:DECC$COMPILER.EXE") .NES. ""
$ THEN
$ CC/DECC/STAND=VAXC WEBSTER
$ link webster
$ ELSE
$ cc webster
$ link webster, sys$input/opt
sys$library:ucx$ipc/lib ! UCX functions e.g connect, send...
sys$library:vaxcrtl.exe/share ! VAX C RTL
$ ENDIF ! check for DECC$COMPILER installed
$ ENDIF
$ exit
|
1203.12 | "DEFINE" and "HELP" must be upper case | COVERT::COVERT | John R. Covert | Tue Feb 18 1997 08:44 | 13 |
| Well, those C programs are cute.
But a simple
$ telnet 16.1.16.1 10300
Seems to work just fine. Type "Help" for assistance with commands,
the simplest of which is "Define <word>"
What is the source of the database (which of the many "Websters")?
What are licensing considerations?
/john
|
1203.13 | | NOTIME::SACKS | Gerald Sacks ZKO2-3/N30 DTN:381-2085 | Tue Feb 18 1997 11:24 | 1 |
| For Merriam-Webster's: http://www.m-w.com/netdict.htm
|