Unnamed: 0
int64 0
11.3k
| raw_text
stringlengths 1
74.9k
⌀ | filenames
stringlengths 76
93
| target
int64 0
19
| id
stringlengths 13
30
| tokenized
stringlengths 2
197k
| lemmatized
stringlengths 2
63.2k
| bigram
stringlengths 2
23.9k
| vw_text
stringlengths 37
26.6k
|
---|---|---|---|---|---|---|---|---|
2,104 | Archive-name: cryptography-faq/part06
Last-modified: 1993/4/15
FAQ for sci.crypt, part 6: Public-Key Cryptography
This is the sixth of ten parts of the sci.crypt FAQ. The parts are
mostly independent, but you should read the first part before the rest.
We don't have the time to send out missing parts by mail, so don't ask.
Notes such as ``[KAH67]'' refer to the reference list in the last part.
The sections of this FAQ are available via anonymous FTP to rtfm.mit.edu
as /pub/usenet/news.answers/cryptography-faq/part[xx]. The Cryptography
FAQ is posted to the newsgroups sci.crypt, sci.answers, and news.answers
every 21 days.
Contents:
* What is public-key cryptography?
* What's RSA?
* Is RSA secure?
* How fast can people factor numbers?
* What about other public-key cryptosystems?
* What is public-key cryptography?
In a classic cryptosystem, we have encryption functions E_K and
decryption functions D_K such that D_K(E_K(P)) = P for any plaintext
P. In a public-key cryptosystem, E_K can be easily computed from some
``public key'' X which in turn is computed from K. X is published, so
that anyone can encrypt messages. If D_K cannot be easily computed
from X, then only the person who generated K can decrypt messages.
That's the essence of public-key cryptography, published by Diffie
and Hellman in 1976.
In a classic cryptosystem, if you want your friends to be able to
send secret messages to you, you have to make sure nobody other than
them sees the key K. In a public-key cryptosystem, you just publish X,
and you don't have to worry about spies.
This is only the beginning of public-key cryptography. There is an
extensive literature on security models for public-key cryptography,
applications of public-key cryptography, other applications of the
mathematical technology behind public-key cryptography, and so on.
* What's RSA?
RSA is a public-key cryptosystem defined by Rivest, Shamir, and
Adleman. For full details, there is a FAQ available by ftp at
RSA.COM. Here's a small example.
Plaintexts are positive integers up to 2^{512}. Keys are quadruples
(p,q,e,d), with p a 256-bit prime number, q a 258-bit prime number,
and d and e large numbers with (de - 1) divisible by (p-1)(q-1). We
define E_K(P) = P^e mod pq, D_K(C) = C^d mod pq.
Now E_K is easily computed from the pair (pq,e)---but, as far as
anyone knows, there is no easy way to compute D_K from the pair
(pq,e). So whoever generates K can publish (pq,e). Anyone can send a
secret message to him; he is the only one who can read the messages.
* Is RSA secure?
Nobody knows. An obvious attack on RSA is to factor pq into p and q.
See below for comments on how fast state-of-the-art factorization
algorithms run. Unfortunately nobody has the slightest idea how to
prove that factorization---or any realistic problem at all, for that
matter---is inherently slow. It is easy to formalize what we mean by
``RSA is/isn't strong''; but, as Hendrik W. Lenstra, Jr., says,
``Exact definitions appear to be necessary only when one wishes to
prove that algorithms with certain properties do _not_ exist, and
theoretical computer science is notoriously lacking in such negative
results.''
* How fast can people factor numbers?
It depends on the size of the numbers. In October 1992 Arjen Lenstra
and Dan Bernstein factored 2^523 - 1 into primes, using about three
weeks of MasPar time. (The MasPar is a 16384-processor SIMD machine;
each processor can add about 200000 integers per second.) The
algorithm there is called the ``number field sieve''; it is quite a
bit faster for special numbers like 2^523 - 1 than for general numbers
n, but it takes time only about exp(O(log^{1/3} n log^{2/3} log n)) in
any case.
An older and more popular method for smaller numbers is the ``multiple
polynomial quadratic sieve'', which takes time exp(O(log^{1/2} n
log^{1/2} log n))---faster than the number field sieve for small n,
but slower for large n. The breakeven point is somewhere between 100
and 150 digits, depending on the implementations.
Factorization is a fast-moving field---the state of the art just a few
years ago was nowhere near as good as it is now. If no new methods are
developed, then 2048-bit RSA keys will always be safe from
factorization, but one can't predict the future. (Before the number
field sieve was found, many people conjectured that the quadratic
sieve was asymptotically as fast as any factoring method could be.)
* What about other public-key cryptosystems? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15253 | 11 | sci_crypt_15253 | [('archive', 'JJ'), ('name', 'NN'), ('cryptography', 'NN'), ('faq', 'NN'), ('part06', 'NN'), ('last', 'JJ'), ('modified', 'JJ'), ('1993', 'CD'), ('15', 'CD'), ('faq', 'NN'), ('for', 'IN'), ('sci', 'NN'), ('crypt', 'JJ'), ('part', 'NN'), ('public', 'JJ'), ('key', 'NN'), ('cryptography', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('sixth', 'JJ'), ('of', 'IN'), ('ten', 'JJ'), ('parts', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('sci', 'NN'), ('crypt', 'VBZ'), ('faq', 'VBZ'), ('the', 'DT'), ('parts', 'NNS'), ('are', 'VBP'), ('mostly', 'RB'), ('independent', 'JJ'), ('but', 'CC'), ('you', 'PRP'), ('should', 'MD'), ('read', 'VB'), ('the', 'DT'), ('first', 'JJ'), ('part', 'NN'), ('before', 'IN'), ('the', 'DT'), ('rest', 'NN'), ('we', 'PRP'), ('don', 'VBP'), ('have', 'VBP'), ('the', 'DT'), ('time', 'NN'), ('to', 'TO'), ('send', 'VB'), ('out', 'RP'), ('missing', 'VBG'), ('parts', 'NNS'), ('by', 'IN'), ('mail', 'NN'), ('so', 'RB'), ('don', 'JJ'), ('ask', 'JJ'), ('notes', 'NNS'), ('such', 'JJ'), ('as', 'IN'), ('``[', 'JJ'), ('kah67', 'NN'), ("]''", 'NNP'), ('refer', 'NN'), ('to', 'TO'), ('the', 'DT'), ('reference', 'NN'), ('list', 'NN'), ('in', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('part', 'NN'), ('the', 'DT'), ('sections', 'NNS'), ('of', 'IN'), ('this', 'DT'), ('faq', 'NN'), ('are', 'VBP'), ('available', 'JJ'), ('via', 'IN'), ('anonymous', 'JJ'), ('ftp', 'NNS'), ('to', 'TO'), ('rtfm', 'VB'), ('mit', 'NN'), ('edu', 'NN'), ('as', 'IN'), ('pub', 'JJ'), ('usenet', 'JJ'), ('news', 'NN'), ('answers', 'NNS'), ('cryptography', 'VBP'), ('faq', 'JJ'), ('part', 'NN'), ('xx', 'NNP'), ('].', 'VBZ'), ('the', 'DT'), ('cryptography', 'NN'), ('faq', 'NN'), ('is', 'VBZ'), ('posted', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('newsgroups', 'NNS'), ('sci', 'VBP'), ('crypt', 'JJ'), ('sci', 'NN'), ('answers', 'NNS'), ('and', 'CC'), ('news', 'NN'), ('answers', 'NNS'), ('every', 'DT'), ('21', 'CD'), ('days', 'NNS'), ('contents', 'NNS'), ('what', 'WP'), ('is', 'VBZ'), ('public', 'JJ'), ('key', 'JJ'), ('cryptography', 'NN'), ('what', 'WP'), ('rsa', 'NN'), ('is', 'VBZ'), ('rsa', 'JJ'), ('secure', 'NN'), ('how', 'WRB'), ('fast', 'RB'), ('can', 'MD'), ('people', 'NNS'), ('factor', 'VB'), ('numbers', 'NNS'), ('what', 'WP'), ('about', 'IN'), ('other', 'JJ'), ('public', 'JJ'), ('key', 'NN'), ('cryptosystems', 'VBZ'), ('what', 'WP'), ('is', 'VBZ'), ('public', 'JJ'), ('key', 'JJ'), ('cryptography', 'NN'), ('in', 'IN'), ('classic', 'JJ'), ('cryptosystem', 'NN'), ('we', 'PRP'), ('have', 'VBP'), ('encryption', 'JJ'), ('functions', 'NNS'), ('e_k', 'VBP'), ('and', 'CC'), ('decryption', 'NN'), ('functions', 'NNS'), ('d_k', 'VBP'), ('such', 'JJ'), ('that', 'IN'), ('d_k', 'VBP'), ('e_k', 'JJ'), ('))', 'NNP'), ('for', 'IN'), ('any', 'DT'), ('plaintext', 'NN'), ('in', 'IN'), ('public', 'JJ'), ('key', 'JJ'), ('cryptosystem', 'NN'), ('e_k', 'NN'), ('can', 'MD'), ('be', 'VB'), ('easily', 'RB'), ('computed', 'VBN'), ('from', 'IN'), ('some', 'DT'), ('``', '``'), ('public', 'JJ'), ('key', 'NN'), ("''", "''"), ('which', 'WDT'), ('in', 'IN'), ('turn', 'NN'), ('is', 'VBZ'), ('computed', 'VBN'), ('from', 'IN'), ('is', 'VBZ'), ('published', 'VBN'), ('so', 'RB'), ('that', 'IN'), ('anyone', 'NN'), ('can', 'MD'), ('encrypt', 'VB'), ('messages', 'NNS'), ('if', 'IN'), ('d_k', 'JJ'), ('cannot', 'NN'), ('be', 'VB'), ('easily', 'RB'), ('computed', 'VBN'), ('from', 'IN'), ('then', 'RB'), ('only', 'RB'), ('the', 'DT'), ('person', 'NN'), ('who', 'WP'), ('generated', 'VBD'), ('can', 'MD'), ('decrypt', 'VB'), ('messages', 'NNS'), ('that', 'IN'), ('the', 'DT'), ('essence', 'NN'), ('of', 'IN'), ('public', 'JJ'), ('key', 'NN'), ('cryptography', 'NN'), ('published', 'VBN'), ('by', 'IN'), ('diffie', 'NN'), ('and', 'CC'), ('hellman', 'NN'), ('in', 'IN'), ('1976', 'CD'), ('in', 'IN'), ('classic', 'JJ'), ('cryptosystem', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('your', 'PRP$'), ('friends', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('send', 'VB'), ('secret', 'JJ'), ('messages', 'NNS'), ('to', 'TO'), ('you', 'PRP'), ('you', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('make', 'VB'), ('sure', 'JJ'), ('nobody', 'NN'), ('other', 'JJ'), ('than', 'IN'), ('them', 'PRP'), ('sees', 'VBZ'), ('the', 'DT'), ('key', 'NN'), ('in', 'IN'), ('public', 'JJ'), ('key', 'JJ'), ('cryptosystem', 'NN'), ('you', 'PRP'), ('just', 'RB'), ('publish', 'VB'), ('and', 'CC'), ('you', 'PRP'), ('don', 'VBP'), ('have', 'VBP'), ('to', 'TO'), ('worry', 'VB'), ('about', 'IN'), ('spies', 'NNS'), ('this', 'DT'), ('is', 'VBZ'), ('only', 'RB'), ('the', 'DT'), ('beginning', 'NN'), ('of', 'IN'), ('public', 'JJ'), ('key', 'NN'), ('cryptography', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('an', 'DT'), ('extensive', 'JJ'), ('literature', 'NN'), ('on', 'IN'), ('security', 'NN'), ('models', 'NNS'), ('for', 'IN'), ('public', 'JJ'), ('key', 'NN'), ('cryptography', 'NN'), ('applications', 'NNS'), ('of', 'IN'), ('public', 'JJ'), ('key', 'NN'), ('cryptography', 'NN'), ('other', 'JJ'), ('applications', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('mathematical', 'JJ'), ('technology', 'NN'), ('behind', 'IN'), ('public', 'JJ'), ('key', 'JJ'), ('cryptography', 'NN'), ('and', 'CC'), ('so', 'RB'), ('on', 'IN'), ('what', 'WP'), ('rsa', 'NN'), ('rsa', 'NN'), ('is', 'VBZ'), ('public', 'JJ'), ('key', 'JJ'), ('cryptosystem', 'NN'), ('defined', 'VBN'), ('by', 'IN'), ('rivest', 'NN'), ('shamir', 'NN'), ('and', 'CC'), ('adleman', 'NN'), ('for', 'IN'), ('full', 'JJ'), ('details', 'NNS'), ('there', 'EX'), ('is', 'VBZ'), ('faq', 'JJ'), ('available', 'JJ'), ('by', 'IN'), ('ftp', 'NN'), ('at', 'IN'), ('rsa', 'NN'), ('com', 'NN'), ('here', 'RB'), ('small', 'JJ'), ('example', 'NN'), ('plaintexts', 'NN'), ('are', 'VBP'), ('positive', 'JJ'), ('integers', 'NNS'), ('up', 'RB'), ('to', 'TO'), ('^{', 'VB'), ('512', 'CD'), ('}.', 'JJ'), ('keys', 'NNS'), ('are', 'VBP'), ('quadruples', 'NNS'), ('),', 'IN'), ('with', 'IN'), ('256', 'CD'), ('bit', 'NN'), ('prime', 'JJ'), ('number', 'NN'), ('258', 'CD'), ('bit', 'NN'), ('prime', 'JJ'), ('number', 'NN'), ('and', 'CC'), ('and', 'CC'), ('large', 'JJ'), ('numbers', 'NNS'), ('with', 'IN'), ('de', 'NNS'), ('divisible', 'JJ'), ('by', 'IN'), (')(', 'JJ'), (').', 'NN'), ('we', 'PRP'), ('define', 'VBP'), ('e_k', 'JJ'), ('mod', 'NN'), ('pq', 'NN'), ('d_k', 'NN'), ('mod', 'NN'), ('pq', 'NN'), ('now', 'RB'), ('e_k', 'VBZ'), ('is', 'VBZ'), ('easily', 'RB'), ('computed', 'VBN'), ('from', 'IN'), ('the', 'DT'), ('pair', 'NN'), ('pq', 'JJ'), (')---', 'JJ'), ('but', 'CC'), ('as', 'RB'), ('far', 'RB'), ('as', 'IN'), ('anyone', 'NN'), ('knows', 'VBZ'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('easy', 'JJ'), ('way', 'NN'), ('to', 'TO'), ('compute', 'VB'), ('d_k', 'NN'), ('from', 'IN'), ('the', 'DT'), ('pair', 'NN'), ('pq', 'NN'), (').', 'NNP'), ('so', 'RB'), ('whoever', 'RB'), ('generates', 'VBZ'), ('can', 'MD'), ('publish', 'VB'), ('pq', 'JJ'), (').', 'NNP'), ('anyone', 'NN'), ('can', 'MD'), ('send', 'VB'), ('secret', 'JJ'), ('message', 'NN'), ('to', 'TO'), ('him', 'PRP'), ('he', 'PRP'), ('is', 'VBZ'), ('the', 'DT'), ('only', 'JJ'), ('one', 'NN'), ('who', 'WP'), ('can', 'MD'), ('read', 'VB'), ('the', 'DT'), ('messages', 'NNS'), ('is', 'VBZ'), ('rsa', 'JJ'), ('secure', 'NN'), ('nobody', 'NN'), ('knows', 'VBZ'), ('an', 'DT'), ('obvious', 'JJ'), ('attack', 'NN'), ('on', 'IN'), ('rsa', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('factor', 'VB'), ('pq', 'NN'), ('into', 'IN'), ('and', 'CC'), ('see', 'VB'), ('below', 'IN'), ('for', 'IN'), ('comments', 'NNS'), ('on', 'IN'), ('how', 'WRB'), ('fast', 'JJ'), ('state', 'NN'), ('of', 'IN'), ('the', 'DT'), ('art', 'NN'), ('factorization', 'NN'), ('algorithms', 'NN'), ('run', 'VB'), ('unfortunately', 'RB'), ('nobody', 'NN'), ('has', 'VBZ'), ('the', 'DT'), ('slightest', 'JJS'), ('idea', 'NN'), ('how', 'WRB'), ('to', 'TO'), ('prove', 'VB'), ('that', 'DT'), ('factorization', 'NN'), ('---', 'VBD'), ('or', 'CC'), ('any', 'DT'), ('realistic', 'JJ'), ('problem', 'NN'), ('at', 'IN'), ('all', 'DT'), ('for', 'IN'), ('that', 'DT'), ('matter', 'NN'), ('---', 'NN'), ('is', 'VBZ'), ('inherently', 'RB'), ('slow', 'JJ'), ('it', 'PRP'), ('is', 'VBZ'), ('easy', 'JJ'), ('to', 'TO'), ('formalize', 'VB'), ('what', 'WP'), ('we', 'PRP'), ('mean', 'VBP'), ('by', 'IN'), ('``', '``'), ('rsa', 'NN'), ('is', 'VBZ'), ('isn', 'JJ'), ('strong', 'JJ'), ("'';", 'NNS'), ('but', 'CC'), ('as', 'IN'), ('hendrik', 'JJ'), ('lenstra', 'NN'), ('jr', 'NN'), ('.,', 'NNP'), ('says', 'VBZ'), ('``', '``'), ('exact', 'JJ'), ('definitions', 'NNS'), ('appear', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('necessary', 'JJ'), ('only', 'RB'), ('when', 'WRB'), ('one', 'CD'), ('wishes', 'VBZ'), ('to', 'TO'), ('prove', 'VB'), ('that', 'DT'), ('algorithms', 'NN'), ('with', 'IN'), ('certain', 'JJ'), ('properties', 'NNS'), ('do', 'VBP'), ('_not_', 'NNS'), ('exist', 'VB'), ('and', 'CC'), ('theoretical', 'JJ'), ('computer', 'NN'), ('science', 'NN'), ('is', 'VBZ'), ('notoriously', 'RB'), ('lacking', 'VBG'), ('in', 'IN'), ('such', 'JJ'), ('negative', 'JJ'), ('results', 'NNS'), (".''", 'VBD'), ('how', 'WRB'), ('fast', 'JJ'), ('can', 'MD'), ('people', 'NNS'), ('factor', 'VB'), ('numbers', 'NNS'), ('it', 'PRP'), ('depends', 'VBZ'), ('on', 'IN'), ('the', 'DT'), ('size', 'NN'), ('of', 'IN'), ('the', 'DT'), ('numbers', 'NNS'), ('in', 'IN'), ('october', 'JJ'), ('1992', 'CD'), ('arjen', 'NN'), ('lenstra', 'NN'), ('and', 'CC'), ('dan', 'NN'), ('bernstein', 'NN'), ('factored', 'VBD'), ('523', 'CD'), ('into', 'IN'), ('primes', 'NNS'), ('using', 'VBG'), ('about', 'IN'), ('three', 'CD'), ('weeks', 'NNS'), ('of', 'IN'), ('maspar', 'JJ'), ('time', 'NN'), ('the', 'DT'), ('maspar', 'NN'), ('is', 'VBZ'), ('16384', 'CD'), ('processor', 'NN'), ('simd', 'NN'), ('machine', 'NN'), ('each', 'DT'), ('processor', 'NN'), ('can', 'MD'), ('add', 'VB'), ('about', 'IN'), ('200000', 'CD'), ('integers', 'NNS'), ('per', 'IN'), ('second', 'JJ'), ('.)', 'VBP'), ('the', 'DT'), ('algorithm', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('called', 'VBN'), ('the', 'DT'), ('``', '``'), ('number', 'NN'), ('field', 'NN'), ('sieve', 'VBP'), ("'';", 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('quite', 'JJ'), ('bit', 'NN'), ('faster', 'RBR'), ('for', 'IN'), ('special', 'JJ'), ('numbers', 'NNS'), ('like', 'IN'), ('523', 'CD'), ('than', 'IN'), ('for', 'IN'), ('general', 'JJ'), ('numbers', 'NNS'), ('but', 'CC'), ('it', 'PRP'), ('takes', 'VBZ'), ('time', 'NN'), ('only', 'RB'), ('about', 'RB'), ('exp', 'JJ'), ('log', 'NN'), ('^{', 'NNP'), ('log', 'NN'), ('^{', 'NNP'), ('log', 'NN'), ('))', 'NN'), ('in', 'IN'), ('any', 'DT'), ('case', 'NN'), ('an', 'DT'), ('older', 'JJR'), ('and', 'CC'), ('more', 'JJR'), ('popular', 'JJ'), ('method', 'NN'), ('for', 'IN'), ('smaller', 'JJR'), ('numbers', 'NNS'), ('is', 'VBZ'), ('the', 'DT'), ('``', '``'), ('multiple', 'JJ'), ('polynomial', 'JJ'), ('quadratic', 'JJ'), ('sieve', 'NN'), ("'',", 'CD'), ('which', 'WDT'), ('takes', 'VBZ'), ('time', 'NN'), ('exp', 'JJ'), ('log', 'NN'), ('^{', 'NNP'), ('log', 'NN'), ('^{', 'NNP'), ('log', 'VBZ'), ('))---', 'JJ'), ('faster', 'RBR'), ('than', 'IN'), ('the', 'DT'), ('number', 'NN'), ('field', 'NN'), ('sieve', 'VBP'), ('for', 'IN'), ('small', 'JJ'), ('but', 'CC'), ('slower', 'JJR'), ('for', 'IN'), ('large', 'JJ'), ('the', 'DT'), ('breakeven', 'JJ'), ('point', 'NN'), ('is', 'VBZ'), ('somewhere', 'RB'), ('between', 'IN'), ('100', 'CD'), ('and', 'CC'), ('150', 'CD'), ('digits', 'NNS'), ('depending', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('implementations', 'NNS'), ('factorization', 'NN'), ('is', 'VBZ'), ('fast', 'JJ'), ('moving', 'VBG'), ('field', 'NN'), ('---', 'VBD'), ('the', 'DT'), ('state', 'NN'), ('of', 'IN'), ('the', 'DT'), ('art', 'NN'), ('just', 'RB'), ('few', 'JJ'), ('years', 'NNS'), ('ago', 'RB'), ('was', 'VBD'), ('nowhere', 'RB'), ('near', 'RB'), ('as', 'RB'), ('good', 'JJ'), ('as', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('now', 'RB'), ('if', 'IN'), ('no', 'DT'), ('new', 'JJ'), ('methods', 'NNS'), ('are', 'VBP'), ('developed', 'VBN'), ('then', 'RB'), ('2048', 'CD'), ('bit', 'NN'), ('rsa', 'JJ'), ('keys', 'NNS'), ('will', 'MD'), ('always', 'RB'), ('be', 'VB'), ('safe', 'JJ'), ('from', 'IN'), ('factorization', 'NN'), ('but', 'CC'), ('one', 'CD'), ('can', 'MD'), ('predict', 'VB'), ('the', 'DT'), ('future', 'NN'), ('before', 'IN'), ('the', 'DT'), ('number', 'NN'), ('field', 'NN'), ('sieve', 'NN'), ('was', 'VBD'), ('found', 'VBN'), ('many', 'JJ'), ('people', 'NNS'), ('conjectured', 'VBD'), ('that', 'IN'), ('the', 'DT'), ('quadratic', 'JJ'), ('sieve', 'NN'), ('was', 'VBD'), ('asymptotically', 'RB'), ('as', 'RB'), ('fast', 'RB'), ('as', 'IN'), ('any', 'DT'), ('factoring', 'NN'), ('method', 'NN'), ('could', 'MD'), ('be', 'VB'), ('.)', 'VBN'), ('what', 'WP'), ('about', 'IN'), ('other', 'JJ'), ('public', 'JJ'), ('key', 'NN'), ('cryptosystems', 'NNS')] | ['archive', 'name', 'cryptography', 'faq', 'last', 'modified', 'faq', 'sci', 'crypt', 'part', 'public', 'key', 'cryptography', 'sixth', 'ten', 'part', 'sci', 'crypt', 'faq', 'part', 'mostly', 'independent', 'read', 'first', 'part', 'rest', 'time', 'send', 'miss', 'part', 'mail', 'ask', 'note', 'refer', 'reference', 'list', 'last', 'part', 'section', 'faq', 'available', 'via', 'anonymous', 'ftp', 'rtfm', 'mit', 'edu', 'pub', 'usenet', 'news', 'answer', 'cryptography', 'faq', 'part', 'xx', 'cryptography', 'faq', 'post', 'newsgroups', 'sci', 'crypt', 'sci', 'answer', 'news', 'answer', 'every', 'day', 'content', 'public', 'key', 'cryptography', 'rsa', 'rsa', 'secure', 'fast', 'people', 'factor', 'number', 'public', 'key', 'cryptosystems', 'public', 'key', 'cryptography', 'classic', 'cryptosystem', 'encryption', 'function', 'decryption', 'function', 'plaintext', 'public', 'key', 'cryptosystem', 'easily', 'compute', 'public', 'key', 'turn', 'compute', 'publish', 'anyone', 'encrypt', 'message', 'cannot', 'easily', 'compute', 'person', 'generate', 'decrypt', 'message', 'essence', 'public', 'key', 'cryptography', 'publish', 'diffie', 'hellman', 'classic', 'cryptosystem', 'want', 'friend', 'able', 'send', 'secret', 'message', 'make', 'sure', 'nobody', 'see', 'key', 'public', 'key', 'cryptosystem', 'publish', 'worry', 'spy', 'beginning', 'public', 'key', 'cryptography', 'extensive', 'literature', 'security', 'model', 'public', 'key', 'cryptography', 'application', 'public', 'key', 'cryptography', 'application', 'mathematical', 'technology', 'behind', 'public', 'key', 'cryptography', 'rsa', 'rsa', 'public', 'key', 'cryptosystem', 'define', 'rivest', 'shamir', 'adleman', 'full', 'detail', 'faq', 'available', 'ftp', 'rsa', 'com', 'small', 'example', 'plaintexts', 'positive', 'integer', 'key', 'quadruple', 'bit', 'prime', 'number', 'bit', 'prime', 'number', 'large', 'number', 'de', 'divisible', 'define', 'mod', 'pq', 'mod', 'pq', 'easily', 'compute', 'pair', 'pq', 'far', 'anyone', 'know', 'easy', 'way', 'compute', 'pair', 'pq', 'whoever', 'generate', 'publish', 'pq', 'anyone', 'send', 'secret', 'message', 'one', 'read', 'message', 'rsa', 'secure', 'nobody', 'know', 'obvious', 'attack', 'rsa', 'factor', 'pq', 'see', 'comment', 'fast', 'state', 'art', 'factorization', 'algorithm', 'run', 'unfortunately', 'nobody', 'slight', 'idea', 'prove', 'factorization', 'realistic', 'problem', 'matter', 'inherently', 'slow', 'easy', 'formalize', 'mean', 'rsa', 'strong', 'hendrik', 'lenstra', 'jr', 'say', 'exact', 'definition', 'appear', 'necessary', 'one', 'wish', 'prove', 'algorithm', 'certain', 'property', 'exist', 'theoretical', 'computer', 'science', 'notoriously', 'lack', 'negative', 'result', 'fast', 'people', 'factor', 'number', 'depend', 'size', 'number', 'october', 'arjen', 'lenstra', 'dan', 'bernstein', 'factor', 'prime', 'use', 'three', 'week', 'maspar', 'time', 'maspar', 'processor', 'simd', 'machine', 'processor', 'add', 'integer', 'per', 'second', 'algorithm', 'call', 'number', 'field', 'sieve', 'quite', 'bit', 'faster', 'special', 'number', 'like', 'general', 'number', 'take', 'time', 'exp', 'log', 'log', 'log', 'case', 'old', 'popular', 'method', 'small', 'number', 'multiple', 'polynomial', 'quadratic', 'sieve', 'take', 'time', 'exp', 'log', 'log', 'log', 'faster', 'number', 'field', 'sieve', 'small', 'slow', 'large', 'breakeven', 'point', 'somewhere', 'digit', 'depend', 'implementation', 'factorization', 'fast', 'move', 'field', 'state', 'art', 'year', 'ago', 'nowhere', 'near', 'good', 'new', 'method', 'develop', 'bit', 'rsa', 'key', 'always', 'safe', 'factorization', 'one', 'predict', 'future', 'number', 'field', 'sieve', 'find', 'many', 'people', 'conjecture', 'quadratic', 'sieve', 'asymptotically', 'fast', 'factoring', 'method', 'could', 'public', 'key', 'cryptosystems'] | ['archive_name', 'name_cryptography', 'cryptography_faq', 'faq_last', 'last_modified', 'modified_faq', 'faq_sci', 'sci_crypt', 'crypt_part', 'public_key', 'key_cryptography', 'ten_part', 'part_sci', 'sci_crypt', 'crypt_faq', 'faq_part', 'part_mostly', 'mostly_independent', 'independent_read', 'read_first', 'first_part', 'part_rest', 'rest_time', 'time_send', 'send_miss', 'miss_part', 'part_mail', 'mail_ask', 'ask_note', 'note_refer', 'refer_reference', 'reference_list', 'list_last', 'last_part', 'part_section', 'section_faq', 'faq_available', 'available_via', 'via_anonymous', 'anonymous_ftp', 'ftp_rtfm', 'rtfm_mit', 'mit_edu', 'edu_pub', 'pub_usenet', 'usenet_news', 'news_answer', 'answer_cryptography', 'cryptography_faq', 'faq_part', 'part_xx', 'xx_cryptography', 'cryptography_faq', 'faq_post', 'post_newsgroups', 'newsgroups_sci', 'sci_crypt', 'crypt_sci', 'sci_answer', 'answer_news', 'news_answer', 'answer_every', 'every_day', 'day_content', 'public_key', 'key_cryptography', 'cryptography_rsa', 'rsa_rsa', 'public_key', 'public_key', 'key_cryptography', 'encryption_function', 'public_key', 'key_cryptosystem', 'public_key', 'encrypt_message', 'public_key', 'key_cryptography', 'diffie_hellman', 'able_send', 'make_sure', 'public_key', 'key_cryptosystem', 'public_key', 'key_cryptography', 'public_key', 'key_cryptography', 'public_key', 'key_cryptography', 'public_key', 'key_cryptography', 'cryptography_rsa', 'rsa_rsa', 'public_key', 'key_cryptosystem', 'full_detail', 'faq_available', 'available_ftp', 'rsa_com', 'prime_number', 'number_bit', 'prime_number', 'large_number', 'anyone_know', 'know_easy', 'easy_way', 'one_read', 'nobody_know', 'see_comment', 'state_art', 'necessary_one', 'one_wish', 'computer_science', 'use_three', 'three_week', 'per_second', 'algorithm_call', 'call_number', 'quite_bit', 'number_like', 'number_take', 'take_time', 'log_log', 'log_log', 'small_number', 'take_time', 'log_log', 'log_log', 'state_art', 'year_ago', 'nowhere_near', 'rsa_key', 'find_many', 'many_people', 'public_key'] | sci_crypt_15253 |@lemmatized archive:1 name:1 cryptography:11 faq:7 last:2 modified:1 sci:4 crypt:3 part:7 public:14 key:17 sixth:1 ten:1 mostly:1 independent:1 read:2 first:1 rest:1 time:4 send:3 miss:1 mail:1 ask:1 note:1 refer:1 reference:1 list:1 section:1 available:2 via:1 anonymous:1 ftp:2 rtfm:1 mit:1 edu:1 pub:1 usenet:1 news:2 answer:3 xx:1 post:1 newsgroups:1 every:1 day:1 content:1 rsa:9 secure:2 fast:5 people:3 factor:4 number:12 cryptosystems:2 classic:2 cryptosystem:5 encryption:1 function:2 decryption:1 plaintext:1 easily:3 compute:5 turn:1 publish:4 anyone:3 encrypt:1 message:5 cannot:1 person:1 generate:2 decrypt:1 essence:1 diffie:1 hellman:1 want:1 friend:1 able:1 secret:2 make:1 sure:1 nobody:3 see:2 worry:1 spy:1 beginning:1 extensive:1 literature:1 security:1 model:1 application:2 mathematical:1 technology:1 behind:1 define:2 rivest:1 shamir:1 adleman:1 full:1 detail:1 com:1 small:3 example:1 plaintexts:1 positive:1 integer:2 quadruple:1 bit:4 prime:3 large:2 de:1 divisible:1 mod:2 pq:6 pair:2 far:1 know:2 easy:2 way:1 whoever:1 one:3 obvious:1 attack:1 comment:1 state:2 art:2 factorization:4 algorithm:3 run:1 unfortunately:1 slight:1 idea:1 prove:2 realistic:1 problem:1 matter:1 inherently:1 slow:2 formalize:1 mean:1 strong:1 hendrik:1 lenstra:2 jr:1 say:1 exact:1 definition:1 appear:1 necessary:1 wish:1 certain:1 property:1 exist:1 theoretical:1 computer:1 science:1 notoriously:1 lack:1 negative:1 result:1 depend:2 size:1 october:1 arjen:1 dan:1 bernstein:1 use:1 three:1 week:1 maspar:2 processor:2 simd:1 machine:1 add:1 per:1 second:1 call:1 field:4 sieve:5 quite:1 faster:2 special:1 like:1 general:1 take:2 exp:2 log:6 case:1 old:1 popular:1 method:3 multiple:1 polynomial:1 quadratic:2 breakeven:1 point:1 somewhere:1 digit:1 implementation:1 move:1 year:1 ago:1 nowhere:1 near:1 good:1 new:1 develop:1 always:1 safe:1 predict:1 future:1 find:1 many:1 conjecture:1 asymptotically:1 factoring:1 could:1 |@bigram archive_name:1 name_cryptography:1 cryptography_faq:3 faq_last:1 last_modified:1 modified_faq:1 faq_sci:1 sci_crypt:3 crypt_part:1 public_key:14 key_cryptography:8 ten_part:1 part_sci:1 crypt_faq:1 faq_part:2 part_mostly:1 mostly_independent:1 independent_read:1 read_first:1 first_part:1 part_rest:1 rest_time:1 time_send:1 send_miss:1 miss_part:1 part_mail:1 mail_ask:1 ask_note:1 note_refer:1 refer_reference:1 reference_list:1 list_last:1 last_part:1 part_section:1 section_faq:1 faq_available:2 available_via:1 via_anonymous:1 anonymous_ftp:1 ftp_rtfm:1 rtfm_mit:1 mit_edu:1 edu_pub:1 pub_usenet:1 usenet_news:1 news_answer:2 answer_cryptography:1 part_xx:1 xx_cryptography:1 faq_post:1 post_newsgroups:1 newsgroups_sci:1 crypt_sci:1 sci_answer:1 answer_news:1 answer_every:1 every_day:1 day_content:1 cryptography_rsa:2 rsa_rsa:2 encryption_function:1 key_cryptosystem:3 encrypt_message:1 diffie_hellman:1 able_send:1 make_sure:1 full_detail:1 available_ftp:1 rsa_com:1 prime_number:2 number_bit:1 large_number:1 anyone_know:1 know_easy:1 easy_way:1 one_read:1 nobody_know:1 see_comment:1 state_art:2 necessary_one:1 one_wish:1 computer_science:1 use_three:1 three_week:1 per_second:1 algorithm_call:1 call_number:1 quite_bit:1 number_like:1 number_take:1 take_time:2 log_log:4 small_number:1 year_ago:1 nowhere_near:1 rsa_key:1 find_many:1 many_people:1 |
2,105 | I am in the market for a couple of Intel 486 chips.
Please let me know if you have one (or more) for sale.
I am interested in both SX and DX models, but they
must be Intel.
email me at: [email protected]
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/75928 | 6 | misc_forsale_75928 | [('am', 'VBP'), ('in', 'IN'), ('the', 'DT'), ('market', 'NN'), ('for', 'IN'), ('couple', 'NN'), ('of', 'IN'), ('intel', 'NN'), ('486', 'CD'), ('chips', 'NNS'), ('please', 'VB'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('one', 'CD'), ('or', 'CC'), ('more', 'JJR'), ('for', 'IN'), ('sale', 'NN'), ('am', 'VBP'), ('interested', 'JJ'), ('in', 'IN'), ('both', 'DT'), ('sx', 'NN'), ('and', 'CC'), ('dx', 'NN'), ('models', 'NNS'), ('but', 'CC'), ('they', 'PRP'), ('must', 'MD'), ('be', 'VB'), ('intel', 'JJ'), ('email', 'VB'), ('me', 'PRP'), ('at', 'IN')] | ['market', 'couple', 'intel', 'chip', 'please', 'let', 'know', 'one', 'sale', 'interested', 'sx', 'dx', 'model', 'must', 'intel', 'email'] | ['intel_chip', 'please_let', 'let_know', 'know_one', 'one_sale', 'sale_interested'] | misc_forsale_75928 |@lemmatized market:1 couple:1 intel:2 chip:1 please:1 let:1 know:1 one:1 sale:1 interested:1 sx:1 dx:1 model:1 must:1 email:1 |@bigram intel_chip:1 please_let:1 let_know:1 know_one:1 one_sale:1 sale_interested:1 |
2,106 |
I don't know how many hours you've spent on this, but the Sun User
Group makes X11R5 available on CD-ROM to its members. The 1992.1 disk
has both sources and binaries and it sells for $50. I've tagged a
table of contents and an orderform on below if anyone's interested.
Alex Newman
----------------------------------------------------------------------------
Alex Newman (617) 232-0514 voice My life may be stressful,
[email protected] (617) 232-1347 fax but at least it's not boring
Sun User Group * 1330 Beacon St., #315 * Brookline, MA 02146
----------------------------------------------------------------------------
SUG CD 1992.1 is X11R5 and GNU on a CDROM, priced at $50 to SUG
members, including a caddy!
SUG's emphasis has always been on supplying the greatest possible
service and value-added to our members. Last year, the SUG 1991 disk
contained plug-and-play X11R4, 20MB of additional essential binaries,
almost 200MB of Sun patches, fully-indexed archives of Sun-related net
postings, priced at only $250.
Our aim this year has been to reduce the price for disks which can be
produced inexpensively, but to continue to supply as much value-added
as possible. To accomplish this, we will be putting out a two disk
set, the first containing what's ready and needed now, the second
available later in '92, containing more SPARC binaries and other
useful material not found on previous disks.
The SUG 1992.1 disk, which was assembled by Robert A. Bruce, contains
a lot of essential source code, and we decided it would be a great
service to make it available right away to our members (and this
pricing makes this a good opportunity to become a member!) for $50 per
disk (including one of those hard-to-find caddies!). If you are not a
SUG member, you can become one for an additional $40 if you live
within the US or $55 outside.
The SUG 1992.1 CDROM is an ISO 9660 disk (which means it can be used
by PC, Macintosh, and other workstations as well), and contains a
total of 543MB of material, including:
X11R5 SOURCES AND CORE BINARIES (for SPARC) as of several weeks after
the initial distribution, thus, four fixes and the the MIT contrib-0
distribution are included (109MB of material). Binaries for: X Xsun
XsunMono appres atobm auto_box bdftopcf beach_ball bitmap bmtoa
constype editres fs fsinfo fslsfonts fstobdf ico imake kbd_mode
listres lndir makedepend maze mkdirhier mkfontdir oclock plbpex puzzle
resize showfont showrgb startx twm viewres x11perf x11perfcomp xauth
xbiff xcalc xclipboard xclock xcmsdb xcmstest xconsole xcutsel
xditview xdm xdpr xdpyinfo xedit xev xeyes xfd xfontsel xgas xgc xhost
xinit xkill xload xlogo xlsatoms xlsclients xlsfonts xmag xman xmh
xmkmf xmodmap xon xpr xprop xrdb xrefresh xset xsetroot xstdcmap xterm
xwd xwininfo xwud
COPIES OF CONTRIBUTED X SOURCES (from export.lcs.mit.edu/contrib),
which were then uncompressed/untarred into source directories (212MB).
These are sources only, and some of them were (after the date of
production of this disk) included in the MIT contrib-2 and contrib-3
distributions.
GNU SOURCES WHICH WERE uncompressed/untarred into source directories
(88MB).
SPARC BINARIES (and needed libraries) for these GNU programs: a2p ar
as basename bash bison cat cc1 cc1plus chgrp chmod chown ci cmp co
comm compress cp cpio cpp ctags cut cvs date dd df diff diff3 dir
dirname du egrep elvis emacs env etags expand expr fgrep find
find2perl flex fold g++ g++dep g++filt gawk gcc gdb ginstall gnuchess
gnuchessn gnuchessr gnugo gnuplot gnuplot_x11 gprof grep h2ph head id
ident indent ispell ld ld++ less ln locate logname ls m4 make merge
mkdir mkfifo mkmodules mknod mt mv nice nm oleo paste pathchk perl pr
printenv printf ranlib rcs rcsdiff rcsinfo rcsmerge rcstest ref refont
rlog rm rmdir rmt s2p screen sed size sleep split strip stty sum tac
tail taintperl tar tee test time touch tput tty uname unexpand uniq
vdir virec whoami xargs xchess yes zmore
AN ARCHIVE OF COMP.SOURCE.X postings, volume 0 through volume14
(58MB). Parts are supplied just as posted. You get to put together
the pieces, compile, install, etc.
Cost: SUG members: $50; Non-members: additional $40 within the US, $55
elsewhere
Shipping & Handling: $10 inside the USA; $25 elsewhere
Mail to: Sun User Group, Inc.
Suite 315
1330 Beacon Street
Brookline, MA 02146
USA
(617) 232-0514 voice
(617) 232-1347 fax
The Sun User Group also accepts Visa and MasterCard via telephone or
electronically.
--------------------- cut here and return completed form ---------------------
The SUGCD 1992.1
ORDER FORM
The price of the CD is $50.
Shipping and handling: Add $10 (USA) or $25 (Intl.)
If you are not a member of the Sun User Group, add $40 (USA) or $55
(International) to the above sums for membership. You must be a SUG
member to purchase the CD-ROM. I enclose a US $ check for:
__$ 60 (SUG member in the USA)
__$ 75 (SUG member outside the USA)
__$100 (Includes membership inside the USA)
__$130 (Includes international membership)
Name__________________________________ Signature___________________________
Company Name_______________________________________________________________
SUG Membership #(if known)_________________________________________________
Electronic Mail Address____________________________________________________
Telephone Number___________________________________________________________
Check Enclosed_____ Mastercard_____ Visa_____
Credit Card #__________________________________ Exp. date.________________
Card Holder:__________________________ Signature:__________________________
Ship to: Bill to:
______________________________________ ___________________________________
______________________________________ ___________________________________
______________________________________ ___________________________________
______________________________________ ___________________________________
-------------------------------------------------------------------------
[ ] I hereby authorize the Sun User Group to renew my membership
and charge my credit card automatically on an annual basis.
[ ] I do not wish my name to be included in non-Sun User
Group mailings.
[ ] I do not wish my name to be published in the Sun User
Group member directory.
[ ] I wish to be added to the Sun User Group electronic
mailing-list (members only)
OUTSIDE THE U.S. ONLY:
Individuals outside of the USA may find using their credit cards easier
than purchasing US$ checks as this eliminates bank charges.
-------------------------------------------------------------------------
Sun User Group
1330 Beacon Street, Suite 315
Brookline, MA 02146 | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/66442 | 5 | comp_windows_x_66442 | [('don', 'NNS'), ('know', 'VBP'), ('how', 'WRB'), ('many', 'JJ'), ('hours', 'NNS'), ('you', 'PRP'), ('ve', 'VBP'), ('spent', 'VBN'), ('on', 'IN'), ('this', 'DT'), ('but', 'CC'), ('the', 'DT'), ('sun', 'JJ'), ('user', 'NN'), ('group', 'NN'), ('makes', 'VBZ'), ('x11r5', 'RB'), ('available', 'JJ'), ('on', 'IN'), ('cd', 'NN'), ('rom', 'NN'), ('to', 'TO'), ('its', 'PRP$'), ('members', 'NNS'), ('the', 'DT'), ('1992', 'CD'), ('disk', 'NN'), ('has', 'VBZ'), ('both', 'DT'), ('sources', 'NNS'), ('and', 'CC'), ('binaries', 'NNS'), ('and', 'CC'), ('it', 'PRP'), ('sells', 'VBZ'), ('for', 'IN'), ('50', 'CD'), ('ve', 'NNS'), ('tagged', 'VBD'), ('table', 'NN'), ('of', 'IN'), ('contents', 'NNS'), ('and', 'CC'), ('an', 'DT'), ('orderform', 'NN'), ('on', 'IN'), ('below', 'IN'), ('if', 'IN'), ('anyone', 'NN'), ('interested', 'JJ'), ('alex', 'JJ'), ('newman', 'JJ'), ('----------------------------------------------------------------------------', 'NN'), ('alex', 'JJ'), ('newman', 'RB'), ('617', 'CD'), ('232', 'CD'), ('0514', 'CD'), ('voice', 'NN'), ('my', 'PRP$'), ('life', 'NN'), ('may', 'MD'), ('be', 'VB'), ('stressful', 'JJ'), ('617', 'CD'), ('232', 'CD'), ('1347', 'CD'), ('fax', 'NN'), ('but', 'CC'), ('at', 'IN'), ('least', 'JJS'), ('it', 'PRP'), ('not', 'RB'), ('boring', 'VBG'), ('sun', 'NNS'), ('user', 'RB'), ('group', 'NN'), ('1330', 'CD'), ('beacon', 'NN'), ('st', 'VBD'), ('.,', '$'), ('315', 'CD'), ('brookline', 'NN'), ('ma', 'NN'), ('02146', 'CD'), ('----------------------------------------------------------------------------', 'JJ'), ('sug', 'NN'), ('cd', 'NN'), ('1992', 'CD'), ('is', 'VBZ'), ('x11r5', 'VBN'), ('and', 'CC'), ('gnu', 'VBN'), ('on', 'IN'), ('cdrom', 'NN'), ('priced', 'VBN'), ('at', 'IN'), ('50', 'CD'), ('to', 'TO'), ('sug', 'VB'), ('members', 'NNS'), ('including', 'VBG'), ('caddy', 'JJ'), ('sug', 'NN'), ('emphasis', 'NN'), ('has', 'VBZ'), ('always', 'RB'), ('been', 'VBN'), ('on', 'IN'), ('supplying', 'VBG'), ('the', 'DT'), ('greatest', 'JJS'), ('possible', 'JJ'), ('service', 'NN'), ('and', 'CC'), ('value', 'NN'), ('added', 'VBD'), ('to', 'TO'), ('our', 'PRP$'), ('members', 'NNS'), ('last', 'JJ'), ('year', 'NN'), ('the', 'DT'), ('sug', 'NN'), ('1991', 'CD'), ('disk', 'NN'), ('contained', 'VBD'), ('plug', 'NN'), ('and', 'CC'), ('play', 'VB'), ('x11r4', 'JJ'), ('20mb', 'CD'), ('of', 'IN'), ('additional', 'JJ'), ('essential', 'JJ'), ('binaries', 'NNS'), ('almost', 'RB'), ('200mb', 'CD'), ('of', 'IN'), ('sun', 'NN'), ('patches', 'NNS'), ('fully', 'RB'), ('indexed', 'JJ'), ('archives', 'NNS'), ('of', 'IN'), ('sun', 'NN'), ('related', 'JJ'), ('net', 'JJ'), ('postings', 'NNS'), ('priced', 'VBN'), ('at', 'IN'), ('only', 'RB'), ('250', 'CD'), ('our', 'PRP$'), ('aim', 'NN'), ('this', 'DT'), ('year', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('to', 'TO'), ('reduce', 'VB'), ('the', 'DT'), ('price', 'NN'), ('for', 'IN'), ('disks', 'NNS'), ('which', 'WDT'), ('can', 'MD'), ('be', 'VB'), ('produced', 'VBN'), ('inexpensively', 'RB'), ('but', 'CC'), ('to', 'TO'), ('continue', 'VB'), ('to', 'TO'), ('supply', 'VB'), ('as', 'RB'), ('much', 'JJ'), ('value', 'NN'), ('added', 'VBD'), ('as', 'IN'), ('possible', 'JJ'), ('to', 'TO'), ('accomplish', 'VB'), ('this', 'DT'), ('we', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('putting', 'VBG'), ('out', 'RP'), ('two', 'CD'), ('disk', 'NN'), ('set', 'VBD'), ('the', 'DT'), ('first', 'JJ'), ('containing', 'VBG'), ('what', 'WP'), ('ready', 'JJ'), ('and', 'CC'), ('needed', 'VBN'), ('now', 'RB'), ('the', 'DT'), ('second', 'JJ'), ('available', 'JJ'), ('later', 'RB'), ('in', 'IN'), ('92', 'CD'), ('containing', 'VBG'), ('more', 'JJR'), ('sparc', 'JJ'), ('binaries', 'NNS'), ('and', 'CC'), ('other', 'JJ'), ('useful', 'JJ'), ('material', 'NN'), ('not', 'RB'), ('found', 'VBN'), ('on', 'IN'), ('previous', 'JJ'), ('disks', 'NNS'), ('the', 'DT'), ('sug', 'NN'), ('1992', 'CD'), ('disk', 'NN'), ('which', 'WDT'), ('was', 'VBD'), ('assembled', 'VBN'), ('by', 'IN'), ('robert', 'NN'), ('bruce', 'NN'), ('contains', 'VBZ'), ('lot', 'NN'), ('of', 'IN'), ('essential', 'JJ'), ('source', 'NN'), ('code', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('decided', 'VBD'), ('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('great', 'JJ'), ('service', 'NN'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('available', 'JJ'), ('right', 'RB'), ('away', 'RB'), ('to', 'TO'), ('our', 'PRP$'), ('members', 'NNS'), ('and', 'CC'), ('this', 'DT'), ('pricing', 'NN'), ('makes', 'VBZ'), ('this', 'DT'), ('good', 'JJ'), ('opportunity', 'NN'), ('to', 'TO'), ('become', 'VB'), ('member', 'NN'), ('!)', 'NNP'), ('for', 'IN'), ('50', 'CD'), ('per', 'IN'), ('disk', 'NN'), ('including', 'VBG'), ('one', 'CD'), ('of', 'IN'), ('those', 'DT'), ('hard', 'JJ'), ('to', 'TO'), ('find', 'VB'), ('caddies', 'NNS'), ('!).', 'VBP'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('sug', 'JJ'), ('member', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('become', 'VB'), ('one', 'CD'), ('for', 'IN'), ('an', 'DT'), ('additional', 'JJ'), ('40', 'CD'), ('if', 'IN'), ('you', 'PRP'), ('live', 'VBP'), ('within', 'IN'), ('the', 'DT'), ('us', 'PRP'), ('or', 'CC'), ('55', 'CD'), ('outside', 'IN'), ('the', 'DT'), ('sug', 'NN'), ('1992', 'CD'), ('cdrom', 'NN'), ('is', 'VBZ'), ('an', 'DT'), ('iso', 'JJ'), ('9660', 'CD'), ('disk', 'NN'), ('which', 'WDT'), ('means', 'VBZ'), ('it', 'PRP'), ('can', 'MD'), ('be', 'VB'), ('used', 'VBN'), ('by', 'IN'), ('pc', 'NN'), ('macintosh', 'NN'), ('and', 'CC'), ('other', 'JJ'), ('workstations', 'NNS'), ('as', 'IN'), ('well', 'RB'), ('),', 'NNP'), ('and', 'CC'), ('contains', 'VBZ'), ('total', 'JJ'), ('of', 'IN'), ('543mb', 'CD'), ('of', 'IN'), ('material', 'NN'), ('including', 'VBG'), ('x11r5', 'JJ'), ('sources', 'NNS'), ('and', 'CC'), ('core', 'NN'), ('binaries', 'NNS'), ('for', 'IN'), ('sparc', 'NN'), ('as', 'IN'), ('of', 'IN'), ('several', 'JJ'), ('weeks', 'NNS'), ('after', 'IN'), ('the', 'DT'), ('initial', 'JJ'), ('distribution', 'NN'), ('thus', 'RB'), ('four', 'CD'), ('fixes', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('the', 'DT'), ('mit', 'NN'), ('contrib', 'NN'), ('distribution', 'NN'), ('are', 'VBP'), ('included', 'VBN'), ('109mb', 'CD'), ('of', 'IN'), ('material', 'NN'), (').', 'NN'), ('binaries', 'NNS'), ('for', 'IN'), ('xsun', 'NNP'), ('xsunmono', 'NNP'), ('appres', 'VBZ'), ('atobm', 'JJ'), ('auto_box', 'NN'), ('bdftopcf', 'NN'), ('beach_ball', 'NN'), ('bitmap', 'NN'), ('bmtoa', 'NN'), ('constype', 'NN'), ('editres', 'VBZ'), ('fs', 'JJ'), ('fsinfo', 'JJ'), ('fslsfonts', 'NNS'), ('fstobdf', 'VBP'), ('ico', 'JJ'), ('imake', 'NN'), ('kbd_mode', 'NN'), ('listres', 'VBZ'), ('lndir', 'JJ'), ('makedepend', 'NN'), ('maze', 'NN'), ('mkdirhier', 'NN'), ('mkfontdir', 'NN'), ('oclock', 'NN'), ('plbpex', 'NN'), ('puzzle', 'NN'), ('resize', 'VB'), ('showfont', 'JJ'), ('showrgb', 'NN'), ('startx', 'NN'), ('twm', 'NN'), ('viewres', 'NNS'), ('x11perf', 'VBP'), ('x11perfcomp', 'NNP'), ('xauth', 'NNP'), ('xbiff', 'NNP'), ('xcalc', 'NNP'), ('xclipboard', 'NNP'), ('xclock', 'NNP'), ('xcmsdb', 'NNP'), ('xcmstest', 'NNP'), ('xconsole', 'NNP'), ('xcutsel', 'NNP'), ('xditview', 'NNP'), ('xdm', 'NNP'), ('xdpr', 'NNP'), ('xdpyinfo', 'NNP'), ('xedit', 'NNP'), ('xev', 'NNP'), ('xeyes', 'NNP'), ('xfd', 'NNP'), ('xfontsel', 'NNP'), ('xgas', 'NNP'), ('xgc', 'NNP'), ('xhost', 'NNP'), ('xinit', 'NNP'), ('xkill', 'NNP'), ('xload', 'NNP'), ('xlogo', 'NNP'), ('xlsatoms', 'NNP'), ('xlsclients', 'VBZ'), ('xlsfonts', 'NNS'), ('xmag', 'JJ'), ('xman', 'NNP'), ('xmh', 'NNP'), ('xmkmf', 'NNP'), ('xmodmap', 'NNP'), ('xon', 'NNP'), ('xpr', 'NNP'), ('xprop', 'NNP'), ('xrdb', 'NNP'), ('xrefresh', 'NNP'), ('xset', 'NNP'), ('xsetroot', 'NNP'), ('xstdcmap', 'NNP'), ('xterm', 'NNP'), ('xwd', 'NNP'), ('xwininfo', 'NNP'), ('xwud', 'NNP'), ('copies', 'NNS'), ('of', 'IN'), ('contributed', 'JJ'), ('sources', 'NNS'), ('from', 'IN'), ('export', 'NN'), ('lcs', 'NN'), ('mit', 'NN'), ('edu', 'NN'), ('contrib', 'NN'), ('),', 'NN'), ('which', 'WDT'), ('were', 'VBD'), ('then', 'RB'), ('uncompressed', 'JJ'), ('untarred', 'VBD'), ('into', 'IN'), ('source', 'NN'), ('directories', 'NNS'), ('212mb', 'CD'), (').', 'IN'), ('these', 'DT'), ('are', 'VBP'), ('sources', 'NNS'), ('only', 'RB'), ('and', 'CC'), ('some', 'DT'), ('of', 'IN'), ('them', 'PRP'), ('were', 'VBD'), ('after', 'IN'), ('the', 'DT'), ('date', 'NN'), ('of', 'IN'), ('production', 'NN'), ('of', 'IN'), ('this', 'DT'), ('disk', 'NN'), ('included', 'VBD'), ('in', 'IN'), ('the', 'DT'), ('mit', 'NN'), ('contrib', 'NN'), ('and', 'CC'), ('contrib', 'NN'), ('distributions', 'NNS'), ('gnu', 'VBP'), ('sources', 'NNS'), ('which', 'WDT'), ('were', 'VBD'), ('uncompressed', 'JJ'), ('untarred', 'JJ'), ('into', 'IN'), ('source', 'NN'), ('directories', 'NNS'), ('88mb', 'CD'), (').', 'NNP'), ('sparc', 'NN'), ('binaries', 'NNS'), ('and', 'CC'), ('needed', 'VBN'), ('libraries', 'NNS'), ('for', 'IN'), ('these', 'DT'), ('gnu', 'JJ'), ('programs', 'NNS'), ('a2p', 'VBP'), ('ar', 'RB'), ('as', 'IN'), ('basename', 'NN'), ('bash', 'NN'), ('bison', 'NN'), ('cat', 'NN'), ('cc1', 'NN'), ('cc1plus', 'NN'), ('chgrp', 'NN'), ('chmod', 'NN'), ('chown', 'JJ'), ('ci', 'NN'), ('cmp', 'NN'), ('co', 'NN'), ('comm', 'NN'), ('compress', 'NN'), ('cp', 'NN'), ('cpio', 'NN'), ('cpp', 'NN'), ('ctags', 'NNS'), ('cut', 'VBD'), ('cvs', 'JJ'), ('date', 'NN'), ('dd', 'NN'), ('df', 'NN'), ('diff', 'NN'), ('diff3', 'NN'), ('dir', 'NN'), ('dirname', 'NN'), ('du', 'JJ'), ('egrep', 'NN'), ('elvis', 'NN'), ('emacs', 'NN'), ('env', 'NN'), ('etags', 'NNS'), ('expand', 'VBP'), ('expr', 'JJ'), ('fgrep', 'NN'), ('find', 'VBP'), ('find2perl', 'JJ'), ('flex', 'JJ'), ('fold', 'NN'), ('++', 'NNP'), ('++', 'NNP'), ('dep', 'NN'), ('++', 'NNP'), ('filt', 'NN'), ('gawk', 'NN'), ('gcc', 'NN'), ('gdb', 'NN'), ('ginstall', 'NN'), ('gnuchess', 'NN'), ('gnuchessn', 'NN'), ('gnuchessr', 'NN'), ('gnugo', 'NN'), ('gnuplot', 'NN'), ('gnuplot_x11', 'NN'), ('gprof', 'NN'), ('grep', 'NN'), ('h2ph', 'NN'), ('head', 'NN'), ('id', 'JJ'), ('ident', 'JJ'), ('indent', 'NN'), ('ispell', 'NN'), ('ld', 'VBZ'), ('ld', 'JJ'), ('++', 'NNP'), ('less', 'CC'), ('ln', 'JJ'), ('locate', 'NN'), ('logname', 'NN'), ('ls', 'JJ'), ('m4', 'NNS'), ('make', 'VBP'), ('merge', 'NN'), ('mkdir', 'NN'), ('mkfifo', 'NN'), ('mkmodules', 'NNS'), ('mknod', 'VBP'), ('mt', 'JJ'), ('mv', 'NN'), ('nice', 'JJ'), ('nm', 'RB'), ('oleo', 'JJ'), ('paste', 'NN'), ('pathchk', 'NN'), ('perl', 'NN'), ('pr', 'NN'), ('printenv', 'NN'), ('printf', 'NN'), ('ranlib', 'NN'), ('rcs', 'NN'), ('rcsdiff', 'NN'), ('rcsinfo', 'NN'), ('rcsmerge', 'NN'), ('rcstest', 'VBP'), ('ref', 'NN'), ('refont', 'NN'), ('rlog', 'NN'), ('rm', 'NN'), ('rmdir', 'NN'), ('rmt', 'NN'), ('s2p', 'NN'), ('screen', 'NN'), ('sed', 'VBD'), ('size', 'NN'), ('sleep', 'NN'), ('split', 'NN'), ('strip', 'NN'), ('stty', 'JJ'), ('sum', 'NN'), ('tac', 'NN'), ('tail', 'NN'), ('taintperl', 'NN'), ('tar', 'NN'), ('tee', 'NN'), ('test', 'NN'), ('time', 'NN'), ('touch', 'JJ'), ('tput', 'NN'), ('tty', 'JJ'), ('uname', 'JJ'), ('unexpand', 'NN'), ('uniq', 'JJ'), ('vdir', 'NN'), ('virec', 'NN'), ('whoami', 'NN'), ('xargs', 'NNP'), ('xchess', 'NNP'), ('yes', 'RB'), ('zmore', 'VBD'), ('an', 'DT'), ('archive', 'NN'), ('of', 'IN'), ('comp', 'NN'), ('source', 'NN'), ('postings', 'NNS'), ('volume', 'NN'), ('through', 'IN'), ('volume14', 'NN'), ('58mb', 'CD'), (').', 'NN'), ('parts', 'NNS'), ('are', 'VBP'), ('supplied', 'VBN'), ('just', 'RB'), ('as', 'IN'), ('posted', 'VBN'), ('you', 'PRP'), ('get', 'VBP'), ('to', 'TO'), ('put', 'VB'), ('together', 'RB'), ('the', 'DT'), ('pieces', 'NNS'), ('compile', 'VBP'), ('install', 'VB'), ('etc', 'FW'), ('cost', 'NN'), ('sug', 'NN'), ('members', 'NNS'), ('50', 'CD'), ('non', 'JJ'), ('members', 'NNS'), ('additional', 'JJ'), ('40', 'CD'), ('within', 'IN'), ('the', 'DT'), ('us', 'PRP'), ('55', 'CD'), ('elsewhere', 'RB'), ('shipping', 'VBG'), ('handling', 'VBG'), ('10', 'CD'), ('inside', 'IN'), ('the', 'DT'), ('usa', 'JJ'), ('25', 'CD'), ('elsewhere', 'RB'), ('mail', 'NN'), ('to', 'TO'), ('sun', 'VB'), ('user', 'NN'), ('group', 'NN'), ('inc', 'VBZ'), ('suite', 'RB'), ('315', 'CD'), ('1330', 'CD'), ('beacon', 'NN'), ('street', 'NN'), ('brookline', 'JJ'), ('ma', 'NN'), ('02146', 'CD'), ('usa', 'JJ'), ('617', 'CD'), ('232', 'CD'), ('0514', 'CD'), ('voice', 'NN'), ('617', 'CD'), ('232', 'CD'), ('1347', 'CD'), ('fax', 'NN'), ('the', 'DT'), ('sun', 'NN'), ('user', 'NN'), ('group', 'NN'), ('also', 'RB'), ('accepts', 'VBZ'), ('visa', 'NNS'), ('and', 'CC'), ('mastercard', 'NN'), ('via', 'IN'), ('telephone', 'NN'), ('or', 'CC'), ('electronically', 'RB'), ('---------------------', 'JJ'), ('cut', 'NN'), ('here', 'RB'), ('and', 'CC'), ('return', 'VB'), ('completed', 'VBN'), ('form', 'NN'), ('---------------------', 'VBZ'), ('the', 'DT'), ('sugcd', 'NN'), ('1992', 'CD'), ('order', 'NN'), ('form', 'VBD'), ('the', 'DT'), ('price', 'NN'), ('of', 'IN'), ('the', 'DT'), ('cd', 'NN'), ('is', 'VBZ'), ('50', 'CD'), ('shipping', 'NN'), ('and', 'CC'), ('handling', 'VBG'), ('add', 'VB'), ('10', 'CD'), ('usa', 'JJ'), ('or', 'CC'), ('25', 'CD'), ('intl', 'JJ'), ('.)', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('not', 'RB'), ('member', 'NN'), ('of', 'IN'), ('the', 'DT'), ('sun', 'NN'), ('user', 'NN'), ('group', 'NN'), ('add', 'VBZ'), ('40', 'CD'), ('usa', 'JJ'), ('or', 'CC'), ('55', 'CD'), ('international', 'JJ'), ('to', 'TO'), ('the', 'DT'), ('above', 'NN'), ('sums', 'NN'), ('for', 'IN'), ('membership', 'NN'), ('you', 'PRP'), ('must', 'MD'), ('be', 'VB'), ('sug', 'JJ'), ('member', 'NN'), ('to', 'TO'), ('purchase', 'VB'), ('the', 'DT'), ('cd', 'NN'), ('rom', 'NN'), ('enclose', 'VBP'), ('us', 'PRP'), ('check', 'VB'), ('for', 'IN'), ('__', 'JJ'), ('60', 'CD'), ('sug', 'JJ'), ('member', 'NN'), ('in', 'IN'), ('the', 'DT'), ('usa', 'JJ'), ('__', 'NN'), ('75', 'CD'), ('sug', 'JJ'), ('member', 'NN'), ('outside', 'IN'), ('the', 'DT'), ('usa', 'JJ'), ('__', 'NN'), ('100', 'CD'), ('includes', 'VBZ'), ('membership', 'NN'), ('inside', 'IN'), ('the', 'DT'), ('usa', 'JJ'), ('__', 'NN'), ('130', 'CD'), ('includes', 'VBZ'), ('international', 'JJ'), ('membership', 'NN'), ('name__________________________________', 'JJ'), ('signature___________________________', 'NN'), ('company', 'NN'), ('name_______________________________________________________________', 'RB'), ('sug', 'JJ'), ('membership', 'NN'), ('#(', 'NN'), ('if', 'IN'), ('known', 'VBN'), ('_________________________________________________', 'NNP'), ('electronic', 'JJ'), ('mail', 'NN'), ('address____________________________________________________', 'IN'), ('telephone', 'NN'), ('number___________________________________________________________', 'JJ'), ('check', 'NN'), ('enclosed_____', 'NN'), ('mastercard_____', 'NN'), ('visa_____', 'NN'), ('credit', 'NN'), ('card', 'NN'), ('__________________________________', 'NNP'), ('exp', 'NN'), ('date', 'NN'), ('________________', 'NNP'), ('card', 'NN'), ('holder', 'NN'), ('__________________________', 'NNP'), ('signature', 'NN'), ('__________________________', 'NNP'), ('ship', 'NN'), ('to', 'TO'), ('bill', 'NN'), ('to', 'TO'), ('______________________________________', 'VB'), ('___________________________________', 'NNP'), ('______________________________________', 'NNP'), ('___________________________________', 'NNP'), ('______________________________________', 'NNP'), ('___________________________________', 'NNP'), ('______________________________________', 'NNP'), ('___________________________________', 'NNP'), ('-------------------------------------------------------------------------', 'NNP'), ('hereby', 'NN'), ('authorize', 'VB'), ('the', 'DT'), ('sun', 'NN'), ('user', 'NN'), ('group', 'NN'), ('to', 'TO'), ('renew', 'VB'), ('my', 'PRP$'), ('membership', 'NN'), ('and', 'CC'), ('charge', 'NN'), ('my', 'PRP$'), ('credit', 'NN'), ('card', 'NN'), ('automatically', 'RB'), ('on', 'IN'), ('an', 'DT'), ('annual', 'JJ'), ('basis', 'NN'), ('do', 'VBP'), ('not', 'RB'), ('wish', 'VB'), ('my', 'PRP$'), ('name', 'NN'), ('to', 'TO'), ('be', 'VB'), ('included', 'VBN'), ('in', 'IN'), ('non', 'JJ'), ('sun', 'NNS'), ('user', 'JJ'), ('group', 'NN'), ('mailings', 'NNS'), ('do', 'VBP'), ('not', 'RB'), ('wish', 'VB'), ('my', 'PRP$'), ('name', 'NN'), ('to', 'TO'), ('be', 'VB'), ('published', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('sun', 'NN'), ('user', 'NN'), ('group', 'NN'), ('member', 'NN'), ('directory', 'NN'), ('wish', 'NN'), ('to', 'TO'), ('be', 'VB'), ('added', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('sun', 'NN'), ('user', 'NN'), ('group', 'NN'), ('electronic', 'JJ'), ('mailing', 'VBG'), ('list', 'NN'), ('members', 'NNS'), ('only', 'RB'), ('outside', 'IN'), ('the', 'DT'), ('only', 'JJ'), ('individuals', 'NNS'), ('outside', 'IN'), ('of', 'IN'), ('the', 'DT'), ('usa', 'NN'), ('may', 'MD'), ('find', 'VB'), ('using', 'VBG'), ('their', 'PRP$'), ('credit', 'NN'), ('cards', 'NNS'), ('easier', 'JJR'), ('than', 'IN'), ('purchasing', 'VBG'), ('us', 'PRP'), ('checks', 'NNS'), ('as', 'IN'), ('this', 'DT'), ('eliminates', 'VBZ'), ('bank', 'NN'), ('charges', 'NNS'), ('-------------------------------------------------------------------------', 'VBP'), ('sun', 'JJ'), ('user', 'NN'), ('group', 'NN'), ('1330', 'CD'), ('beacon', 'NN'), ('street', 'NN'), ('suite', 'JJ'), ('315', 'CD'), ('brookline', 'NN'), ('ma', 'NN'), ('02146', 'CD')] | ['know', 'many', 'hour', 'spend', 'sun', 'user', 'group', 'make', 'available', 'cd', 'rom', 'member', 'disk', 'source', 'binary', 'sell', 'tag', 'table', 'content', 'orderform', 'anyone', 'interested', 'alex', 'newman', 'alex', 'newman', 'voice', 'life', 'may', 'stressful', 'fax', 'least', 'bore', 'sun', 'user', 'group', 'beacon', 'st', 'brookline', 'sug', 'cd', 'gnu', 'cdrom', 'price', 'sug', 'member', 'include', 'caddy', 'sug', 'emphasis', 'always', 'supply', 'great', 'possible', 'service', 'value', 'add', 'member', 'last', 'year', 'sug', 'disk', 'contain', 'plug', 'play', 'additional', 'essential', 'binary', 'almost', 'sun', 'patch', 'fully', 'indexed', 'archive', 'sun', 'related', 'net', 'posting', 'price', 'aim', 'year', 'reduce', 'price', 'disk', 'produce', 'inexpensively', 'continue', 'supply', 'much', 'value', 'add', 'possible', 'accomplish', 'put', 'two', 'disk', 'set', 'first', 'contain', 'ready', 'need', 'second', 'available', 'later', 'contain', 'sparc', 'binary', 'useful', 'material', 'find', 'previous', 'disk', 'sug', 'disk', 'assemble', 'robert', 'bruce', 'contain', 'lot', 'essential', 'source', 'code', 'decide', 'would', 'great', 'service', 'make', 'available', 'right', 'away', 'member', 'pricing', 'make', 'good', 'opportunity', 'become', 'member', 'per', 'disk', 'include', 'one', 'hard', 'find', 'caddy', 'sug', 'member', 'become', 'one', 'additional', 'live', 'within', 'u', 'outside', 'sug', 'cdrom', 'iso', 'disk', 'mean', 'use', 'pc', 'macintosh', 'workstation', 'well', 'contain', 'total', 'material', 'include', 'source', 'core', 'binary', 'sparc', 'several', 'week', 'initial', 'distribution', 'thus', 'four', 'fix', 'mit', 'contrib', 'distribution', 'include', 'material', 'binary', 'xsun', 'xsunmono', 'appres', 'atobm', 'bdftopcf', 'bitmap', 'bmtoa', 'constype', 'editres', 'fs', 'fsinfo', 'fslsfonts', 'fstobdf', 'ico', 'imake', 'listres', 'lndir', 'makedepend', 'maze', 'mkdirhier', 'mkfontdir', 'oclock', 'plbpex', 'puzzle', 'resize', 'showfont', 'showrgb', 'startx', 'twm', 'viewres', 'xauth', 'xbiff', 'xcalc', 'xclipboard', 'xclock', 'xcmsdb', 'xcmstest', 'xconsole', 'xcutsel', 'xditview', 'xdm', 'xdpr', 'xdpyinfo', 'xedit', 'xev', 'xeyes', 'xfd', 'xfontsel', 'xgas', 'xgc', 'xhost', 'xinit', 'xkill', 'xload', 'xlogo', 'xlsatoms', 'xlsclients', 'xlsfonts', 'xmag', 'xman', 'xmh', 'xmkmf', 'xmodmap', 'xon', 'xpr', 'xprop', 'xrdb', 'xrefresh', 'xset', 'xsetroot', 'xstdcmap', 'xterm', 'xwd', 'xwininfo', 'xwud', 'copy', 'contributed', 'source', 'export', 'lcs', 'mit', 'edu', 'contrib', 'uncompressed', 'untarred', 'source', 'directory', 'source', 'date', 'production', 'disk', 'include', 'mit', 'contrib', 'contrib', 'distribution', 'gnu', 'source', 'uncompressed', 'untarred', 'source', 'directory', 'sparc', 'binary', 'need', 'library', 'gnu', 'program', 'ar', 'basename', 'bash', 'bison', 'cat', 'chgrp', 'chmod', 'chown', 'ci', 'cmp', 'co', 'comm', 'compress', 'cp', 'cpio', 'cpp', 'ctags', 'cut', 'cvs', 'date', 'dd', 'df', 'diff', 'dir', 'dirname', 'du', 'egrep', 'elvis', 'emacs', 'env', 'etags', 'expand', 'expr', 'fgrep', 'find', 'flex', 'fold', 'dep', 'filt', 'gawk', 'gcc', 'gdb', 'ginstall', 'gnuchess', 'gnuchessn', 'gnuchessr', 'gnugo', 'gnuplot', 'gprof', 'grep', 'head', 'id', 'ident', 'indent', 'ispell', 'ld', 'ld', 'le', 'ln', 'locate', 'logname', 'ls', 'make', 'merge', 'mkdir', 'mkfifo', 'mkmodules', 'mknod', 'mt', 'mv', 'nice', 'nm', 'oleo', 'paste', 'pathchk', 'perl', 'pr', 'printenv', 'printf', 'ranlib', 'rcs', 'rcsdiff', 'rcsinfo', 'rcsmerge', 'rcstest', 'ref', 'refont', 'rlog', 'rm', 'rmdir', 'rmt', 'screen', 'sed', 'size', 'sleep', 'split', 'strip', 'stty', 'sum', 'tac', 'tail', 'taintperl', 'tar', 'tee', 'test', 'time', 'touch', 'tput', 'tty', 'uname', 'unexpand', 'uniq', 'vdir', 'virec', 'whoami', 'xargs', 'xchess', 'yes', 'zmore', 'archive', 'comp', 'source', 'posting', 'volume', 'part', 'supply', 'post', 'get', 'put', 'together', 'piece', 'compile', 'install', 'etc', 'cost', 'sug', 'member', 'non', 'member', 'additional', 'within', 'u', 'elsewhere', 'ship', 'handle', 'inside', 'usa', 'elsewhere', 'mail', 'sun', 'user', 'group', 'inc', 'suite', 'beacon', 'street', 'brookline', 'usa', 'voice', 'fax', 'sun', 'user', 'group', 'also', 'accept', 'visa', 'mastercard', 'via', 'telephone', 'electronically', 'cut', 'return', 'complete', 'form', 'sugcd', 'order', 'form', 'price', 'cd', 'shipping', 'handle', 'add', 'usa', 'intl', 'member', 'sun', 'user', 'group', 'add', 'usa', 'international', 'sum', 'membership', 'must', 'sug', 'member', 'purchase', 'cd', 'rom', 'enclose', 'u', 'check', 'sug', 'member', 'usa', 'sug', 'member', 'outside', 'usa', 'include', 'membership', 'inside', 'usa', 'include', 'international', 'membership', 'company', 'sug', 'membership', 'know', 'electronic', 'mail', 'telephone', 'check', 'credit', 'card', 'exp', 'date', 'card', 'holder', 'signature', 'ship', 'bill', 'hereby', 'authorize', 'sun', 'user', 'group', 'renew', 'membership', 'charge', 'credit', 'card', 'automatically', 'annual', 'basis', 'wish', 'name', 'include', 'non', 'sun', 'user', 'group', 'mailing', 'wish', 'name', 'publish', 'sun', 'user', 'group', 'member', 'directory', 'wish', 'add', 'sun', 'user', 'group', 'electronic', 'mail', 'list', 'member', 'outside', 'individual', 'outside', 'usa', 'may', 'find', 'use', 'credit', 'card', 'easy', 'purchase', 'u', 'check', 'eliminate', 'bank', 'charge', 'sun', 'user', 'group', 'beacon', 'street', 'suite', 'brookline'] | ['know_many', 'many_hour', 'sun_user', 'user_group', 'group_make', 'make_available', 'available_cd', 'cd_rom', 'source_binary', 'table_content', 'anyone_interested', 'life_may', 'sun_user', 'user_group', 'sug_member', 'value_add', 'last_year', 'disk_contain', 'plug_play', 'value_add', 'put_two', 'source_code', 'decide_would', 'would_great', 'make_available', 'right_away', 'make_good', 'become_member', 'disk_include', 'include_one', 'one_hard', 'hard_find', 'sug_member', 'become_one', 'mean_use', 'use_pc', 'include_source', 'several_week', 'mit_contrib', 'distribution_include', 'source_export', 'export_lcs', 'lcs_mit', 'mit_edu', 'edu_contrib', 'source_directory', 'disk_include', 'include_mit', 'mit_contrib', 'source_directory', 'comp_source', 'post_get', 'get_put', 'put_together', 'sug_member', 'sun_user', 'user_group', 'voice_fax', 'sun_user', 'user_group', 'group_also', 'also_accept', 'order_form', 'shipping_handle', 'sun_user', 'user_group', 'sug_member', 'cd_rom', 'sug_member', 'sug_member', 'outside_usa', 'electronic_mail', 'credit_card', 'sun_user', 'user_group', 'credit_card', 'sun_user', 'user_group', 'sun_user', 'user_group', 'group_member', 'sun_user', 'user_group', 'electronic_mail', 'mail_list', 'list_member', 'outside_usa', 'may_find', 'find_use', 'credit_card', 'sun_user', 'user_group', 'street_suite'] | comp_windows_x_66442 |@lemmatized know:2 many:1 hour:1 spend:1 sun:12 user:10 group:10 make:4 available:3 cd:4 rom:2 member:14 disk:9 source:9 binary:6 sell:1 tag:1 table:1 content:1 orderform:1 anyone:1 interested:1 alex:2 newman:2 voice:2 life:1 may:2 stressful:1 fax:2 least:1 bore:1 beacon:3 st:1 brookline:3 sug:12 gnu:3 cdrom:2 price:4 include:8 caddy:2 emphasis:1 always:1 supply:3 great:2 possible:2 service:2 value:2 add:5 last:1 year:2 contain:5 plug:1 play:1 additional:3 essential:2 almost:1 patch:1 fully:1 indexed:1 archive:2 related:1 net:1 posting:2 aim:1 reduce:1 produce:1 inexpensively:1 continue:1 much:1 accomplish:1 put:2 two:1 set:1 first:1 ready:1 need:2 second:1 later:1 sparc:3 useful:1 material:3 find:4 previous:1 assemble:1 robert:1 bruce:1 lot:1 code:1 decide:1 would:1 right:1 away:1 pricing:1 good:1 opportunity:1 become:2 per:1 one:2 hard:1 live:1 within:2 u:4 outside:4 iso:1 mean:1 use:2 pc:1 macintosh:1 workstation:1 well:1 total:1 core:1 several:1 week:1 initial:1 distribution:3 thus:1 four:1 fix:1 mit:3 contrib:4 xsun:1 xsunmono:1 appres:1 atobm:1 bdftopcf:1 bitmap:1 bmtoa:1 constype:1 editres:1 fs:1 fsinfo:1 fslsfonts:1 fstobdf:1 ico:1 imake:1 listres:1 lndir:1 makedepend:1 maze:1 mkdirhier:1 mkfontdir:1 oclock:1 plbpex:1 puzzle:1 resize:1 showfont:1 showrgb:1 startx:1 twm:1 viewres:1 xauth:1 xbiff:1 xcalc:1 xclipboard:1 xclock:1 xcmsdb:1 xcmstest:1 xconsole:1 xcutsel:1 xditview:1 xdm:1 xdpr:1 xdpyinfo:1 xedit:1 xev:1 xeyes:1 xfd:1 xfontsel:1 xgas:1 xgc:1 xhost:1 xinit:1 xkill:1 xload:1 xlogo:1 xlsatoms:1 xlsclients:1 xlsfonts:1 xmag:1 xman:1 xmh:1 xmkmf:1 xmodmap:1 xon:1 xpr:1 xprop:1 xrdb:1 xrefresh:1 xset:1 xsetroot:1 xstdcmap:1 xterm:1 xwd:1 xwininfo:1 xwud:1 copy:1 contributed:1 export:1 lcs:1 edu:1 uncompressed:2 untarred:2 directory:3 date:3 production:1 library:1 program:1 ar:1 basename:1 bash:1 bison:1 cat:1 chgrp:1 chmod:1 chown:1 ci:1 cmp:1 co:1 comm:1 compress:1 cp:1 cpio:1 cpp:1 ctags:1 cut:2 cvs:1 dd:1 df:1 diff:1 dir:1 dirname:1 du:1 egrep:1 elvis:1 emacs:1 env:1 etags:1 expand:1 expr:1 fgrep:1 flex:1 fold:1 dep:1 filt:1 gawk:1 gcc:1 gdb:1 ginstall:1 gnuchess:1 gnuchessn:1 gnuchessr:1 gnugo:1 gnuplot:1 gprof:1 grep:1 head:1 id:1 ident:1 indent:1 ispell:1 ld:2 le:1 ln:1 locate:1 logname:1 ls:1 merge:1 mkdir:1 mkfifo:1 mkmodules:1 mknod:1 mt:1 mv:1 nice:1 nm:1 oleo:1 paste:1 pathchk:1 perl:1 pr:1 printenv:1 printf:1 ranlib:1 rcs:1 rcsdiff:1 rcsinfo:1 rcsmerge:1 rcstest:1 ref:1 refont:1 rlog:1 rm:1 rmdir:1 rmt:1 screen:1 sed:1 size:1 sleep:1 split:1 strip:1 stty:1 sum:2 tac:1 tail:1 taintperl:1 tar:1 tee:1 test:1 time:1 touch:1 tput:1 tty:1 uname:1 unexpand:1 uniq:1 vdir:1 virec:1 whoami:1 xargs:1 xchess:1 yes:1 zmore:1 comp:1 volume:1 part:1 post:1 get:1 together:1 piece:1 compile:1 install:1 etc:1 cost:1 non:2 elsewhere:2 ship:2 handle:2 inside:2 usa:8 mail:3 inc:1 suite:2 street:2 also:1 accept:1 visa:1 mastercard:1 via:1 telephone:2 electronically:1 return:1 complete:1 form:2 sugcd:1 order:1 shipping:1 intl:1 international:2 membership:5 must:1 purchase:2 enclose:1 check:3 company:1 electronic:2 credit:3 card:4 exp:1 holder:1 signature:1 bill:1 hereby:1 authorize:1 renew:1 charge:2 automatically:1 annual:1 basis:1 wish:3 name:2 mailing:1 publish:1 list:1 individual:1 easy:1 eliminate:1 bank:1 |@bigram know_many:1 many_hour:1 sun_user:10 user_group:10 group_make:1 make_available:2 available_cd:1 cd_rom:2 source_binary:1 table_content:1 anyone_interested:1 life_may:1 sug_member:6 value_add:2 last_year:1 disk_contain:1 plug_play:1 put_two:1 source_code:1 decide_would:1 would_great:1 right_away:1 make_good:1 become_member:1 disk_include:2 include_one:1 one_hard:1 hard_find:1 become_one:1 mean_use:1 use_pc:1 include_source:1 several_week:1 mit_contrib:2 distribution_include:1 source_export:1 export_lcs:1 lcs_mit:1 mit_edu:1 edu_contrib:1 source_directory:2 include_mit:1 comp_source:1 post_get:1 get_put:1 put_together:1 voice_fax:1 group_also:1 also_accept:1 order_form:1 shipping_handle:1 outside_usa:2 electronic_mail:2 credit_card:3 group_member:1 mail_list:1 list_member:1 may_find:1 find_use:1 street_suite:1 |
2,107 |
This is an interesting notion -- and one I'm scared of. In my
case I'm a Finnish citizen, I live in USA, and I have to conform
to the US laws. However, the Finnish government is not actively
checking out what I'm doing in this country, in other words checking
out if I conform to the Finnish laws.
However, Islamic law seems to be a 'curse' that is following you
everywhere in the world. Shades of 1984, eh?
Cheers,
Kent | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/53572 | 0 | alt_atheism_53572 | [('this', 'DT'), ('is', 'VBZ'), ('an', 'DT'), ('interesting', 'JJ'), ('notion', 'NN'), ('--', ':'), ('and', 'CC'), ('one', 'CD'), ('scared', 'NN'), ('of', 'IN'), ('in', 'IN'), ('my', 'PRP$'), ('case', 'NN'), ('finnish', 'JJ'), ('citizen', 'NNS'), ('live', 'VBP'), ('in', 'IN'), ('usa', 'JJ'), ('and', 'CC'), ('have', 'VBP'), ('to', 'TO'), ('conform', 'VB'), ('to', 'TO'), ('the', 'DT'), ('us', 'PRP'), ('laws', 'NNS'), ('however', 'RB'), ('the', 'DT'), ('finnish', 'JJ'), ('government', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('actively', 'RB'), ('checking', 'VBG'), ('out', 'RP'), ('what', 'WP'), ('doing', 'VBG'), ('in', 'IN'), ('this', 'DT'), ('country', 'NN'), ('in', 'IN'), ('other', 'JJ'), ('words', 'NNS'), ('checking', 'VBG'), ('out', 'RP'), ('if', 'IN'), ('conform', 'NN'), ('to', 'TO'), ('the', 'DT'), ('finnish', 'JJ'), ('laws', 'NNS'), ('however', 'RB'), ('islamic', 'JJ'), ('law', 'NN'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('curse', 'JJ'), ('that', 'DT'), ('is', 'VBZ'), ('following', 'VBG'), ('you', 'PRP'), ('everywhere', 'RB'), ('in', 'IN'), ('the', 'DT'), ('world', 'NN'), ('shades', 'NN'), ('of', 'IN'), ('1984', 'CD'), ('eh', 'NN'), ('cheers', 'NNS'), ('kent', 'VBD')] | ['interesting', 'notion', 'one', 'scared', 'case', 'finnish', 'citizen', 'live', 'usa', 'conform', 'u', 'law', 'however', 'finnish', 'government', 'actively', 'check', 'country', 'word', 'check', 'conform', 'finnish', 'law', 'however', 'islamic', 'law', 'seem', 'curse', 'follow', 'everywhere', 'world', 'shade', 'eh', 'cheer', 'kent'] | ['live_usa', 'u_law', 'law_however', 'law_however', 'islamic_law', 'law_seem', 'cheer_kent'] | alt_atheism_53572 |@lemmatized interesting:1 notion:1 one:1 scared:1 case:1 finnish:3 citizen:1 live:1 usa:1 conform:2 u:1 law:3 however:2 government:1 actively:1 check:2 country:1 word:1 islamic:1 seem:1 curse:1 follow:1 everywhere:1 world:1 shade:1 eh:1 cheer:1 kent:1 |@bigram live_usa:1 u_law:1 law_however:2 islamic_law:1 law_seem:1 cheer_kent:1 |
2,108 | DS>From: [email protected] (Dan Sorenson)
DS>>Riding up the hill leading to my
DS>>house, I encountered a liver-and-white Springer Spaniel (no relation to
DS>>the Springer Softail, or the Springer Spagthorpe, a close relation to
DS>>the Spagthorpe Viking).
DS> I must have missed the article on the Spagthorpe Viking. Was
DS>that the one with the little illuminated Dragon's Head on the front
DS>fender, a style later copied by Indian, and the round side covers?
No. Not at all. The Viking was a trick little unit made way back when
(forties? fifties?) when Spag was trying to make a go of it in racing.
The first iteration (the Springer) was a boxer twin, very similar to Max
Friz's famous design, but with an overhead "point cam" (see below for
more on the valvetrain). The problem was that the thing had no ground
clearance whatsoever. The solution was to curve the cylinder bores, so
that the ground clearance was substantially increased:
==@== <-Springer motor (front)
Viking motor (front) -> \=@=/
This is roughly the idea, except that the bores were gradually curved
around a radius, as the pistons were loath to make a sharp-angled turn
in the middle of their stroke. The engine also had curved connecting
rods to accomodate the stroke.
The engine stuck out so far because of its revolutionary (and still
unique) overhead cam system. Through the use of clever valve timing and
and extrordinarily trick valve linkage, only a single cam lobe was
required to drive both overhead valves.
Just as revolutionary was the hydraulic valve actuation, which used a
pressurized stream of oil to power the "waterwheel" which kept the lobe
spinning over. One side effect that required some rather brutal
engineering fixes was that until the engine's oil pressure came up to
normal, the engine's valve timing would be more or less random,
resulting in some impressive start-up valve damage. The solution was a
little hand crank that pressurized the cases before you started the
beast, remarkably similar to the system used in new Porsches to
pressurize the oil system before the car is started (the cage, however,
uses an electric oil pump. Wimps).
Despite this fix, the engine had a nasty propensity for explosively
firing its valves into the pistons when a cylinder would temporarily
lose a bit of oil pressure in a corner. The solution was to run even
higher oil pressures and change the gaskets and seals regularly. This
was feasible because it was a racing engine.
With just a single overhead lobe, and no pushrod/shaft/chain towers
because of the hydraulic system, the head of the engine came to an
almost perfect point:
/\
/()\ <-lobe
/ XX \ <-complex linkage (not shown due to
valvestems -> / \ / \ complexity)
| | | |
| |===| |
=0= <---piston
|
Note that the tip was not truly vertical
(it was at about a 70 degree angle to the
ground, and this drawing doesn't show the
curvature because there was none in the
head itself. The bore curve would start
about where the cylinder bore disappears in
this diagram
The effect of the pointy heads on top of a pair of gently (pundits of
the day even said sensuously) curved cylinders was much like a pair of
finned Viking horns poking out from beneath the gas tank. Thus, the
name.
The Vik was a moderately successful racer, lightning fast when it
worked, but plagued by problems relating to its revolutionary
technology. Eventually, it was dumped when Spag finally realized that
racing was not where the Spagthorpe name would be made. The machines
were raced for another year or two by privateers, and their fate
(approximately six Vikings were made, plus one or possibly two
Springers. Confusing the issue is one old Spag staffer who swears up and
down that this machine was tooled for production, and that as many as
twenty or thirty machines may have come off the line. However, no modern
record of a production Viking has survived, and most motorcycle
historians discount this story.
Ryan Cousinetc.|1982 Yamaha Vision XZ550 -Black Pig of Inverness|Live to Ride
KotRB |1958 AJS 500 C/S -King Rat |to Work to
DoD# 0863 |I'd be a squid if I could afford the bike... |Flame to
[email protected] | Vancouver, BC, Canada |Live . . .
* SLMR 2.1a * If you aren't sliding, you aren't riding.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104582 | 8 | rec_motorcycles_104582 | [('ds', 'NN'), ('from', 'IN'), ('dan', 'JJ'), ('sorenson', 'NN'), ('ds', 'NN'), ('>>', 'NN'), ('riding', 'VBG'), ('up', 'RP'), ('the', 'DT'), ('hill', 'NN'), ('leading', 'VBG'), ('to', 'TO'), ('my', 'PRP$'), ('ds', 'JJ'), ('>>', 'NNP'), ('house', 'NN'), ('encountered', 'VBD'), ('liver', 'RB'), ('and', 'CC'), ('white', 'JJ'), ('springer', 'NN'), ('spaniel', 'NN'), ('no', 'DT'), ('relation', 'NN'), ('to', 'TO'), ('ds', 'VB'), ('>>', 'PDT'), ('the', 'DT'), ('springer', 'NN'), ('softail', 'NN'), ('or', 'CC'), ('the', 'DT'), ('springer', 'NN'), ('spagthorpe', 'VBD'), ('close', 'JJ'), ('relation', 'NN'), ('to', 'TO'), ('ds', 'VB'), ('>>', 'PDT'), ('the', 'DT'), ('spagthorpe', 'NN'), ('viking', 'VBG'), (').', 'JJ'), ('ds', 'NN'), ('must', 'MD'), ('have', 'VB'), ('missed', 'VBN'), ('the', 'DT'), ('article', 'NN'), ('on', 'IN'), ('the', 'DT'), ('spagthorpe', 'NN'), ('viking', 'NN'), ('was', 'VBD'), ('ds', 'NN'), ('that', 'IN'), ('the', 'DT'), ('one', 'NN'), ('with', 'IN'), ('the', 'DT'), ('little', 'JJ'), ('illuminated', 'JJ'), ('dragon', 'NN'), ('head', 'NN'), ('on', 'IN'), ('the', 'DT'), ('front', 'JJ'), ('ds', 'NN'), ('fender', 'NN'), ('style', 'NN'), ('later', 'RB'), ('copied', 'VBN'), ('by', 'IN'), ('indian', 'JJ'), ('and', 'CC'), ('the', 'DT'), ('round', 'JJ'), ('side', 'NN'), ('covers', 'VBZ'), ('no', 'DT'), ('not', 'RB'), ('at', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('viking', 'NN'), ('was', 'VBD'), ('trick', 'JJ'), ('little', 'JJ'), ('unit', 'NN'), ('made', 'VBD'), ('way', 'NN'), ('back', 'RB'), ('when', 'WRB'), ('forties', 'NNS'), ('fifties', 'VBP'), ('?)', 'VBP'), ('when', 'WRB'), ('spag', 'NN'), ('was', 'VBD'), ('trying', 'VBG'), ('to', 'TO'), ('make', 'VB'), ('go', 'NN'), ('of', 'IN'), ('it', 'PRP'), ('in', 'IN'), ('racing', 'VBG'), ('the', 'DT'), ('first', 'JJ'), ('iteration', 'NN'), ('the', 'DT'), ('springer', 'NN'), ('was', 'VBD'), ('boxer', 'JJ'), ('twin', 'JJ'), ('very', 'RB'), ('similar', 'JJ'), ('to', 'TO'), ('max', 'VB'), ('friz', 'RB'), ('famous', 'JJ'), ('design', 'NN'), ('but', 'CC'), ('with', 'IN'), ('an', 'DT'), ('overhead', 'JJ'), ('point', 'NN'), ('cam', 'NNS'), ('see', 'VBP'), ('below', 'IN'), ('for', 'IN'), ('more', 'JJR'), ('on', 'IN'), ('the', 'DT'), ('valvetrain', 'NN'), (').', 'VBD'), ('the', 'DT'), ('problem', 'NN'), ('was', 'VBD'), ('that', 'IN'), ('the', 'DT'), ('thing', 'NN'), ('had', 'VBD'), ('no', 'DT'), ('ground', 'NN'), ('clearance', 'NN'), ('whatsoever', 'IN'), ('the', 'DT'), ('solution', 'NN'), ('was', 'VBD'), ('to', 'TO'), ('curve', 'VB'), ('the', 'DT'), ('cylinder', 'NN'), ('bores', 'VBZ'), ('so', 'RB'), ('that', 'IN'), ('the', 'DT'), ('ground', 'NN'), ('clearance', 'NN'), ('was', 'VBD'), ('substantially', 'RB'), ('increased', 'VBN'), ('<-', 'JJ'), ('springer', 'NN'), ('motor', 'NN'), ('front', 'JJ'), ('viking', 'VBG'), ('motor', 'NN'), ('front', 'JJ'), ('->', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('roughly', 'RB'), ('the', 'DT'), ('idea', 'NN'), ('except', 'IN'), ('that', 'IN'), ('the', 'DT'), ('bores', 'NNS'), ('were', 'VBD'), ('gradually', 'RB'), ('curved', 'VBN'), ('around', 'RB'), ('radius', 'RB'), ('as', 'IN'), ('the', 'DT'), ('pistons', 'NNS'), ('were', 'VBD'), ('loath', 'JJ'), ('to', 'TO'), ('make', 'VB'), ('sharp', 'JJ'), ('angled', 'JJ'), ('turn', 'NN'), ('in', 'IN'), ('the', 'DT'), ('middle', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('stroke', 'NN'), ('the', 'DT'), ('engine', 'NN'), ('also', 'RB'), ('had', 'VBD'), ('curved', 'VBN'), ('connecting', 'VBG'), ('rods', 'NNS'), ('to', 'TO'), ('accomodate', 'VB'), ('the', 'DT'), ('stroke', 'NN'), ('the', 'DT'), ('engine', 'NN'), ('stuck', 'VBN'), ('out', 'RP'), ('so', 'RB'), ('far', 'RB'), ('because', 'IN'), ('of', 'IN'), ('its', 'PRP$'), ('revolutionary', 'NN'), ('and', 'CC'), ('still', 'RB'), ('unique', 'JJ'), ('overhead', 'JJ'), ('cam', 'NN'), ('system', 'NN'), ('through', 'IN'), ('the', 'DT'), ('use', 'NN'), ('of', 'IN'), ('clever', 'NN'), ('valve', 'NN'), ('timing', 'NN'), ('and', 'CC'), ('and', 'CC'), ('extrordinarily', 'RB'), ('trick', 'VB'), ('valve', 'NN'), ('linkage', 'NN'), ('only', 'RB'), ('single', 'JJ'), ('cam', 'NN'), ('lobe', 'NN'), ('was', 'VBD'), ('required', 'VBN'), ('to', 'TO'), ('drive', 'VB'), ('both', 'DT'), ('overhead', 'JJ'), ('valves', 'NNS'), ('just', 'RB'), ('as', 'IN'), ('revolutionary', 'NN'), ('was', 'VBD'), ('the', 'DT'), ('hydraulic', 'JJ'), ('valve', 'NN'), ('actuation', 'NN'), ('which', 'WDT'), ('used', 'VBD'), ('pressurized', 'JJ'), ('stream', 'NN'), ('of', 'IN'), ('oil', 'NN'), ('to', 'TO'), ('power', 'NN'), ('the', 'DT'), ('waterwheel', 'NN'), ('which', 'WDT'), ('kept', 'VBD'), ('the', 'DT'), ('lobe', 'NN'), ('spinning', 'NN'), ('over', 'IN'), ('one', 'CD'), ('side', 'NN'), ('effect', 'NN'), ('that', 'WDT'), ('required', 'VBD'), ('some', 'DT'), ('rather', 'RB'), ('brutal', 'JJ'), ('engineering', 'NN'), ('fixes', 'NNS'), ('was', 'VBD'), ('that', 'IN'), ('until', 'IN'), ('the', 'DT'), ('engine', 'NN'), ('oil', 'NN'), ('pressure', 'NN'), ('came', 'VBD'), ('up', 'RB'), ('to', 'TO'), ('normal', 'JJ'), ('the', 'DT'), ('engine', 'NN'), ('valve', 'NN'), ('timing', 'NN'), ('would', 'MD'), ('be', 'VB'), ('more', 'RBR'), ('or', 'CC'), ('less', 'RBR'), ('random', 'JJ'), ('resulting', 'VBG'), ('in', 'IN'), ('some', 'DT'), ('impressive', 'JJ'), ('start', 'VBP'), ('up', 'RP'), ('valve', 'RB'), ('damage', 'VB'), ('the', 'DT'), ('solution', 'NN'), ('was', 'VBD'), ('little', 'JJ'), ('hand', 'NN'), ('crank', 'NN'), ('that', 'WDT'), ('pressurized', 'VBD'), ('the', 'DT'), ('cases', 'NNS'), ('before', 'IN'), ('you', 'PRP'), ('started', 'VBD'), ('the', 'DT'), ('beast', 'NN'), ('remarkably', 'RB'), ('similar', 'JJ'), ('to', 'TO'), ('the', 'DT'), ('system', 'NN'), ('used', 'VBN'), ('in', 'IN'), ('new', 'JJ'), ('porsches', 'NNS'), ('to', 'TO'), ('pressurize', 'VB'), ('the', 'DT'), ('oil', 'NN'), ('system', 'NN'), ('before', 'IN'), ('the', 'DT'), ('car', 'NN'), ('is', 'VBZ'), ('started', 'VBN'), ('the', 'DT'), ('cage', 'NN'), ('however', 'RB'), ('uses', 'VBZ'), ('an', 'DT'), ('electric', 'JJ'), ('oil', 'NN'), ('pump', 'NN'), ('wimps', 'NNS'), (').', 'VBP'), ('despite', 'IN'), ('this', 'DT'), ('fix', 'VBZ'), ('the', 'DT'), ('engine', 'NN'), ('had', 'VBD'), ('nasty', 'JJ'), ('propensity', 'NN'), ('for', 'IN'), ('explosively', 'RB'), ('firing', 'VBG'), ('its', 'PRP$'), ('valves', 'NNS'), ('into', 'IN'), ('the', 'DT'), ('pistons', 'NNS'), ('when', 'WRB'), ('cylinder', 'NN'), ('would', 'MD'), ('temporarily', 'RB'), ('lose', 'VB'), ('bit', 'NN'), ('of', 'IN'), ('oil', 'NN'), ('pressure', 'NN'), ('in', 'IN'), ('corner', 'NN'), ('the', 'DT'), ('solution', 'NN'), ('was', 'VBD'), ('to', 'TO'), ('run', 'VB'), ('even', 'RB'), ('higher', 'JJR'), ('oil', 'NN'), ('pressures', 'NNS'), ('and', 'CC'), ('change', 'VB'), ('the', 'DT'), ('gaskets', 'NNS'), ('and', 'CC'), ('seals', 'NNS'), ('regularly', 'RB'), ('this', 'DT'), ('was', 'VBD'), ('feasible', 'JJ'), ('because', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('racing', 'VBG'), ('engine', 'NN'), ('with', 'IN'), ('just', 'RB'), ('single', 'JJ'), ('overhead', 'JJ'), ('lobe', 'NN'), ('and', 'CC'), ('no', 'DT'), ('pushrod', 'NN'), ('shaft', 'NN'), ('chain', 'NN'), ('towers', 'NNS'), ('because', 'IN'), ('of', 'IN'), ('the', 'DT'), ('hydraulic', 'JJ'), ('system', 'NN'), ('the', 'DT'), ('head', 'NN'), ('of', 'IN'), ('the', 'DT'), ('engine', 'NN'), ('came', 'VBD'), ('to', 'TO'), ('an', 'DT'), ('almost', 'RB'), ('perfect', 'JJ'), ('point', 'NN'), ('/\\', 'NNP'), ('/()\\', 'NNP'), ('<-', 'JJ'), ('lobe', 'NN'), ('xx', 'JJ'), ('<-', 'JJ'), ('complex', 'JJ'), ('linkage', 'NN'), ('not', 'RB'), ('shown', 'VBN'), ('due', 'JJ'), ('to', 'TO'), ('valvestems', 'VB'), ('->', 'NNP'), ('complexity', 'NN'), ('|===|', 'NNP'), ('<---', 'JJ'), ('piston', 'NN'), ('note', 'NN'), ('that', 'IN'), ('the', 'DT'), ('tip', 'NN'), ('was', 'VBD'), ('not', 'RB'), ('truly', 'RB'), ('vertical', 'JJ'), ('it', 'PRP'), ('was', 'VBD'), ('at', 'IN'), ('about', 'IN'), ('70', 'CD'), ('degree', 'JJ'), ('angle', 'NN'), ('to', 'TO'), ('the', 'DT'), ('ground', 'NN'), ('and', 'CC'), ('this', 'DT'), ('drawing', 'VBG'), ('doesn', 'NN'), ('show', 'VBP'), ('the', 'DT'), ('curvature', 'NN'), ('because', 'IN'), ('there', 'EX'), ('was', 'VBD'), ('none', 'NN'), ('in', 'IN'), ('the', 'DT'), ('head', 'NN'), ('itself', 'PRP'), ('the', 'DT'), ('bore', 'NN'), ('curve', 'NN'), ('would', 'MD'), ('start', 'VB'), ('about', 'IN'), ('where', 'WRB'), ('the', 'DT'), ('cylinder', 'NN'), ('bore', 'NN'), ('disappears', 'VBZ'), ('in', 'IN'), ('this', 'DT'), ('diagram', 'NN'), ('the', 'DT'), ('effect', 'NN'), ('of', 'IN'), ('the', 'DT'), ('pointy', 'NN'), ('heads', 'NNS'), ('on', 'IN'), ('top', 'NN'), ('of', 'IN'), ('pair', 'NN'), ('of', 'IN'), ('gently', 'JJ'), ('pundits', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('day', 'NN'), ('even', 'RB'), ('said', 'VBD'), ('sensuously', 'RB'), ('curved', 'VBN'), ('cylinders', 'NNS'), ('was', 'VBD'), ('much', 'RB'), ('like', 'IN'), ('pair', 'NN'), ('of', 'IN'), ('finned', 'JJ'), ('viking', 'VBG'), ('horns', 'NNS'), ('poking', 'VBG'), ('out', 'RP'), ('from', 'IN'), ('beneath', 'IN'), ('the', 'DT'), ('gas', 'NN'), ('tank', 'NN'), ('thus', 'RB'), ('the', 'DT'), ('name', 'NN'), ('the', 'DT'), ('vik', 'NN'), ('was', 'VBD'), ('moderately', 'RB'), ('successful', 'JJ'), ('racer', 'NN'), ('lightning', 'VBG'), ('fast', 'RB'), ('when', 'WRB'), ('it', 'PRP'), ('worked', 'VBD'), ('but', 'CC'), ('plagued', 'VBN'), ('by', 'IN'), ('problems', 'NNS'), ('relating', 'VBG'), ('to', 'TO'), ('its', 'PRP$'), ('revolutionary', 'JJ'), ('technology', 'NN'), ('eventually', 'RB'), ('it', 'PRP'), ('was', 'VBD'), ('dumped', 'VBN'), ('when', 'WRB'), ('spag', 'NN'), ('finally', 'RB'), ('realized', 'VBD'), ('that', 'IN'), ('racing', 'VBG'), ('was', 'VBD'), ('not', 'RB'), ('where', 'WRB'), ('the', 'DT'), ('spagthorpe', 'NN'), ('name', 'NN'), ('would', 'MD'), ('be', 'VB'), ('made', 'VBN'), ('the', 'DT'), ('machines', 'NNS'), ('were', 'VBD'), ('raced', 'VBN'), ('for', 'IN'), ('another', 'DT'), ('year', 'NN'), ('or', 'CC'), ('two', 'CD'), ('by', 'IN'), ('privateers', 'NNS'), ('and', 'CC'), ('their', 'PRP$'), ('fate', 'NN'), ('approximately', 'RB'), ('six', 'CD'), ('vikings', 'NNS'), ('were', 'VBD'), ('made', 'VBN'), ('plus', 'CC'), ('one', 'CD'), ('or', 'CC'), ('possibly', 'RB'), ('two', 'CD'), ('springers', 'NNS'), ('confusing', 'VBG'), ('the', 'DT'), ('issue', 'NN'), ('is', 'VBZ'), ('one', 'CD'), ('old', 'JJ'), ('spag', 'NN'), ('staffer', 'NN'), ('who', 'WP'), ('swears', 'VBZ'), ('up', 'IN'), ('and', 'CC'), ('down', 'IN'), ('that', 'DT'), ('this', 'DT'), ('machine', 'NN'), ('was', 'VBD'), ('tooled', 'VBN'), ('for', 'IN'), ('production', 'NN'), ('and', 'CC'), ('that', 'IN'), ('as', 'RB'), ('many', 'JJ'), ('as', 'IN'), ('twenty', 'NN'), ('or', 'CC'), ('thirty', 'JJ'), ('machines', 'NNS'), ('may', 'MD'), ('have', 'VB'), ('come', 'VBN'), ('off', 'RP'), ('the', 'DT'), ('line', 'NN'), ('however', 'RB'), ('no', 'DT'), ('modern', 'JJ'), ('record', 'NN'), ('of', 'IN'), ('production', 'NN'), ('viking', 'NN'), ('has', 'VBZ'), ('survived', 'VBN'), ('and', 'CC'), ('most', 'JJS'), ('motorcycle', 'NN'), ('historians', 'NNS'), ('discount', 'VBP'), ('this', 'DT'), ('story', 'NN'), ('ryan', 'JJ'), ('cousinetc', 'NN'), ('.|', 'NN'), ('1982', 'CD'), ('yamaha', 'NN'), ('vision', 'NN'), ('xz550', 'NNP'), ('black', 'JJ'), ('pig', 'NN'), ('of', 'IN'), ('inverness', 'JJ'), ('live', 'JJ'), ('to', 'TO'), ('ride', 'VB'), ('kotrb', 'JJ'), ('1958', 'CD'), ('ajs', 'NN'), ('500', 'CD'), ('king', 'NN'), ('rat', 'NN'), ('to', 'TO'), ('work', 'VB'), ('to', 'TO'), ('dod', 'VB'), ('0863', 'CD'), ('be', 'VB'), ('squid', 'VBN'), ('if', 'IN'), ('could', 'MD'), ('afford', 'VB'), ('the', 'DT'), ('bike', 'NN'), ('...', ':'), ('flame', 'NN'), ('to', 'TO'), ('vancouver', 'VB'), ('bc', 'IN'), ('canada', 'JJ'), ('live', 'JJ'), ('slmr', 'NN'), ('1a', 'CD'), ('if', 'IN'), ('you', 'PRP'), ('aren', 'VBP'), ('sliding', 'VBG'), ('you', 'PRP'), ('aren', 'VBP'), ('riding', 'VBG')] | ['dan', 'sorenson', 'rid', 'hill', 'lead', 'ds', 'house', 'encounter', 'liver', 'white', 'springer', 'spaniel', 'relation', 'ds', 'springer', 'softail', 'springer', 'spagthorpe', 'close', 'relation', 'ds', 'spagthorpe', 'viking', 'must', 'miss', 'article', 'spagthorpe', 'viking', 'one', 'little', 'illuminated', 'dragon', 'head', 'front', 'fender', 'style', 'later', 'copy', 'indian', 'round', 'side', 'cover', 'viking', 'trick', 'little', 'unit', 'make', 'way', 'back', 'forty', 'fifties', 'spag', 'try', 'make', 'go', 'race', 'first', 'iteration', 'springer', 'boxer', 'twin', 'similar', 'max', 'friz', 'famous', 'design', 'overhead', 'point', 'cam', 'see', 'valvetrain', 'problem', 'thing', 'ground', 'clearance', 'whatsoever', 'solution', 'curve', 'cylinder', 'bore', 'ground', 'clearance', 'substantially', 'increase', 'springer', 'motor', 'front', 'viking', 'motor', 'front', 'roughly', 'idea', 'except', 'bore', 'gradually', 'curve', 'around', 'radius', 'piston', 'loath', 'make', 'sharp', 'angled', 'turn', 'middle', 'stroke', 'engine', 'also', 'curve', 'connect', 'rod', 'accomodate', 'stroke', 'engine', 'stick', 'far', 'revolutionary', 'still', 'unique', 'overhead', 'cam', 'system', 'use', 'clever', 'valve', 'timing', 'extrordinarily', 'trick', 'valve', 'linkage', 'single', 'cam', 'lobe', 'require', 'drive', 'overhead', 'valve', 'revolutionary', 'hydraulic', 'valve', 'actuation', 'use', 'pressurized', 'stream', 'oil', 'power', 'waterwheel', 'keep', 'lobe', 'spinning', 'one', 'side', 'effect', 'require', 'rather', 'brutal', 'engineering', 'fix', 'engine', 'oil', 'pressure', 'come', 'normal', 'engine', 'valve', 'timing', 'would', 'less', 'random', 'result', 'impressive', 'start', 'valve', 'damage', 'solution', 'little', 'hand', 'crank', 'pressurize', 'case', 'start', 'beast', 'remarkably', 'similar', 'system', 'use', 'new', 'porsches', 'pressurize', 'oil', 'system', 'car', 'start', 'cage', 'however', 'use', 'electric', 'oil', 'pump', 'wimp', 'despite', 'fix', 'engine', 'nasty', 'propensity', 'explosively', 'fire', 'valve', 'piston', 'cylinder', 'would', 'temporarily', 'lose', 'bit', 'oil', 'pressure', 'corner', 'solution', 'run', 'even', 'high', 'oil', 'pressure', 'change', 'gasket', 'seal', 'regularly', 'feasible', 'race', 'engine', 'single', 'overhead', 'lobe', 'pushrod', 'shaft', 'chain', 'tower', 'hydraulic', 'system', 'head', 'engine', 'come', 'almost', 'perfect', 'point', 'lobe', 'xx', 'complex', 'linkage', 'show', 'due', 'valvestems', 'complexity', 'piston', 'note', 'tip', 'truly', 'vertical', 'degree', 'angle', 'ground', 'draw', 'show', 'curvature', 'none', 'head', 'bore', 'curve', 'would', 'start', 'cylinder', 'bore', 'disappear', 'diagram', 'effect', 'pointy', 'head', 'top', 'pair', 'gently', 'pundit', 'day', 'even', 'say', 'sensuously', 'curve', 'cylinder', 'much', 'like', 'pair', 'finned', 'viking', 'horn', 'poke', 'beneath', 'gas', 'tank', 'thus', 'name', 'vik', 'moderately', 'successful', 'racer', 'lightning', 'fast', 'work', 'plague', 'problem', 'relate', 'revolutionary', 'technology', 'eventually', 'dump', 'spag', 'finally', 'realize', 'race', 'spagthorpe', 'name', 'would', 'make', 'machine', 'race', 'another', 'year', 'two', 'privateer', 'fate', 'approximately', 'six', 'viking', 'make', 'plus', 'one', 'possibly', 'two', 'springer', 'confuse', 'issue', 'one', 'old', 'spag', 'staffer', 'swear', 'machine', 'tool', 'production', 'many', 'twenty', 'thirty', 'machine', 'may', 'come', 'line', 'however', 'modern', 'record', 'production', 'viking', 'survive', 'motorcycle', 'historian', 'discount', 'story', 'ryan', 'cousinetc', 'yamaha', 'vision', 'black', 'pig', 'inverness', 'live', 'ride', 'kotrb', 'ajs', 'king', 'rat', 'work', 'dod', 'squid', 'could', 'afford', 'bike', 'flame', 'vancouver', 'bc', 'canada', 'live', 'slmr', 'slide', 'rid'] | ['must_miss', 'one_little', 'front_fender', 'make_way', 'way_back', 'try_make', 'make_go', 'problem_thing', 'ground_clearance', 'ground_clearance', 'system_use', 'one_side', 'side_effect', 'valve_damage', 'similar_system', 'system_use', 'use_new', 'car_start', 'however_use', 'solution_run', 'even_high', 'degree_angle', 'would_start', 'day_even', 'even_say', 'much_like', 'gas_tank', 'name_would', 'would_make', 'another_year', 'year_two', 'plus_one', 'issue_one', 'one_old', 'may_come', 'come_line', 'ryan_cousinetc', 'yamaha_vision', 'vision_black', 'black_pig', 'pig_inverness', 'inverness_live', 'live_ride', 'ride_kotrb', 'ajs_king', 'king_rat', 'rat_work', 'work_dod', 'dod_squid', 'squid_could', 'could_afford', 'afford_bike', 'bike_flame', 'flame_vancouver', 'vancouver_bc', 'bc_canada', 'canada_live'] | rec_motorcycles_104582 |@lemmatized dan:1 sorenson:1 rid:2 hill:1 lead:1 ds:3 house:1 encounter:1 liver:1 white:1 springer:6 spaniel:1 relation:2 softail:1 spagthorpe:4 close:1 viking:7 must:1 miss:1 article:1 one:4 little:3 illuminated:1 dragon:1 head:4 front:3 fender:1 style:1 later:1 copy:1 indian:1 round:1 side:2 cover:1 trick:2 unit:1 make:5 way:1 back:1 forty:1 fifties:1 spag:3 try:1 go:1 race:4 first:1 iteration:1 boxer:1 twin:1 similar:2 max:1 friz:1 famous:1 design:1 overhead:4 point:2 cam:3 see:1 valvetrain:1 problem:2 thing:1 ground:3 clearance:2 whatsoever:1 solution:3 curve:5 cylinder:4 bore:4 substantially:1 increase:1 motor:2 roughly:1 idea:1 except:1 gradually:1 around:1 radius:1 piston:3 loath:1 sharp:1 angled:1 turn:1 middle:1 stroke:2 engine:7 also:1 connect:1 rod:1 accomodate:1 stick:1 far:1 revolutionary:3 still:1 unique:1 system:4 use:4 clever:1 valve:7 timing:2 extrordinarily:1 linkage:2 single:2 lobe:4 require:2 drive:1 hydraulic:2 actuation:1 pressurized:1 stream:1 oil:6 power:1 waterwheel:1 keep:1 spinning:1 effect:2 rather:1 brutal:1 engineering:1 fix:2 pressure:3 come:3 normal:1 would:4 less:1 random:1 result:1 impressive:1 start:4 damage:1 hand:1 crank:1 pressurize:2 case:1 beast:1 remarkably:1 new:1 porsches:1 car:1 cage:1 however:2 electric:1 pump:1 wimp:1 despite:1 nasty:1 propensity:1 explosively:1 fire:1 temporarily:1 lose:1 bit:1 corner:1 run:1 even:2 high:1 change:1 gasket:1 seal:1 regularly:1 feasible:1 pushrod:1 shaft:1 chain:1 tower:1 almost:1 perfect:1 xx:1 complex:1 show:2 due:1 valvestems:1 complexity:1 note:1 tip:1 truly:1 vertical:1 degree:1 angle:1 draw:1 curvature:1 none:1 disappear:1 diagram:1 pointy:1 top:1 pair:2 gently:1 pundit:1 day:1 say:1 sensuously:1 much:1 like:1 finned:1 horn:1 poke:1 beneath:1 gas:1 tank:1 thus:1 name:2 vik:1 moderately:1 successful:1 racer:1 lightning:1 fast:1 work:2 plague:1 relate:1 technology:1 eventually:1 dump:1 finally:1 realize:1 machine:3 another:1 year:1 two:2 privateer:1 fate:1 approximately:1 six:1 plus:1 possibly:1 confuse:1 issue:1 old:1 staffer:1 swear:1 tool:1 production:2 many:1 twenty:1 thirty:1 may:1 line:1 modern:1 record:1 survive:1 motorcycle:1 historian:1 discount:1 story:1 ryan:1 cousinetc:1 yamaha:1 vision:1 black:1 pig:1 inverness:1 live:2 ride:1 kotrb:1 ajs:1 king:1 rat:1 dod:1 squid:1 could:1 afford:1 bike:1 flame:1 vancouver:1 bc:1 canada:1 slmr:1 slide:1 |@bigram must_miss:1 one_little:1 front_fender:1 make_way:1 way_back:1 try_make:1 make_go:1 problem_thing:1 ground_clearance:2 system_use:2 one_side:1 side_effect:1 valve_damage:1 similar_system:1 use_new:1 car_start:1 however_use:1 solution_run:1 even_high:1 degree_angle:1 would_start:1 day_even:1 even_say:1 much_like:1 gas_tank:1 name_would:1 would_make:1 another_year:1 year_two:1 plus_one:1 issue_one:1 one_old:1 may_come:1 come_line:1 ryan_cousinetc:1 yamaha_vision:1 vision_black:1 black_pig:1 pig_inverness:1 inverness_live:1 live_ride:1 ride_kotrb:1 ajs_king:1 king_rat:1 rat_work:1 work_dod:1 dod_squid:1 squid_could:1 could_afford:1 afford_bike:1 bike_flame:1 flame_vancouver:1 vancouver_bc:1 bc_canada:1 canada_live:1 |
2,109 |
Just what do gay people do that straight people don't?
Absolutely nothing.
I'm a VERY straight(as an arrow), 17-year old male that is involved in the BSA.
I don't care what gay people do among each other, as long as they don't make
passes at me or anything. At my summer camp where I work, my boss is gay.
Not in a 'pansy' way of gay (I know a few), but just 'one of the guys'.
He doesn't push anything on me, and we give him the same respect back, due
to his position.
If anything, the BSA has taught me, I don't know, tolerance or something.
Before I met this guy, I thought all gays were 'faries'. So, the BSA HAS
taught me to be an antibigot. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/51169 | 0 | alt_atheism_51169 | [('just', 'RB'), ('what', 'WP'), ('do', 'VBP'), ('gay', 'JJ'), ('people', 'NNS'), ('do', 'VBP'), ('that', 'IN'), ('straight', 'JJ'), ('people', 'NNS'), ('don', 'VBP'), ('absolutely', 'RB'), ('nothing', 'NN'), ('very', 'RB'), ('straight', 'RB'), ('as', 'IN'), ('an', 'DT'), ('arrow', 'NN'), ('),', 'NN'), ('17', 'CD'), ('year', 'NN'), ('old', 'JJ'), ('male', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('involved', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('bsa', 'NN'), ('don', 'NN'), ('care', 'NN'), ('what', 'WP'), ('gay', 'NN'), ('people', 'NNS'), ('do', 'VBP'), ('among', 'IN'), ('each', 'DT'), ('other', 'JJ'), ('as', 'RB'), ('long', 'RB'), ('as', 'IN'), ('they', 'PRP'), ('don', 'VBP'), ('make', 'VBP'), ('passes', 'NNS'), ('at', 'IN'), ('me', 'PRP'), ('or', 'CC'), ('anything', 'NN'), ('at', 'IN'), ('my', 'PRP$'), ('summer', 'NN'), ('camp', 'NN'), ('where', 'WRB'), ('work', 'NN'), ('my', 'PRP$'), ('boss', 'NN'), ('is', 'VBZ'), ('gay', 'JJ'), ('not', 'RB'), ('in', 'IN'), ('pansy', 'JJ'), ('way', 'NN'), ('of', 'IN'), ('gay', 'NN'), ('know', 'VBP'), ('few', 'JJ'), ('),', 'NNS'), ('but', 'CC'), ('just', 'RB'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('guys', 'NNS'), ("'.", 'POS'), ('he', 'PRP'), ('doesn', 'VBZ'), ('push', 'JJ'), ('anything', 'NN'), ('on', 'IN'), ('me', 'PRP'), ('and', 'CC'), ('we', 'PRP'), ('give', 'VBP'), ('him', 'PRP'), ('the', 'DT'), ('same', 'JJ'), ('respect', 'NN'), ('back', 'RB'), ('due', 'JJ'), ('to', 'TO'), ('his', 'PRP$'), ('position', 'NN'), ('if', 'IN'), ('anything', 'NN'), ('the', 'DT'), ('bsa', 'NN'), ('has', 'VBZ'), ('taught', 'VBN'), ('me', 'PRP'), ('don', 'VB'), ('know', 'JJ'), ('tolerance', 'NN'), ('or', 'CC'), ('something', 'NN'), ('before', 'IN'), ('met', 'VBD'), ('this', 'DT'), ('guy', 'NN'), ('thought', 'VBD'), ('all', 'DT'), ('gays', 'NNS'), ('were', 'VBD'), ('faries', 'NNS'), ("'.", "''"), ('so', 'IN'), ('the', 'DT'), ('bsa', 'NN'), ('has', 'VBZ'), ('taught', 'VBN'), ('me', 'PRP'), ('to', 'TO'), ('be', 'VB'), ('an', 'DT'), ('antibigot', 'NN')] | ['gay', 'people', 'straight', 'people', 'absolutely', 'nothing', 'straight', 'arrow', 'year', 'old', 'male', 'involve', 'bsa', 'care', 'gay', 'people', 'among', 'long', 'make', 'pass', 'anything', 'summer', 'camp', 'work', 'bos', 'gay', 'pansy', 'way', 'gay', 'know', 'one', 'guy', 'push', 'anything', 'give', 'respect', 'back', 'due', 'position', 'anything', 'bsa', 'teach', 'know', 'tolerance', 'something', 'meet', 'guy', 'think', 'gay', 'faries', 'bsa', 'teach', 'antibigot'] | ['gay_people', 'absolutely_nothing', 'year_old', 'gay_people', 'long_make', 'know_one', 'one_guy', 'anything_give', 'give_respect', 'guy_think'] | alt_atheism_51169 |@lemmatized gay:5 people:3 straight:2 absolutely:1 nothing:1 arrow:1 year:1 old:1 male:1 involve:1 bsa:3 care:1 among:1 long:1 make:1 pass:1 anything:3 summer:1 camp:1 work:1 bos:1 pansy:1 way:1 know:2 one:1 guy:2 push:1 give:1 respect:1 back:1 due:1 position:1 teach:2 tolerance:1 something:1 meet:1 think:1 faries:1 antibigot:1 |@bigram gay_people:2 absolutely_nothing:1 year_old:1 long_make:1 know_one:1 one_guy:1 anything_give:1 give_respect:1 guy_think:1 |
2,110 | it may be a little late to reply to your tirade and also on an inaapropriate
board but along with all of the so called great things the white male has done they have also contributed to society by means of mass genocide, the theft of
ideas and cultures, creating and the perptration of historical lies throughouttime among many other horrible activities.
but every culture has its upside and its downside. it seems to me that the
white male (must be extremely ignorant to qualify for the following - if
you're not disregard) and western culture are the only things that look to
actively classify things as good or bad, worthy or unworthy (ya dig)
it can be seen with slavery and the manipulation and destruction of the
american indians civilization. nothing but selfish acts that benefit one
group of people (and not even their women get or got respected or regarded as
equal - ain't that some stuff)
white men - not being specific - but in a lot of cases are just wack or have
wack conceptions of how the world is to serve their purpose.
just look at david koresh - throughout history (i may be shortsighted on this one so excuse my predjudiced ignorance) only white men associate themselves withbeing GOD. no other culture is ignorant or arrogant enough to assume such a
position. and then to manipulate and mislead all those people.
hmmm... i'd say look in your history books but since it seems that history
has been written to glorify the exploits of white men you'd only find lies.
awww that's enough already from me because this has nothing to do with sex or this board. if ya'd like to continue this discussion e-mail me and we can
compare and contrast ideas
i like conflict - it's educational when the
communcation is good......................
my $.02 worth
(i apologize to those who thought this was going to be about SEX but i was
prompted by a response i found up here) | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.misc/176985 | 18 | talk_politics_misc_176985 | [('it', 'PRP'), ('may', 'MD'), ('be', 'VB'), ('little', 'JJ'), ('late', 'JJ'), ('to', 'TO'), ('reply', 'VB'), ('to', 'TO'), ('your', 'PRP$'), ('tirade', 'NN'), ('and', 'CC'), ('also', 'RB'), ('on', 'IN'), ('an', 'DT'), ('inaapropriate', 'JJ'), ('board', 'NN'), ('but', 'CC'), ('along', 'IN'), ('with', 'IN'), ('all', 'DT'), ('of', 'IN'), ('the', 'DT'), ('so', 'RB'), ('called', 'JJ'), ('great', 'JJ'), ('things', 'NNS'), ('the', 'DT'), ('white', 'JJ'), ('male', 'NN'), ('has', 'VBZ'), ('done', 'VBN'), ('they', 'PRP'), ('have', 'VBP'), ('also', 'RB'), ('contributed', 'VBN'), ('to', 'TO'), ('society', 'VB'), ('by', 'IN'), ('means', 'NNS'), ('of', 'IN'), ('mass', 'NN'), ('genocide', 'VBP'), ('the', 'DT'), ('theft', 'NN'), ('of', 'IN'), ('ideas', 'NNS'), ('and', 'CC'), ('cultures', 'NNS'), ('creating', 'VBG'), ('and', 'CC'), ('the', 'DT'), ('perptration', 'NN'), ('of', 'IN'), ('historical', 'JJ'), ('lies', 'NNS'), ('throughouttime', 'VBP'), ('among', 'IN'), ('many', 'JJ'), ('other', 'JJ'), ('horrible', 'JJ'), ('activities', 'NNS'), ('but', 'CC'), ('every', 'DT'), ('culture', 'NN'), ('has', 'VBZ'), ('its', 'PRP$'), ('upside', 'JJ'), ('and', 'CC'), ('its', 'PRP$'), ('downside', 'NN'), ('it', 'PRP'), ('seems', 'VBZ'), ('to', 'TO'), ('me', 'PRP'), ('that', 'IN'), ('the', 'DT'), ('white', 'JJ'), ('male', 'NN'), ('must', 'MD'), ('be', 'VB'), ('extremely', 'RB'), ('ignorant', 'JJ'), ('to', 'TO'), ('qualify', 'VB'), ('for', 'IN'), ('the', 'DT'), ('following', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('re', 'VBP'), ('not', 'RB'), ('disregard', 'RB'), ('and', 'CC'), ('western', 'JJ'), ('culture', 'NN'), ('are', 'VBP'), ('the', 'DT'), ('only', 'JJ'), ('things', 'NNS'), ('that', 'WDT'), ('look', 'VBP'), ('to', 'TO'), ('actively', 'RB'), ('classify', 'VB'), ('things', 'NNS'), ('as', 'IN'), ('good', 'JJ'), ('or', 'CC'), ('bad', 'JJ'), ('worthy', 'JJ'), ('or', 'CC'), ('unworthy', 'JJ'), ('ya', 'NN'), ('dig', 'IN'), ('it', 'PRP'), ('can', 'MD'), ('be', 'VB'), ('seen', 'VBN'), ('with', 'IN'), ('slavery', 'NN'), ('and', 'CC'), ('the', 'DT'), ('manipulation', 'NN'), ('and', 'CC'), ('destruction', 'NN'), ('of', 'IN'), ('the', 'DT'), ('american', 'JJ'), ('indians', 'NNPS'), ('civilization', 'NN'), ('nothing', 'NN'), ('but', 'CC'), ('selfish', 'JJ'), ('acts', 'NNS'), ('that', 'WDT'), ('benefit', 'VBP'), ('one', 'CD'), ('group', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('and', 'CC'), ('not', 'RB'), ('even', 'RB'), ('their', 'PRP$'), ('women', 'NNS'), ('get', 'VBP'), ('or', 'CC'), ('got', 'VBD'), ('respected', 'VBN'), ('or', 'CC'), ('regarded', 'VBN'), ('as', 'IN'), ('equal', 'JJ'), ('ain', 'NN'), ('that', 'IN'), ('some', 'DT'), ('stuff', 'JJ'), ('white', 'JJ'), ('men', 'NNS'), ('not', 'RB'), ('being', 'VBG'), ('specific', 'JJ'), ('but', 'CC'), ('in', 'IN'), ('lot', 'NN'), ('of', 'IN'), ('cases', 'NNS'), ('are', 'VBP'), ('just', 'RB'), ('wack', 'RB'), ('or', 'CC'), ('have', 'VBP'), ('wack', 'VBN'), ('conceptions', 'NNS'), ('of', 'IN'), ('how', 'WRB'), ('the', 'DT'), ('world', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('serve', 'VB'), ('their', 'PRP$'), ('purpose', 'NN'), ('just', 'RB'), ('look', 'NN'), ('at', 'IN'), ('david', 'NN'), ('koresh', 'NN'), ('throughout', 'IN'), ('history', 'NN'), ('may', 'MD'), ('be', 'VB'), ('shortsighted', 'VBN'), ('on', 'IN'), ('this', 'DT'), ('one', 'CD'), ('so', 'RB'), ('excuse', 'VB'), ('my', 'PRP$'), ('predjudiced', 'JJ'), ('ignorance', 'NN'), ('only', 'RB'), ('white', 'JJ'), ('men', 'NNS'), ('associate', 'VBP'), ('themselves', 'PRP'), ('withbeing', 'VBG'), ('god', 'JJ'), ('no', 'DT'), ('other', 'JJ'), ('culture', 'NN'), ('is', 'VBZ'), ('ignorant', 'JJ'), ('or', 'CC'), ('arrogant', 'JJ'), ('enough', 'JJ'), ('to', 'TO'), ('assume', 'VB'), ('such', 'JJ'), ('position', 'NN'), ('and', 'CC'), ('then', 'RB'), ('to', 'TO'), ('manipulate', 'VB'), ('and', 'CC'), ('mislead', 'VB'), ('all', 'DT'), ('those', 'DT'), ('people', 'NNS'), ('hmmm', 'VBP'), ('...', ':'), ('say', 'VBP'), ('look', 'VBP'), ('in', 'IN'), ('your', 'PRP$'), ('history', 'NN'), ('books', 'NNS'), ('but', 'CC'), ('since', 'IN'), ('it', 'PRP'), ('seems', 'VBZ'), ('that', 'IN'), ('history', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('written', 'VBN'), ('to', 'TO'), ('glorify', 'VB'), ('the', 'DT'), ('exploits', 'NNS'), ('of', 'IN'), ('white', 'JJ'), ('men', 'NNS'), ('you', 'PRP'), ('only', 'RB'), ('find', 'VB'), ('lies', 'VBZ'), ('awww', 'RP'), ('that', 'IN'), ('enough', 'JJ'), ('already', 'RB'), ('from', 'IN'), ('me', 'PRP'), ('because', 'IN'), ('this', 'DT'), ('has', 'VBZ'), ('nothing', 'NN'), ('to', 'TO'), ('do', 'VB'), ('with', 'IN'), ('sex', 'NN'), ('or', 'CC'), ('this', 'DT'), ('board', 'NN'), ('if', 'IN'), ('ya', 'NNS'), ('like', 'IN'), ('to', 'TO'), ('continue', 'VB'), ('this', 'DT'), ('discussion', 'NN'), ('mail', 'NN'), ('me', 'PRP'), ('and', 'CC'), ('we', 'PRP'), ('can', 'MD'), ('compare', 'VB'), ('and', 'CC'), ('contrast', 'VB'), ('ideas', 'NNS'), ('like', 'IN'), ('conflict', 'NN'), ('it', 'PRP'), ('educational', 'JJ'), ('when', 'WRB'), ('the', 'DT'), ('communcation', 'NN'), ('is', 'VBZ'), ('good', 'JJ'), ('......................', 'NNS'), ('my', 'PRP$'), ('$.', 'JJ'), ('02', 'CD'), ('worth', 'NN'), ('apologize', 'NN'), ('to', 'TO'), ('those', 'DT'), ('who', 'WP'), ('thought', 'VBD'), ('this', 'DT'), ('was', 'VBD'), ('going', 'VBG'), ('to', 'TO'), ('be', 'VB'), ('about', 'IN'), ('sex', 'NN'), ('but', 'CC'), ('was', 'VBD'), ('prompted', 'VBN'), ('by', 'IN'), ('response', 'NN'), ('found', 'VBD'), ('up', 'RB'), ('here', 'RB')] | ['may', 'little', 'late', 'reply', 'tirade', 'also', 'inaapropriate', 'board', 'along', 'called', 'great', 'thing', 'white', 'male', 'also', 'contribute', 'society', 'mean', 'mass', 'genocide', 'theft', 'idea', 'culture', 'create', 'perptration', 'historical', 'lie', 'throughouttime', 'among', 'many', 'horrible', 'activity', 'every', 'culture', 'upside', 'downside', 'seem', 'white', 'male', 'must', 'extremely', 'ignorant', 'qualify', 'following', 'disregard', 'western', 'culture', 'thing', 'look', 'actively', 'classify', 'thing', 'good', 'bad', 'worthy', 'unworthy', 'ya', 'dig', 'see', 'slavery', 'manipulation', 'destruction', 'american', 'indian', 'civilization', 'nothing', 'selfish', 'act', 'benefit', 'one', 'group', 'people', 'even', 'woman', 'get', 'get', 'respect', 'regard', 'equal', 'stuff', 'white', 'men', 'specific', 'lot', 'case', 'wack', 'wack', 'conception', 'world', 'serve', 'purpose', 'look', 'david', 'koresh', 'throughout', 'history', 'may', 'shortsighted', 'one', 'excuse', 'predjudiced', 'ignorance', 'white', 'men', 'associate', 'withbeing', 'god', 'culture', 'ignorant', 'arrogant', 'enough', 'assume', 'position', 'manipulate', 'mislead', 'people', 'hmmm', 'say', 'look', 'history', 'book', 'since', 'seem', 'history', 'write', 'glorify', 'exploit', 'white', 'men', 'find', 'lie', 'awww', 'enough', 'already', 'nothing', 'sex', 'board', 'ya', 'like', 'continue', 'discussion', 'mail', 'compare', 'contrast', 'idea', 'like', 'conflict', 'educational', 'communcation', 'good', 'worth', 'apologize', 'think', 'go', 'sex', 'prompt', 'response', 'find'] | ['great_thing', 'white_male', 'also_contribute', 'among_many', 'white_male', 'thing_look', 'thing_good', 'good_bad', 'american_indian', 'one_group', 'group_people', 'people_even', 'get_get', 'white_men', 'serve_purpose', 'david_koresh', 'throughout_history', 'white_men', 'say_look', 'look_history', 'history_book', 'since_seem', 'white_men', 'continue_discussion', 'idea_like', 'think_go'] | talk_politics_misc_176985 |@lemmatized may:2 little:1 late:1 reply:1 tirade:1 also:2 inaapropriate:1 board:2 along:1 called:1 great:1 thing:3 white:5 male:2 contribute:1 society:1 mean:1 mass:1 genocide:1 theft:1 idea:2 culture:4 create:1 perptration:1 historical:1 lie:2 throughouttime:1 among:1 many:1 horrible:1 activity:1 every:1 upside:1 downside:1 seem:2 must:1 extremely:1 ignorant:2 qualify:1 following:1 disregard:1 western:1 look:3 actively:1 classify:1 good:2 bad:1 worthy:1 unworthy:1 ya:2 dig:1 see:1 slavery:1 manipulation:1 destruction:1 american:1 indian:1 civilization:1 nothing:2 selfish:1 act:1 benefit:1 one:2 group:1 people:2 even:1 woman:1 get:2 respect:1 regard:1 equal:1 stuff:1 men:3 specific:1 lot:1 case:1 wack:2 conception:1 world:1 serve:1 purpose:1 david:1 koresh:1 throughout:1 history:3 shortsighted:1 excuse:1 predjudiced:1 ignorance:1 associate:1 withbeing:1 god:1 arrogant:1 enough:2 assume:1 position:1 manipulate:1 mislead:1 hmmm:1 say:1 book:1 since:1 write:1 glorify:1 exploit:1 find:2 awww:1 already:1 sex:2 like:2 continue:1 discussion:1 mail:1 compare:1 contrast:1 conflict:1 educational:1 communcation:1 worth:1 apologize:1 think:1 go:1 prompt:1 response:1 |@bigram great_thing:1 white_male:2 also_contribute:1 among_many:1 thing_look:1 thing_good:1 good_bad:1 american_indian:1 one_group:1 group_people:1 people_even:1 get_get:1 white_men:3 serve_purpose:1 david_koresh:1 throughout_history:1 say_look:1 look_history:1 history_book:1 since_seem:1 continue_discussion:1 idea_like:1 think_go:1 |
2,111 |
Yes, and I do everyone else. Why, you may wonder, don't I do 'Fred'?
Well, that would just be too *obvious*, wouldn't it? Oh yeah, this
isn't my real name, either. I'm actually Elvis. Or maybe a lemur; I
sometimes have difficulty telling which is which.
--
"Insisting on perfect safety is for people who don't have the balls to live
in the real world." -- Mary Shafer, NASA Ames Dryden | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/61083 | 14 | sci_space_61083 | [('yes', 'NNS'), ('and', 'CC'), ('do', 'VBP'), ('everyone', 'NN'), ('else', 'RB'), ('why', 'WRB'), ('you', 'PRP'), ('may', 'MD'), ('wonder', 'VB'), ('don', 'NNS'), ('do', 'VBP'), ('fred', 'VBN'), ("'?", 'NNP'), ('well', 'RB'), ('that', 'RB'), ('would', 'MD'), ('just', 'RB'), ('be', 'VB'), ('too', 'RB'), ('obvious', 'JJ'), ('*,', 'NN'), ('wouldn', 'VBD'), ('it', 'PRP'), ('oh', 'RP'), ('yeah', 'RBR'), ('this', 'DT'), ('isn', 'NN'), ('my', 'PRP$'), ('real', 'JJ'), ('name', 'NN'), ('either', 'CC'), ('actually', 'RB'), ('elvis', 'VBZ'), ('or', 'CC'), ('maybe', 'RB'), ('lemur', 'JJ'), ('sometimes', 'RB'), ('have', 'VBP'), ('difficulty', 'NN'), ('telling', 'VBG'), ('which', 'WDT'), ('is', 'VBZ'), ('which', 'WDT'), ('--', ':'), ('insisting', 'VBG'), ('on', 'IN'), ('perfect', 'JJ'), ('safety', 'NN'), ('is', 'VBZ'), ('for', 'IN'), ('people', 'NNS'), ('who', 'WP'), ('don', 'VBP'), ('have', 'VBP'), ('the', 'DT'), ('balls', 'NNS'), ('to', 'TO'), ('live', 'VB'), ('in', 'IN'), ('the', 'DT'), ('real', 'JJ'), ('world', 'NN'), ('."', 'NN'), ('--', ':'), ('mary', 'JJ'), ('shafer', 'NN'), ('nasa', 'JJ'), ('ames', 'NNS'), ('dryden', 'VBP')] | ['yes', 'everyone', 'else', 'may', 'wonder', 'fred', 'well', 'would', 'obvious', 'oh', 'yeah', 'real', 'name', 'either', 'actually', 'elvis', 'maybe', 'lemur', 'sometimes', 'difficulty', 'tell', 'insist', 'perfect', 'safety', 'people', 'ball', 'live', 'real', 'world', 'mary', 'shafer', 'nasa', 'ames', 'dryden'] | ['everyone_else', 'well_would', 'oh_yeah', 'real_name', 'insist_perfect', 'perfect_safety', 'safety_people', 'people_ball', 'ball_live', 'live_real', 'real_world', 'world_mary', 'mary_shafer', 'shafer_nasa', 'nasa_ames', 'ames_dryden'] | sci_space_61083 |@lemmatized yes:1 everyone:1 else:1 may:1 wonder:1 fred:1 well:1 would:1 obvious:1 oh:1 yeah:1 real:2 name:1 either:1 actually:1 elvis:1 maybe:1 lemur:1 sometimes:1 difficulty:1 tell:1 insist:1 perfect:1 safety:1 people:1 ball:1 live:1 world:1 mary:1 shafer:1 nasa:1 ames:1 dryden:1 |@bigram everyone_else:1 well_would:1 oh_yeah:1 real_name:1 insist_perfect:1 perfect_safety:1 safety_people:1 people_ball:1 ball_live:1 live_real:1 real_world:1 world_mary:1 mary_shafer:1 shafer_nasa:1 nasa_ames:1 ames_dryden:1 |
2,112 |
Major league baseball has told the Blue Jays and the Expos not to
sign Oscar Linares (I think that is his name)
...Canada does not have the restrictions against
Cubans that the US has and other major league teams have told the
Canadian teams that they would be very unhappy if the Expos or the
Blue Jays would do this. Cubans players would not have to defect
to play in Canada and could play the 81 home games for the Expos
and Blue Jays without any trouble. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/52641 | 10 | rec_sport_hockey_52641 | [('major', 'JJ'), ('league', 'NN'), ('baseball', 'NN'), ('has', 'VBZ'), ('told', 'VBN'), ('the', 'DT'), ('blue', 'NN'), ('jays', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('expos', 'NN'), ('not', 'RB'), ('to', 'TO'), ('sign', 'VB'), ('oscar', 'NN'), ('linares', 'NNS'), ('think', 'VBP'), ('that', 'DT'), ('is', 'VBZ'), ('his', 'PRP$'), ('name', 'NN'), ('...', ':'), ('canada', 'NN'), ('does', 'VBZ'), ('not', 'RB'), ('have', 'VB'), ('the', 'DT'), ('restrictions', 'NNS'), ('against', 'IN'), ('cubans', 'NNS'), ('that', 'IN'), ('the', 'DT'), ('us', 'PRP'), ('has', 'VBZ'), ('and', 'CC'), ('other', 'JJ'), ('major', 'JJ'), ('league', 'NN'), ('teams', 'NNS'), ('have', 'VBP'), ('told', 'VBN'), ('the', 'DT'), ('canadian', 'JJ'), ('teams', 'NNS'), ('that', 'IN'), ('they', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('very', 'RB'), ('unhappy', 'JJ'), ('if', 'IN'), ('the', 'DT'), ('expos', 'NN'), ('or', 'CC'), ('the', 'DT'), ('blue', 'JJ'), ('jays', 'NNS'), ('would', 'MD'), ('do', 'VB'), ('this', 'DT'), ('cubans', 'VBZ'), ('players', 'NNS'), ('would', 'MD'), ('not', 'RB'), ('have', 'VB'), ('to', 'TO'), ('defect', 'VB'), ('to', 'TO'), ('play', 'VB'), ('in', 'IN'), ('canada', 'NN'), ('and', 'CC'), ('could', 'MD'), ('play', 'VB'), ('the', 'DT'), ('81', 'CD'), ('home', 'NN'), ('games', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('expos', 'NN'), ('and', 'CC'), ('blue', 'JJ'), ('jays', 'NNS'), ('without', 'IN'), ('any', 'DT'), ('trouble', 'NN')] | ['major', 'league', 'baseball', 'tell', 'blue', 'jay', 'expo', 'sign', 'oscar', 'linares', 'think', 'name', 'canada', 'restriction', 'cuban', 'u', 'major', 'league', 'team', 'tell', 'canadian', 'team', 'would', 'unhappy', 'expo', 'blue', 'jay', 'would', 'cubans', 'player', 'would', 'defect', 'play', 'canada', 'could', 'play', 'home', 'game', 'expo', 'blue', 'jay', 'without', 'trouble'] | ['major_league', 'league_baseball', 'blue_jay', 'think_name', 'major_league', 'league_team', 'canadian_team', 'team_would', 'blue_jay', 'player_would', 'could_play', 'play_home', 'home_game', 'blue_jay'] | rec_sport_hockey_52641 |@lemmatized major:2 league:2 baseball:1 tell:2 blue:3 jay:3 expo:3 sign:1 oscar:1 linares:1 think:1 name:1 canada:2 restriction:1 cuban:1 u:1 team:2 canadian:1 would:3 unhappy:1 cubans:1 player:1 defect:1 play:2 could:1 home:1 game:1 without:1 trouble:1 |@bigram major_league:2 league_baseball:1 blue_jay:3 think_name:1 league_team:1 canadian_team:1 team_would:1 player_would:1 could_play:1 play_home:1 home_game:1 |
2,113 |
(WEBSTER: myth: "a traditional or legendary story...
...a belief...whose truth is accepted uncritically.")
How does that qualify?
Indeed, it's almost oxymoronic...a rather amusing instance.
I've found that most atheists hold almost no atheist-views as
"accepted uncritically," especially the few that are legend.
Many are trying to explain basic truths, as myths do, but
they don't meet the other criterions.
Also...
You accuse him of referencing mythology, then you procede to
launch your own xtian mythology. (This time meeting all the
requirements of myth.)
Ah, but not everyone "knows" that god exists. So you have
a fallacy.
And that makes it true? Holding with the Bible rules out controversy?
Read the FAQ. If you've read it, you missed something, so re-read.
(Not a bad suggestion for anyone...I re-read it just before this.)
...should I repeat what I wrote above for the sake of getting
it across? You may trust the Bible, but your trusting it doesn't
make it any more credible to me.
If the Bible says that everyone knows, that's clearly reason
to doubt the Bible, because not everyone "knows" your alleged
god's alleged existance.
1) No, they don't have to ignore the Bible. The Bible is far
from universally accepted. The Bible is NOT a proof of god;
it is only a proof that some people have thought that there
was a god. (Or does it prove even that? They might have been
writing it as series of fiction short-stories. As in the
case of Dionetics.) Assuming the writers believed it, the
only thing it could possibly prove is that they believed it.
And that's ignoring the problem of whether or not all the
interpretations and Biblical-philosophers were correct.
2) There are people who have truly never heard of the Bible.
3) Again, read the FAQ.
Bzzt...wrong answer!
Gravity is directly THERE. It doesn't stop exerting a direct and
rationally undeniable influence if you ignore it. God, on the
other hand, doesn't generally show up in the supermarket, except
on the tabloids. God doesn't exert a rationally undeniable influence.
Gravity is obvious; gods aren't.
No, human reason hasn't always come back to the existance of
"God"; it has usually come back to the existance of "god".
In other words, it doesn't generally come back to the xtian
god, it comes back to whether there is any god. And, in much
of oriental philosophic history, it generally doesn't pop up as
the idea of a god so much as the question of what natural forces
are and which ones are out there. From a world-wide view,
human nature just makes us wonder how the universe came to
be and/or what force(s) are currently in control. A natural
tendancy to believe in "God" only exists in religious wishful
thinking.
Xtianity is no more reasonable than most other religions, and
it's reasonableness certainly doesn't merit eminence.
Divine justice...well, it only seems just to those who already
believe in the divinity.
First, not all atheists believe the same things about human
nature. Second, whether most atheists are correct or not,
YOU certainly are not correct on human nature. You are, at
the least, basing your views on a completely eurocentric
approach. Try looking at the outside world as well when
you attempt to sum up all of humanity. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/53298 | 0 | alt_atheism_53298 | [('webster', 'NN'), ('myth', 'JJ'), ('traditional', 'JJ'), ('or', 'CC'), ('legendary', 'JJ'), ('story', 'NN'), ('...', ':'), ('...', ':'), ('belief', 'NN'), ('...', ':'), ('whose', 'WP$'), ('truth', 'NN'), ('is', 'VBZ'), ('accepted', 'VBN'), ('uncritically', 'RB'), ('.")', 'JJ'), ('how', 'WRB'), ('does', 'VBZ'), ('that', 'IN'), ('qualify', 'VB'), ('indeed', 'RB'), ('it', 'PRP'), ('almost', 'RB'), ('oxymoronic', 'JJ'), ('...', ':'), ('rather', 'RB'), ('amusing', 'VBG'), ('instance', 'NN'), ('ve', 'NN'), ('found', 'VBD'), ('that', 'IN'), ('most', 'JJS'), ('atheists', 'NNS'), ('hold', 'VBP'), ('almost', 'RB'), ('no', 'DT'), ('atheist', 'JJ'), ('views', 'NNS'), ('as', 'IN'), ('accepted', 'VBN'), ('uncritically', 'RB'), (',"', 'JJ'), ('especially', 'RB'), ('the', 'DT'), ('few', 'JJ'), ('that', 'WDT'), ('are', 'VBP'), ('legend', 'JJ'), ('many', 'JJ'), ('are', 'VBP'), ('trying', 'VBG'), ('to', 'TO'), ('explain', 'VB'), ('basic', 'JJ'), ('truths', 'NNS'), ('as', 'IN'), ('myths', 'NNS'), ('do', 'VBP'), ('but', 'CC'), ('they', 'PRP'), ('don', 'VBP'), ('meet', 'VB'), ('the', 'DT'), ('other', 'JJ'), ('criterions', 'NNS'), ('also', 'RB'), ('...', ':'), ('you', 'PRP'), ('accuse', 'VBP'), ('him', 'PRP'), ('of', 'IN'), ('referencing', 'VBG'), ('mythology', 'NN'), ('then', 'RB'), ('you', 'PRP'), ('procede', 'VBP'), ('to', 'TO'), ('launch', 'VB'), ('your', 'PRP$'), ('own', 'JJ'), ('xtian', 'JJ'), ('mythology', 'NN'), ('this', 'DT'), ('time', 'NN'), ('meeting', 'VBG'), ('all', 'PDT'), ('the', 'DT'), ('requirements', 'NNS'), ('of', 'IN'), ('myth', 'NN'), ('.)', 'NNP'), ('ah', 'NN'), ('but', 'CC'), ('not', 'RB'), ('everyone', 'NN'), ('knows', 'VBZ'), ('that', 'IN'), ('god', 'NN'), ('exists', 'VBZ'), ('so', 'RB'), ('you', 'PRP'), ('have', 'VBP'), ('fallacy', 'VBN'), ('and', 'CC'), ('that', 'IN'), ('makes', 'VBZ'), ('it', 'PRP'), ('true', 'JJ'), ('holding', 'VBG'), ('with', 'IN'), ('the', 'DT'), ('bible', 'JJ'), ('rules', 'NNS'), ('out', 'RP'), ('controversy', 'NN'), ('read', 'VBD'), ('the', 'DT'), ('faq', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('ve', 'VBP'), ('read', 'VB'), ('it', 'PRP'), ('you', 'PRP'), ('missed', 'VBD'), ('something', 'NN'), ('so', 'RB'), ('re', 'JJ'), ('read', 'NN'), ('not', 'RB'), ('bad', 'JJ'), ('suggestion', 'NN'), ('for', 'IN'), ('anyone', 'NN'), ('...', ':'), ('re', 'VBZ'), ('read', 'VB'), ('it', 'PRP'), ('just', 'RB'), ('before', 'IN'), ('this', 'DT'), ('.)', 'NN'), ('...', ':'), ('should', 'MD'), ('repeat', 'VB'), ('what', 'WP'), ('wrote', 'VBD'), ('above', 'IN'), ('for', 'IN'), ('the', 'DT'), ('sake', 'NN'), ('of', 'IN'), ('getting', 'VBG'), ('it', 'PRP'), ('across', 'IN'), ('you', 'PRP'), ('may', 'MD'), ('trust', 'VB'), ('the', 'DT'), ('bible', 'JJ'), ('but', 'CC'), ('your', 'PRP$'), ('trusting', 'VBG'), ('it', 'PRP'), ('doesn', 'JJ'), ('make', 'VB'), ('it', 'PRP'), ('any', 'DT'), ('more', 'RBR'), ('credible', 'JJ'), ('to', 'TO'), ('me', 'PRP'), ('if', 'IN'), ('the', 'DT'), ('bible', 'JJ'), ('says', 'VBZ'), ('that', 'IN'), ('everyone', 'NN'), ('knows', 'VBZ'), ('that', 'IN'), ('clearly', 'RB'), ('reason', 'NN'), ('to', 'TO'), ('doubt', 'VB'), ('the', 'DT'), ('bible', 'NN'), ('because', 'IN'), ('not', 'RB'), ('everyone', 'NN'), ('knows', 'VBZ'), ('your', 'PRP$'), ('alleged', 'JJ'), ('god', 'NN'), ('alleged', 'VBD'), ('existance', 'NN'), ('no', 'DT'), ('they', 'PRP'), ('don', 'VBP'), ('have', 'VBP'), ('to', 'TO'), ('ignore', 'VB'), ('the', 'DT'), ('bible', 'JJ'), ('the', 'DT'), ('bible', 'NN'), ('is', 'VBZ'), ('far', 'RB'), ('from', 'IN'), ('universally', 'RB'), ('accepted', 'VBN'), ('the', 'DT'), ('bible', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('proof', 'JJ'), ('of', 'IN'), ('god', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('only', 'RB'), ('proof', 'NN'), ('that', 'IN'), ('some', 'DT'), ('people', 'NNS'), ('have', 'VBP'), ('thought', 'VBN'), ('that', 'IN'), ('there', 'EX'), ('was', 'VBD'), ('god', 'NN'), ('or', 'CC'), ('does', 'VBZ'), ('it', 'PRP'), ('prove', 'VB'), ('even', 'RB'), ('that', 'IN'), ('they', 'PRP'), ('might', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('writing', 'VBG'), ('it', 'PRP'), ('as', 'IN'), ('series', 'NN'), ('of', 'IN'), ('fiction', 'NN'), ('short', 'JJ'), ('stories', 'NNS'), ('as', 'IN'), ('in', 'IN'), ('the', 'DT'), ('case', 'NN'), ('of', 'IN'), ('dionetics', 'NNS'), ('.)', 'JJ'), ('assuming', 'VBG'), ('the', 'DT'), ('writers', 'NNS'), ('believed', 'VBD'), ('it', 'PRP'), ('the', 'DT'), ('only', 'JJ'), ('thing', 'NN'), ('it', 'PRP'), ('could', 'MD'), ('possibly', 'RB'), ('prove', 'VB'), ('is', 'VBZ'), ('that', 'IN'), ('they', 'PRP'), ('believed', 'VBD'), ('it', 'PRP'), ('and', 'CC'), ('that', 'IN'), ('ignoring', 'VBG'), ('the', 'DT'), ('problem', 'NN'), ('of', 'IN'), ('whether', 'IN'), ('or', 'CC'), ('not', 'RB'), ('all', 'PDT'), ('the', 'DT'), ('interpretations', 'NNS'), ('and', 'CC'), ('biblical', 'JJ'), ('philosophers', 'NNS'), ('were', 'VBD'), ('correct', 'JJ'), ('there', 'EX'), ('are', 'VBP'), ('people', 'NNS'), ('who', 'WP'), ('have', 'VBP'), ('truly', 'RB'), ('never', 'RB'), ('heard', 'NN'), ('of', 'IN'), ('the', 'DT'), ('bible', 'JJ'), ('again', 'RB'), ('read', 'VBP'), ('the', 'DT'), ('faq', 'NN'), ('bzzt', 'NN'), ('...', ':'), ('wrong', 'JJ'), ('answer', 'NN'), ('gravity', 'NN'), ('is', 'VBZ'), ('directly', 'RB'), ('there', 'EX'), ('it', 'PRP'), ('doesn', 'VBZ'), ('stop', 'JJ'), ('exerting', 'VBG'), ('direct', 'JJ'), ('and', 'CC'), ('rationally', 'RB'), ('undeniable', 'JJ'), ('influence', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('ignore', 'VBP'), ('it', 'PRP'), ('god', 'VBZ'), ('on', 'IN'), ('the', 'DT'), ('other', 'JJ'), ('hand', 'NN'), ('doesn', 'NNS'), ('generally', 'RB'), ('show', 'VBP'), ('up', 'RP'), ('in', 'IN'), ('the', 'DT'), ('supermarket', 'NN'), ('except', 'IN'), ('on', 'IN'), ('the', 'DT'), ('tabloids', 'NNS'), ('god', 'VBP'), ('doesn', 'NN'), ('exert', 'VBP'), ('rationally', 'RB'), ('undeniable', 'JJ'), ('influence', 'NN'), ('gravity', 'NN'), ('is', 'VBZ'), ('obvious', 'JJ'), ('gods', 'NNS'), ('aren', 'VBP'), ('no', 'DT'), ('human', 'JJ'), ('reason', 'NN'), ('hasn', 'NN'), ('always', 'RB'), ('come', 'VBN'), ('back', 'RB'), ('to', 'TO'), ('the', 'DT'), ('existance', 'NN'), ('of', 'IN'), ('god', 'NN'), ('";', 'NN'), ('it', 'PRP'), ('has', 'VBZ'), ('usually', 'RB'), ('come', 'VBN'), ('back', 'RB'), ('to', 'TO'), ('the', 'DT'), ('existance', 'NN'), ('of', 'IN'), ('god', 'NN'), ('".', 'NN'), ('in', 'IN'), ('other', 'JJ'), ('words', 'NNS'), ('it', 'PRP'), ('doesn', 'VBZ'), ('generally', 'RB'), ('come', 'VBN'), ('back', 'RB'), ('to', 'TO'), ('the', 'DT'), ('xtian', 'JJ'), ('god', 'NN'), ('it', 'PRP'), ('comes', 'VBZ'), ('back', 'RB'), ('to', 'TO'), ('whether', 'IN'), ('there', 'EX'), ('is', 'VBZ'), ('any', 'DT'), ('god', 'NN'), ('and', 'CC'), ('in', 'IN'), ('much', 'JJ'), ('of', 'IN'), ('oriental', 'JJ'), ('philosophic', 'JJ'), ('history', 'NN'), ('it', 'PRP'), ('generally', 'RB'), ('doesn', 'VBZ'), ('pop', 'NN'), ('up', 'RP'), ('as', 'IN'), ('the', 'DT'), ('idea', 'NN'), ('of', 'IN'), ('god', 'NNS'), ('so', 'RB'), ('much', 'RB'), ('as', 'IN'), ('the', 'DT'), ('question', 'NN'), ('of', 'IN'), ('what', 'WP'), ('natural', 'JJ'), ('forces', 'NNS'), ('are', 'VBP'), ('and', 'CC'), ('which', 'WDT'), ('ones', 'NNS'), ('are', 'VBP'), ('out', 'IN'), ('there', 'RB'), ('from', 'IN'), ('world', 'NN'), ('wide', 'JJ'), ('view', 'NN'), ('human', 'JJ'), ('nature', 'NN'), ('just', 'RB'), ('makes', 'VBZ'), ('us', 'PRP'), ('wonder', 'VB'), ('how', 'WRB'), ('the', 'DT'), ('universe', 'NN'), ('came', 'VBD'), ('to', 'TO'), ('be', 'VB'), ('and', 'CC'), ('or', 'CC'), ('what', 'WP'), ('force', 'NN'), ('are', 'VBP'), ('currently', 'RB'), ('in', 'IN'), ('control', 'NN'), ('natural', 'JJ'), ('tendancy', 'NN'), ('to', 'TO'), ('believe', 'VB'), ('in', 'IN'), ('god', 'NN'), ('only', 'RB'), ('exists', 'VBZ'), ('in', 'IN'), ('religious', 'JJ'), ('wishful', 'JJ'), ('thinking', 'NN'), ('xtianity', 'NN'), ('is', 'VBZ'), ('no', 'DT'), ('more', 'RBR'), ('reasonable', 'JJ'), ('than', 'IN'), ('most', 'JJS'), ('other', 'JJ'), ('religions', 'NNS'), ('and', 'CC'), ('it', 'PRP'), ('reasonableness', 'VBZ'), ('certainly', 'RB'), ('doesn', 'JJ'), ('merit', 'NN'), ('eminence', 'NN'), ('divine', 'NN'), ('justice', 'NN'), ('...', ':'), ('well', 'RB'), ('it', 'PRP'), ('only', 'RB'), ('seems', 'VBZ'), ('just', 'RB'), ('to', 'TO'), ('those', 'DT'), ('who', 'WP'), ('already', 'RB'), ('believe', 'VBP'), ('in', 'IN'), ('the', 'DT'), ('divinity', 'NN'), ('first', 'RB'), ('not', 'RB'), ('all', 'DT'), ('atheists', 'NNS'), ('believe', 'VBP'), ('the', 'DT'), ('same', 'JJ'), ('things', 'NNS'), ('about', 'IN'), ('human', 'JJ'), ('nature', 'NN'), ('second', 'JJ'), ('whether', 'IN'), ('most', 'JJS'), ('atheists', 'NNS'), ('are', 'VBP'), ('correct', 'JJ'), ('or', 'CC'), ('not', 'RB'), ('you', 'PRP'), ('certainly', 'RB'), ('are', 'VBP'), ('not', 'RB'), ('correct', 'JJ'), ('on', 'IN'), ('human', 'JJ'), ('nature', 'NN'), ('you', 'PRP'), ('are', 'VBP'), ('at', 'IN'), ('the', 'DT'), ('least', 'JJS'), ('basing', 'VBG'), ('your', 'PRP$'), ('views', 'NNS'), ('on', 'IN'), ('completely', 'RB'), ('eurocentric', 'JJ'), ('approach', 'NN'), ('try', 'NN'), ('looking', 'VBG'), ('at', 'IN'), ('the', 'DT'), ('outside', 'JJ'), ('world', 'NN'), ('as', 'RB'), ('well', 'RB'), ('when', 'WRB'), ('you', 'PRP'), ('attempt', 'VBP'), ('to', 'TO'), ('sum', 'VB'), ('up', 'RP'), ('all', 'DT'), ('of', 'IN'), ('humanity', 'NN')] | ['webster', 'myth', 'traditional', 'legendary', 'story', 'belief', 'whose', 'truth', 'accept', 'uncritically', 'qualify', 'indeed', 'almost', 'oxymoronic', 'rather', 'amuse', 'instance', 'find', 'atheist', 'hold', 'almost', 'atheist', 'view', 'accept', 'uncritically', 'especially', 'legend', 'many', 'try', 'explain', 'basic', 'truth', 'myth', 'meet', 'criterion', 'also', 'accuse', 'reference', 'mythology', 'procede', 'launch', 'xtian', 'mythology', 'time', 'meet', 'requirement', 'myth', 'ah', 'everyone', 'know', 'god', 'exist', 'fallacy', 'make', 'true', 'hold', 'bible', 'rule', 'controversy', 'read', 'faq', 'read', 'miss', 'something', 'read', 'bad', 'suggestion', 'anyone', 'read', 'repeat', 'write', 'sake', 'get', 'across', 'may', 'trust', 'bible', 'trust', 'make', 'credible', 'bible', 'say', 'everyone', 'know', 'clearly', 'reason', 'doubt', 'bible', 'everyone', 'know', 'alleged', 'god', 'allege', 'existance', 'ignore', 'bible', 'bible', 'far', 'universally', 'accept', 'bible', 'proof', 'god', 'proof', 'people', 'think', 'god', 'prove', 'even', 'might', 'write', 'series', 'fiction', 'short', 'story', 'case', 'dionetics', 'assume', 'writer', 'believe', 'thing', 'could', 'possibly', 'prove', 'believe', 'ignore', 'problem', 'whether', 'interpretation', 'biblical', 'philosopher', 'correct', 'people', 'truly', 'never', 'heard', 'bible', 'read', 'faq', 'bzzt', 'wrong', 'answer', 'gravity', 'directly', 'stop', 'exert', 'direct', 'rationally', 'undeniable', 'influence', 'ignore', 'god', 'hand', 'generally', 'show', 'supermarket', 'except', 'tabloid', 'god', 'exert', 'rationally', 'undeniable', 'influence', 'gravity', 'obvious', 'god', 'human', 'reason', 'always', 'come', 'back', 'existance', 'god', 'usually', 'come', 'back', 'existance', 'god', 'word', 'generally', 'come', 'back', 'xtian', 'god', 'come', 'back', 'whether', 'god', 'much', 'oriental', 'philosophic', 'history', 'generally', 'pop', 'idea', 'god', 'much', 'question', 'natural', 'force', 'one', 'world', 'wide', 'view', 'human', 'nature', 'make', 'u', 'wonder', 'universe', 'come', 'force', 'currently', 'control', 'natural', 'tendancy', 'believe', 'god', 'exist', 'religious', 'wishful', 'thinking', 'xtianity', 'reasonable', 'religion', 'reasonableness', 'certainly', 'merit', 'eminence', 'divine', 'justice', 'well', 'seem', 'already', 'believe', 'divinity', 'first', 'atheist', 'believe', 'thing', 'human', 'nature', 'second', 'whether', 'atheist', 'correct', 'certainly', 'correct', 'human', 'nature', 'least', 'base', 'view', 'completely', 'eurocentric', 'approach', 'try', 'look', 'outside', 'world', 'well', 'attempt', 'sum', 'humanity'] | ['try_explain', 'everyone_know', 'know_god', 'god_exist', 'read_faq', 'miss_something', 'anyone_read', 'get_across', 'bible_say', 'say_everyone', 'everyone_know', 'everyone_know', 'bible_far', 'people_think', 'think_god', 'short_story', 'believe_thing', 'thing_could', 'could_possibly', 'never_heard', 'bible_read', 'read_faq', 'always_come', 'come_back', 'usually_come', 'come_back', 'god_word', 'come_back', 'god_come', 'come_back', 'god_much', 'idea_god', 'god_much', 'force_one', 'one_world', 'world_wide', 'human_nature', 'make_u', 'believe_god', 'god_exist', 'well_seem', 'atheist_believe', 'believe_thing', 'human_nature', 'human_nature', 'try_look', 'outside_world'] | alt_atheism_53298 |@lemmatized webster:1 myth:3 traditional:1 legendary:1 story:2 belief:1 whose:1 truth:2 accept:3 uncritically:2 qualify:1 indeed:1 almost:2 oxymoronic:1 rather:1 amuse:1 instance:1 find:1 atheist:4 hold:2 view:3 especially:1 legend:1 many:1 try:2 explain:1 basic:1 meet:2 criterion:1 also:1 accuse:1 reference:1 mythology:2 procede:1 launch:1 xtian:2 time:1 requirement:1 ah:1 everyone:3 know:3 god:13 exist:2 fallacy:1 make:3 true:1 bible:8 rule:1 controversy:1 read:5 faq:2 miss:1 something:1 bad:1 suggestion:1 anyone:1 repeat:1 write:2 sake:1 get:1 across:1 may:1 trust:2 credible:1 say:1 clearly:1 reason:2 doubt:1 alleged:1 allege:1 existance:3 ignore:3 far:1 universally:1 proof:2 people:2 think:1 prove:2 even:1 might:1 series:1 fiction:1 short:1 case:1 dionetics:1 assume:1 writer:1 believe:5 thing:2 could:1 possibly:1 problem:1 whether:3 interpretation:1 biblical:1 philosopher:1 correct:3 truly:1 never:1 heard:1 bzzt:1 wrong:1 answer:1 gravity:2 directly:1 stop:1 exert:2 direct:1 rationally:2 undeniable:2 influence:2 hand:1 generally:3 show:1 supermarket:1 except:1 tabloid:1 obvious:1 human:4 always:1 come:5 back:4 usually:1 word:1 much:2 oriental:1 philosophic:1 history:1 pop:1 idea:1 question:1 natural:2 force:2 one:1 world:2 wide:1 nature:3 u:1 wonder:1 universe:1 currently:1 control:1 tendancy:1 religious:1 wishful:1 thinking:1 xtianity:1 reasonable:1 religion:1 reasonableness:1 certainly:2 merit:1 eminence:1 divine:1 justice:1 well:2 seem:1 already:1 divinity:1 first:1 second:1 least:1 base:1 completely:1 eurocentric:1 approach:1 look:1 outside:1 attempt:1 sum:1 humanity:1 |@bigram try_explain:1 everyone_know:3 know_god:1 god_exist:2 read_faq:2 miss_something:1 anyone_read:1 get_across:1 bible_say:1 say_everyone:1 bible_far:1 people_think:1 think_god:1 short_story:1 believe_thing:2 thing_could:1 could_possibly:1 never_heard:1 bible_read:1 always_come:1 come_back:4 usually_come:1 god_word:1 god_come:1 god_much:2 idea_god:1 force_one:1 one_world:1 world_wide:1 human_nature:3 make_u:1 believe_god:1 well_seem:1 atheist_believe:1 try_look:1 outside_world:1 |
2,114 |
I just got Mathcad 4.0, and the manual is not clear on the matter. On page 8:
:
:
* At least 4 megabytes of memory. All memory about 640K should be configured
as XMS.
:
:
* At least 8 megabytes of virtual memory....
Common sense suggests that you should be able to run it (4+8=12 < 16) but the
new Mathcad is kinda kooky, and thus is not subject to the laws of common
sense...
Dan
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9687 | 2 | comp_os_ms-windows_misc_9687 | [('just', 'RB'), ('got', 'VBN'), ('mathcad', 'RB'), ('and', 'CC'), ('the', 'DT'), ('manual', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('clear', 'JJ'), ('on', 'IN'), ('the', 'DT'), ('matter', 'NN'), ('on', 'IN'), ('page', 'NN'), ('at', 'IN'), ('least', 'JJS'), ('megabytes', 'NNS'), ('of', 'IN'), ('memory', 'NN'), ('all', 'DT'), ('memory', 'NN'), ('about', 'IN'), ('640k', 'CD'), ('should', 'MD'), ('be', 'VB'), ('configured', 'VBN'), ('as', 'IN'), ('xms', 'NN'), ('at', 'IN'), ('least', 'JJS'), ('megabytes', 'NNS'), ('of', 'IN'), ('virtual', 'JJ'), ('memory', 'NN'), ('....', 'NNP'), ('common', 'JJ'), ('sense', 'NN'), ('suggests', 'VBZ'), ('that', 'IN'), ('you', 'PRP'), ('should', 'MD'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('run', 'VB'), ('it', 'PRP'), ('12', 'CD'), ('16', 'CD'), ('but', 'CC'), ('the', 'DT'), ('new', 'JJ'), ('mathcad', 'NN'), ('is', 'VBZ'), ('kinda', 'VBN'), ('kooky', 'NNS'), ('and', 'CC'), ('thus', 'RB'), ('is', 'VBZ'), ('not', 'RB'), ('subject', 'JJ'), ('to', 'TO'), ('the', 'DT'), ('laws', 'NNS'), ('of', 'IN'), ('common', 'JJ'), ('sense', 'NN'), ('...', ':'), ('dan', 'NN')] | ['get', 'mathcad', 'manual', 'clear', 'matter', 'page', 'least', 'megabyte', 'memory', 'memory', 'configure', 'xms', 'least', 'megabyte', 'virtual', 'memory', 'common', 'sense', 'suggest', 'able', 'run', 'new', 'mathcad', 'kinda', 'kooky', 'thus', 'subject', 'law', 'common', 'sense', 'dan'] | ['virtual_memory', 'common_sense', 'able_run', 'common_sense'] | comp_os_ms-windows_misc_9687 |@lemmatized get:1 mathcad:2 manual:1 clear:1 matter:1 page:1 least:2 megabyte:2 memory:3 configure:1 xms:1 virtual:1 common:2 sense:2 suggest:1 able:1 run:1 new:1 kinda:1 kooky:1 thus:1 subject:1 law:1 dan:1 |@bigram virtual_memory:1 common_sense:2 able_run:1 |
2,115 |
My Native American Girlfriend asks: "If the government really doesn't
'care a hill of beans' about our religion, how come they're still
busting us for it in Oregon, Washington, and a few other places?
You'd be a Christian, too, if the U.S. Army marched you into church
at gunpoint." | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.guns/54385 | 16 | talk_politics_guns_54385 | [('my', 'PRP$'), ('native', 'JJ'), ('american', 'JJ'), ('girlfriend', 'NN'), ('asks', 'VBZ'), ('if', 'IN'), ('the', 'DT'), ('government', 'NN'), ('really', 'RB'), ('doesn', 'VBZ'), ('care', 'NN'), ('hill', 'NN'), ('of', 'IN'), ('beans', 'NNS'), ('about', 'IN'), ('our', 'PRP$'), ('religion', 'NN'), ('how', 'WRB'), ('come', 'NN'), ('they', 'PRP'), ('re', 'VBP'), ('still', 'RB'), ('busting', 'VBG'), ('us', 'PRP'), ('for', 'IN'), ('it', 'PRP'), ('in', 'IN'), ('oregon', 'NN'), ('washington', 'NN'), ('and', 'CC'), ('few', 'JJ'), ('other', 'JJ'), ('places', 'NNS'), ('you', 'PRP'), ('be', 'VB'), ('christian', 'JJ'), ('too', 'RB'), ('if', 'IN'), ('the', 'DT'), ('army', 'NN'), ('marched', 'VBD'), ('you', 'PRP'), ('into', 'IN'), ('church', 'NN'), ('at', 'IN'), ('gunpoint', 'NN'), ('."', 'NN')] | ['native', 'american', 'girlfriend', 'ask', 'government', 'really', 'care', 'hill', 'bean', 'religion', 'come', 'still', 'bust', 'u', 'oregon', 'washington', 'place', 'christian', 'army', 'march', 'church', 'gunpoint'] | ['native_american', 'government_really', 'really_care'] | talk_politics_guns_54385 |@lemmatized native:1 american:1 girlfriend:1 ask:1 government:1 really:1 care:1 hill:1 bean:1 religion:1 come:1 still:1 bust:1 u:1 oregon:1 washington:1 place:1 christian:1 army:1 march:1 church:1 gunpoint:1 |@bigram native_american:1 government_really:1 really_care:1 |
2,116 |
How about some numbers here? Some kind of benchmark?
If you want, let me start it - 486DX2-66 - 32 SPECint92, 16 SPECfp92 .
Numbers? Pentium @66MHz - 65 SPECint92, 57 SPECfp92 .
PowerPC @66MHz - 50 SPECint92, 80 SPECfp92 . (Note this is the 601)
(Alpha @150MHz - 74 SPECint92,126 SPECfp92 - just for comparison)
Not in a clock-doubled system. There isn't a doubling in performance, but
it _is_ quite significant. Maybe about a 70% increase in performance.
Besides, for 0 wait state performance, you'd need a cache anyway. I mean,
who uses a processor that runs at the speed of 80ns SIMMs? Note that this
memory speed corresponds to a clock speed of 12.5 MHz.
Numbers?
--
Ravikumar Venkateswar
[email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51747 | 4 | comp_sys_mac_hardware_51747 | [('how', 'WRB'), ('about', 'IN'), ('some', 'DT'), ('numbers', 'NNS'), ('here', 'RB'), ('some', 'DT'), ('kind', 'NN'), ('of', 'IN'), ('benchmark', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('let', 'VB'), ('me', 'PRP'), ('start', 'VB'), ('it', 'PRP'), ('486dx2', 'CD'), ('66', 'CD'), ('32', 'CD'), ('specint92', 'NN'), ('16', 'CD'), ('specfp92', 'NN'), ('numbers', 'NNS'), ('pentium', 'VBP'), ('65', 'CD'), ('specint92', 'JJ'), ('57', 'CD'), ('specfp92', 'NN'), ('powerpc', 'NN'), ('50', 'CD'), ('specint92', 'NN'), ('80', 'CD'), ('specfp92', 'JJ'), ('note', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('601', 'CD'), ('alpha', 'NN'), ('74', 'CD'), ('specint92', 'NN'), ('126', 'CD'), ('specfp92', 'NN'), ('just', 'RB'), ('for', 'IN'), ('comparison', 'NN'), ('not', 'RB'), ('in', 'IN'), ('clock', 'NN'), ('doubled', 'VBD'), ('system', 'NN'), ('there', 'RB'), ('isn', 'VBZ'), ('doubling', 'VBG'), ('in', 'IN'), ('performance', 'NN'), ('but', 'CC'), ('it', 'PRP'), ('_is_', 'VBZ'), ('quite', 'RB'), ('significant', 'JJ'), ('maybe', 'RB'), ('about', 'IN'), ('70', 'CD'), ('increase', 'NN'), ('in', 'IN'), ('performance', 'NN'), ('besides', 'IN'), ('for', 'IN'), ('wait', 'NN'), ('state', 'NN'), ('performance', 'NN'), ('you', 'PRP'), ('need', 'VBP'), ('cache', 'VB'), ('anyway', 'RB'), ('mean', 'NN'), ('who', 'WP'), ('uses', 'VBZ'), ('processor', 'NN'), ('that', 'WDT'), ('runs', 'VBZ'), ('at', 'IN'), ('the', 'DT'), ('speed', 'NN'), ('of', 'IN'), ('80ns', 'CD'), ('simms', 'JJ'), ('note', 'NN'), ('that', 'IN'), ('this', 'DT'), ('memory', 'NN'), ('speed', 'NN'), ('corresponds', 'VBZ'), ('to', 'TO'), ('clock', 'VB'), ('speed', 'NN'), ('of', 'IN'), ('12', 'CD'), ('mhz', 'JJ'), ('numbers', 'NNS'), ('--', ':'), ('ravikumar', 'VBP'), ('venkateswar', 'NN')] | ['number', 'kind', 'benchmark', 'want', 'let', 'start', 'number', 'pentium', 'powerpc', 'note', 'alpha', 'comparison', 'clock', 'double', 'system', 'double', 'performance', 'quite', 'significant', 'maybe', 'increase', 'performance', 'besides', 'wait', 'state', 'performance', 'need', 'cache', 'anyway', 'mean', 'use', 'processor', 'run', 'speed', 'simms', 'note', 'memory', 'speed', 'correspond', 'clock', 'speed', 'mhz', 'number', 'ravikumar', 'venkateswar'] | ['want_let', 'increase_performance', 'wait_state', 'mean_use', 'clock_speed'] | comp_sys_mac_hardware_51747 |@lemmatized number:3 kind:1 benchmark:1 want:1 let:1 start:1 pentium:1 powerpc:1 note:2 alpha:1 comparison:1 clock:2 double:2 system:1 performance:3 quite:1 significant:1 maybe:1 increase:1 besides:1 wait:1 state:1 need:1 cache:1 anyway:1 mean:1 use:1 processor:1 run:1 speed:3 simms:1 memory:1 correspond:1 mhz:1 ravikumar:1 venkateswar:1 |@bigram want_let:1 increase_performance:1 wait_state:1 mean_use:1 clock_speed:1 |
2,117 | Article from as follows
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/104555 | 9 | rec_sport_baseball_104555 | [('article', 'NN'), ('from', 'IN'), ('as', 'IN'), ('follows', 'VBZ')] | ['article', 'follow'] | ['article_follow'] | rec_sport_baseball_104555 |@lemmatized article:1 follow:1 |@bigram article_follow:1 |
2,118 | (MODERATOR: THIS IS A REPLACEMENT FOR AN EARLIER, MORE CLUMSILY WORDED
SUBMISSION ON THE SAME TOPIC WHICH I SUBMITTED A FEW MINUTES AGO.)
I think we need to distinguish etymology from meaning. Regardless of
how the word 'Easter' *originated*, the fact is that it does not *now*
mean anything to Christians other than 'the feast day of the Resurrection
of Jesus Christ'.
The meaning of a word is _only_ what people understand it to mean.
And the same goes for other cultural practices. The festival of Easter
may possibly have some historical association with some pagan festival,
but *today* there are, as far as I know, no Christians who *intend* to
honor any kind of "pagan goddess" by celebrating Easter.
It is nonsense to say "this word (or this practice) 'really' means so-
and-so even though nobody realizes it." Words and practices don't mean
things, people do.
(This is basic semantics; I'm a linguist; they pay me to think about
things like this.)
--
:- Michael A. Covington, Associate Research Scientist : *****
:- Artificial Intelligence Programs [email protected] : *********
:- The University of Georgia phone 706 542-0358 : * * *
:- Athens, Georgia 30602-7415 U.S.A. amateur radio N4TMI : ** *** ** <>< | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20564 | 15 | soc_religion_christian_20564 | [('moderator', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('replacement', 'NN'), ('for', 'IN'), ('an', 'DT'), ('earlier', 'JJR'), ('more', 'RBR'), ('clumsily', 'RB'), ('worded', 'VBN'), ('submission', 'NN'), ('on', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('topic', 'NN'), ('which', 'WDT'), ('submitted', 'VBD'), ('few', 'JJ'), ('minutes', 'NNS'), ('ago', 'RB'), ('.)', 'JJ'), ('think', 'VBP'), ('we', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('distinguish', 'VB'), ('etymology', 'NN'), ('from', 'IN'), ('meaning', 'VBG'), ('regardless', 'NN'), ('of', 'IN'), ('how', 'WRB'), ('the', 'DT'), ('word', 'NN'), ('easter', 'NN'), ('originated', 'VBD'), ('*,', 'PDT'), ('the', 'DT'), ('fact', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('it', 'PRP'), ('does', 'VBZ'), ('not', 'RB'), ('now', 'RB'), ('mean', 'VB'), ('anything', 'NN'), ('to', 'TO'), ('christians', 'VB'), ('other', 'JJ'), ('than', 'IN'), ('the', 'DT'), ('feast', 'JJ'), ('day', 'NN'), ('of', 'IN'), ('the', 'DT'), ('resurrection', 'NN'), ('of', 'IN'), ('jesus', 'NN'), ('christ', 'NN'), ("'.", 'IN'), ('the', 'DT'), ('meaning', 'NN'), ('of', 'IN'), ('word', 'NN'), ('is', 'VBZ'), ('_only_', 'JJ'), ('what', 'WP'), ('people', 'NNS'), ('understand', 'VBP'), ('it', 'PRP'), ('to', 'TO'), ('mean', 'VB'), ('and', 'CC'), ('the', 'DT'), ('same', 'JJ'), ('goes', 'VBZ'), ('for', 'IN'), ('other', 'JJ'), ('cultural', 'JJ'), ('practices', 'NNS'), ('the', 'DT'), ('festival', 'NN'), ('of', 'IN'), ('easter', 'NN'), ('may', 'MD'), ('possibly', 'RB'), ('have', 'VB'), ('some', 'DT'), ('historical', 'JJ'), ('association', 'NN'), ('with', 'IN'), ('some', 'DT'), ('pagan', 'JJ'), ('festival', 'NN'), ('but', 'CC'), ('today', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('as', 'RB'), ('far', 'RB'), ('as', 'IN'), ('know', 'JJ'), ('no', 'DT'), ('christians', 'NNS'), ('who', 'WP'), ('intend', 'VBP'), ('to', 'TO'), ('honor', 'VB'), ('any', 'DT'), ('kind', 'NN'), ('of', 'IN'), ('pagan', 'JJ'), ('goddess', 'NN'), ('by', 'IN'), ('celebrating', 'VBG'), ('easter', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('nonsense', 'JJ'), ('to', 'TO'), ('say', 'VB'), ('this', 'DT'), ('word', 'NN'), ('or', 'CC'), ('this', 'DT'), ('practice', 'NN'), ('really', 'RB'), ('means', 'VBZ'), ('so', 'RB'), ('and', 'CC'), ('so', 'RB'), ('even', 'RB'), ('though', 'IN'), ('nobody', 'NN'), ('realizes', 'VBZ'), ('it', 'PRP'), ('."', 'JJ'), ('words', 'NNS'), ('and', 'CC'), ('practices', 'NNS'), ('don', 'VBP'), ('mean', 'JJ'), ('things', 'NNS'), ('people', 'NNS'), ('do', 'VBP'), ('this', 'DT'), ('is', 'VBZ'), ('basic', 'JJ'), ('semantics', 'NNS'), ('linguist', 'VBP'), ('they', 'PRP'), ('pay', 'VBP'), ('me', 'PRP'), ('to', 'TO'), ('think', 'VB'), ('about', 'IN'), ('things', 'NNS'), ('like', 'IN'), ('this', 'DT'), ('.)', 'NN'), ('--', ':'), (':-', 'JJ'), ('michael', 'JJ'), ('covington', 'NN'), ('associate', 'JJ'), ('research', 'NN'), ('scientist', 'NN'), ('*****', 'IN'), (':-', 'JJ'), ('artificial', 'JJ'), ('intelligence', 'NN'), ('programs', 'NNS'), ('*********', 'VBP'), (':-', 'CD'), ('the', 'DT'), ('university', 'NN'), ('of', 'IN'), ('georgia', 'NN'), ('phone', 'NN'), ('706', 'CD'), ('542', 'CD'), ('0358', 'CD'), (':-', 'JJ'), ('athens', 'NNS'), ('georgia', 'VBP'), ('30602', 'CD'), ('7415', 'CD'), ('amateur', 'NN'), ('radio', 'NN'), ('n4tmi', 'NN'), ('**', 'NNP'), ('***', 'NNP'), ('**', 'NNP'), ('<><', 'NN')] | ['moderator', 'replacement', 'early', 'clumsily', 'word', 'submission', 'topic', 'submit', 'minute', 'ago', 'think', 'need', 'distinguish', 'etymology', 'mean', 'regardless', 'word', 'easter', 'originate', 'fact', 'mean', 'anything', 'christians', 'feast', 'day', 'resurrection', 'jesus', 'christ', 'meaning', 'word', 'people', 'understand', 'mean', 'go', 'cultural', 'practice', 'festival', 'easter', 'may', 'possibly', 'historical', 'association', 'pagan', 'festival', 'today', 'far', 'know', 'christian', 'intend', 'honor', 'kind', 'pagan', 'goddess', 'celebrate', 'easter', 'nonsense', 'say', 'word', 'practice', 'really', 'mean', 'even', 'though', 'nobody', 'realize', 'word', 'practice', 'mean', 'thing', 'people', 'basic', 'semantics', 'linguist', 'pay', 'think', 'thing', 'like', 'michael', 'covington', 'associate', 'research', 'scientist', 'artificial', 'intelligence', 'program', 'university', 'georgia', 'phone', 'athens', 'georgia', 'amateur', 'radio'] | ['think_need', 'mean_anything', 'resurrection_jesus', 'jesus_christ', 'meaning_word', 'word_people', 'people_understand', 'understand_mean', 'far_know', 'know_christian', 'celebrate_easter', 'say_word', 'really_mean', 'mean_even', 'even_though', 'mean_thing', 'thing_people', 'think_thing', 'thing_like', 'michael_covington', 'research_scientist', 'artificial_intelligence', 'program_university', 'university_georgia', 'amateur_radio'] | soc_religion_christian_20564 |@lemmatized moderator:1 replacement:1 early:1 clumsily:1 word:5 submission:1 topic:1 submit:1 minute:1 ago:1 think:2 need:1 distinguish:1 etymology:1 mean:5 regardless:1 easter:3 originate:1 fact:1 anything:1 christians:1 feast:1 day:1 resurrection:1 jesus:1 christ:1 meaning:1 people:2 understand:1 go:1 cultural:1 practice:3 festival:2 may:1 possibly:1 historical:1 association:1 pagan:2 today:1 far:1 know:1 christian:1 intend:1 honor:1 kind:1 goddess:1 celebrate:1 nonsense:1 say:1 really:1 even:1 though:1 nobody:1 realize:1 thing:2 basic:1 semantics:1 linguist:1 pay:1 like:1 michael:1 covington:1 associate:1 research:1 scientist:1 artificial:1 intelligence:1 program:1 university:1 georgia:2 phone:1 athens:1 amateur:1 radio:1 |@bigram think_need:1 mean_anything:1 resurrection_jesus:1 jesus_christ:1 meaning_word:1 word_people:1 people_understand:1 understand_mean:1 far_know:1 know_christian:1 celebrate_easter:1 say_word:1 really_mean:1 mean_even:1 even_though:1 mean_thing:1 thing_people:1 think_thing:1 thing_like:1 michael_covington:1 research_scientist:1 artificial_intelligence:1 program_university:1 university_georgia:1 amateur_radio:1 |
2,119 |
Yes. I cannot remeber which works I read about this in, as it was many
years ago. This ritual was called The Tarobaullum I believe, (The
spelling may be off).
Pope Charles
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.religion.misc/84256 | 19 | talk_religion_misc_84256 | [('yes', 'RB'), ('cannot', 'NN'), ('remeber', 'NN'), ('which', 'WDT'), ('works', 'VBZ'), ('read', 'VBP'), ('about', 'IN'), ('this', 'DT'), ('in', 'IN'), ('as', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('many', 'JJ'), ('years', 'NNS'), ('ago', 'RB'), ('this', 'DT'), ('ritual', 'NN'), ('was', 'VBD'), ('called', 'VBN'), ('the', 'DT'), ('tarobaullum', 'NN'), ('believe', 'VBP'), ('the', 'DT'), ('spelling', 'NN'), ('may', 'MD'), ('be', 'VB'), ('off', 'RP'), (').', 'NNP'), ('pope', 'NN'), ('charles', 'NNS')] | ['yes', 'cannot', 'remeber', 'work', 'read', 'many', 'year', 'ago', 'ritual', 'call', 'tarobaullum', 'believe', 'spelling', 'may', 'pope', 'charles'] | ['read_many', 'many_year', 'year_ago'] | talk_religion_misc_84256 |@lemmatized yes:1 cannot:1 remeber:1 work:1 read:1 many:1 year:1 ago:1 ritual:1 call:1 tarobaullum:1 believe:1 spelling:1 may:1 pope:1 charles:1 |@bigram read_many:1 many_year:1 year_ago:1 |
2,120 |
That's OK -- you can mail me if you want more discussion.
Around here, long-guns are proof of age and fill out the forms.
For pistols, nation-wide check for felonies and three days wait. The
"good reason" is the difference, and one Americans tend to get annoyed
over as we see no reason the guy with the badge is any better than us.
Not when dealing with America. I can drive an 18-wheel truck
with no permit, no license, and at age 12 if I'm engaged in farming
work. Strange, that, but there is little to no problem with this.
Again, personal rights versus collective security.
Strange that the rates would decline, since killing somebody
is much more frowned upon than merely stealing a gun.
Why attract attention? I carry my sword openly to and from
practice, as that is the only legal thing I can do. I also attract
a lot of attention doing this. I'd rather be lost "in a crowd of one"
than be the subject of attention while carrying a weapon. Think of
the word "intimidation" and you can see where intimidation is not
the preferable method for the normal citizen.
Aggressive towards whom? Southerners? Germans? Precisely
why I think your society is less violent, weapons aside.
Then the masses have the same rights as the individuals, because
everything comes down to the individual in one instance or another. To
draw an analogy, Norway is involved in the EEC. The USA in involved in
NATO. The EEC requires certain changes in your laws. NATO requires
no such changes in USA law. These laws affect citizens, and hence
Norway is saying Europe is more important than, say, Norwegians having
motorcycles that make over 100bhp. In the USA, we'd likely tell the
EEC to get stuffed since the EEC has no business, in our eyes, in
telling us how much horsepower we can safely ride. While I note
that our own state governments often play with game with the federal
government, in essence this is a cultural difference between us.
It shouldn't. Since neither of our countries has managed to
remove criminals from society, in America we feel (and remember we
have individual states that are larger than your country) that if the
police cannot protect us then we must do so ourselves. The criminals
in our country are quite violent, hence we prepare for them.
We don't. E-mail me to find out just how difficult it really
is in this country. It is easier than in yours, but theft is far
easier than the troubles we go through to purchase over here.
They are neither. They are an option. We would never force
you to own guns if you lived here. We would, however, fight to keep
that option open to you.
Then you show you are a responsible, rational user of weapons.
Welcome to our ranks. Now, how do we teach the young people this sort
of responsibility? Cultures seem to have a grave impact here.
I notice you didn't use my great-grandfather's name. Well,
he didn't like it much either ;-) | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.guns/54292 | 16 | talk_politics_guns_54292 | [('that', 'DT'), ('ok', 'VBZ'), ('--', ':'), ('you', 'PRP'), ('can', 'MD'), ('mail', 'VB'), ('me', 'PRP'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('more', 'JJR'), ('discussion', 'NN'), ('around', 'IN'), ('here', 'RB'), ('long', 'JJ'), ('guns', 'NNS'), ('are', 'VBP'), ('proof', 'NN'), ('of', 'IN'), ('age', 'NN'), ('and', 'CC'), ('fill', 'VB'), ('out', 'RP'), ('the', 'DT'), ('forms', 'NNS'), ('for', 'IN'), ('pistols', 'JJ'), ('nation', 'NN'), ('wide', 'JJ'), ('check', 'NN'), ('for', 'IN'), ('felonies', 'NNS'), ('and', 'CC'), ('three', 'CD'), ('days', 'NNS'), ('wait', 'VBP'), ('the', 'DT'), ('good', 'JJ'), ('reason', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('difference', 'NN'), ('and', 'CC'), ('one', 'CD'), ('americans', 'NNS'), ('tend', 'VBP'), ('to', 'TO'), ('get', 'VB'), ('annoyed', 'VBN'), ('over', 'RP'), ('as', 'IN'), ('we', 'PRP'), ('see', 'VBP'), ('no', 'DT'), ('reason', 'NN'), ('the', 'DT'), ('guy', 'NN'), ('with', 'IN'), ('the', 'DT'), ('badge', 'NN'), ('is', 'VBZ'), ('any', 'DT'), ('better', 'JJR'), ('than', 'IN'), ('us', 'PRP'), ('not', 'RB'), ('when', 'WRB'), ('dealing', 'VBG'), ('with', 'IN'), ('america', 'NN'), ('can', 'MD'), ('drive', 'VB'), ('an', 'DT'), ('18', 'CD'), ('wheel', 'NN'), ('truck', 'NN'), ('with', 'IN'), ('no', 'DT'), ('permit', 'NN'), ('no', 'DT'), ('license', 'NN'), ('and', 'CC'), ('at', 'IN'), ('age', 'NN'), ('12', 'CD'), ('if', 'IN'), ('engaged', 'VBN'), ('in', 'IN'), ('farming', 'VBG'), ('work', 'NN'), ('strange', 'NN'), ('that', 'WDT'), ('but', 'CC'), ('there', 'EX'), ('is', 'VBZ'), ('little', 'JJ'), ('to', 'TO'), ('no', 'DT'), ('problem', 'NN'), ('with', 'IN'), ('this', 'DT'), ('again', 'RB'), ('personal', 'JJ'), ('rights', 'NNS'), ('versus', 'VBP'), ('collective', 'JJ'), ('security', 'NN'), ('strange', 'NN'), ('that', 'IN'), ('the', 'DT'), ('rates', 'NNS'), ('would', 'MD'), ('decline', 'VB'), ('since', 'IN'), ('killing', 'VBG'), ('somebody', 'NN'), ('is', 'VBZ'), ('much', 'RB'), ('more', 'RBR'), ('frowned', 'JJ'), ('upon', 'IN'), ('than', 'IN'), ('merely', 'RB'), ('stealing', 'VBG'), ('gun', 'NN'), ('why', 'WRB'), ('attract', 'JJ'), ('attention', 'NN'), ('carry', 'VBP'), ('my', 'PRP$'), ('sword', 'NN'), ('openly', 'RB'), ('to', 'TO'), ('and', 'CC'), ('from', 'IN'), ('practice', 'NN'), ('as', 'IN'), ('that', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('only', 'JJ'), ('legal', 'JJ'), ('thing', 'NN'), ('can', 'MD'), ('do', 'VB'), ('also', 'RB'), ('attract', 'VB'), ('lot', 'NN'), ('of', 'IN'), ('attention', 'NN'), ('doing', 'VBG'), ('this', 'DT'), ('rather', 'RB'), ('be', 'VB'), ('lost', 'VBN'), ('in', 'IN'), ('crowd', 'NN'), ('of', 'IN'), ('one', 'CD'), ('than', 'IN'), ('be', 'VB'), ('the', 'DT'), ('subject', 'NN'), ('of', 'IN'), ('attention', 'NN'), ('while', 'IN'), ('carrying', 'VBG'), ('weapon', 'JJ'), ('think', 'NN'), ('of', 'IN'), ('the', 'DT'), ('word', 'NN'), ('intimidation', 'NN'), ('and', 'CC'), ('you', 'PRP'), ('can', 'MD'), ('see', 'VB'), ('where', 'WRB'), ('intimidation', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('the', 'DT'), ('preferable', 'JJ'), ('method', 'NN'), ('for', 'IN'), ('the', 'DT'), ('normal', 'JJ'), ('citizen', 'JJ'), ('aggressive', 'JJ'), ('towards', 'NNS'), ('whom', 'WP'), ('southerners', 'NNS'), ('germans', 'NNS'), ('precisely', 'RB'), ('why', 'WRB'), ('think', 'VB'), ('your', 'PRP$'), ('society', 'NN'), ('is', 'VBZ'), ('less', 'RBR'), ('violent', 'JJ'), ('weapons', 'NNS'), ('aside', 'RB'), ('then', 'RB'), ('the', 'DT'), ('masses', 'NNS'), ('have', 'VBP'), ('the', 'DT'), ('same', 'JJ'), ('rights', 'NNS'), ('as', 'IN'), ('the', 'DT'), ('individuals', 'NNS'), ('because', 'IN'), ('everything', 'NN'), ('comes', 'VBZ'), ('down', 'RB'), ('to', 'TO'), ('the', 'DT'), ('individual', 'NN'), ('in', 'IN'), ('one', 'CD'), ('instance', 'NN'), ('or', 'CC'), ('another', 'DT'), ('to', 'TO'), ('draw', 'VB'), ('an', 'DT'), ('analogy', 'NN'), ('norway', 'NN'), ('is', 'VBZ'), ('involved', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('eec', 'NN'), ('the', 'DT'), ('usa', 'NN'), ('in', 'IN'), ('involved', 'VBN'), ('in', 'IN'), ('nato', 'CC'), ('the', 'DT'), ('eec', 'JJ'), ('requires', 'VBZ'), ('certain', 'JJ'), ('changes', 'NNS'), ('in', 'IN'), ('your', 'PRP$'), ('laws', 'NNS'), ('nato', 'VBP'), ('requires', 'VBZ'), ('no', 'DT'), ('such', 'JJ'), ('changes', 'NNS'), ('in', 'IN'), ('usa', 'JJ'), ('law', 'NN'), ('these', 'DT'), ('laws', 'NNS'), ('affect', 'VBP'), ('citizens', 'NNS'), ('and', 'CC'), ('hence', 'NN'), ('norway', 'NN'), ('is', 'VBZ'), ('saying', 'VBG'), ('europe', 'NN'), ('is', 'VBZ'), ('more', 'RBR'), ('important', 'JJ'), ('than', 'IN'), ('say', 'VBP'), ('norwegians', 'NNS'), ('having', 'VBG'), ('motorcycles', 'NNS'), ('that', 'WDT'), ('make', 'VBP'), ('over', 'IN'), ('100bhp', 'CD'), ('in', 'IN'), ('the', 'DT'), ('usa', 'NN'), ('we', 'PRP'), ('likely', 'RB'), ('tell', 'VBP'), ('the', 'DT'), ('eec', 'NN'), ('to', 'TO'), ('get', 'VB'), ('stuffed', 'VBN'), ('since', 'IN'), ('the', 'DT'), ('eec', 'NN'), ('has', 'VBZ'), ('no', 'DT'), ('business', 'NN'), ('in', 'IN'), ('our', 'PRP$'), ('eyes', 'NNS'), ('in', 'IN'), ('telling', 'VBG'), ('us', 'PRP'), ('how', 'WRB'), ('much', 'JJ'), ('horsepower', 'JJR'), ('we', 'PRP'), ('can', 'MD'), ('safely', 'RB'), ('ride', 'VB'), ('while', 'IN'), ('note', 'NN'), ('that', 'IN'), ('our', 'PRP$'), ('own', 'JJ'), ('state', 'NN'), ('governments', 'NNS'), ('often', 'RB'), ('play', 'VBP'), ('with', 'IN'), ('game', 'NN'), ('with', 'IN'), ('the', 'DT'), ('federal', 'JJ'), ('government', 'NN'), ('in', 'IN'), ('essence', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('cultural', 'JJ'), ('difference', 'NN'), ('between', 'IN'), ('us', 'PRP'), ('it', 'PRP'), ('shouldn', 'VBD'), ('since', 'IN'), ('neither', 'NN'), ('of', 'IN'), ('our', 'PRP$'), ('countries', 'NNS'), ('has', 'VBZ'), ('managed', 'VBN'), ('to', 'TO'), ('remove', 'VB'), ('criminals', 'NNS'), ('from', 'IN'), ('society', 'NN'), ('in', 'IN'), ('america', 'NN'), ('we', 'PRP'), ('feel', 'VBP'), ('and', 'CC'), ('remember', 'VBP'), ('we', 'PRP'), ('have', 'VBP'), ('individual', 'JJ'), ('states', 'NNS'), ('that', 'WDT'), ('are', 'VBP'), ('larger', 'JJR'), ('than', 'IN'), ('your', 'PRP$'), ('country', 'NN'), ('that', 'IN'), ('if', 'IN'), ('the', 'DT'), ('police', 'NN'), ('cannot', 'NN'), ('protect', 'VBP'), ('us', 'PRP'), ('then', 'RB'), ('we', 'PRP'), ('must', 'MD'), ('do', 'VB'), ('so', 'RB'), ('ourselves', 'VB'), ('the', 'DT'), ('criminals', 'NNS'), ('in', 'IN'), ('our', 'PRP$'), ('country', 'NN'), ('are', 'VBP'), ('quite', 'RB'), ('violent', 'JJ'), ('hence', 'NN'), ('we', 'PRP'), ('prepare', 'VBP'), ('for', 'IN'), ('them', 'PRP'), ('we', 'PRP'), ('don', 'VBP'), ('mail', 'VB'), ('me', 'PRP'), ('to', 'TO'), ('find', 'VB'), ('out', 'RP'), ('just', 'RB'), ('how', 'WRB'), ('difficult', 'JJ'), ('it', 'PRP'), ('really', 'RB'), ('is', 'VBZ'), ('in', 'IN'), ('this', 'DT'), ('country', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('easier', 'JJR'), ('than', 'IN'), ('in', 'IN'), ('yours', 'NNS'), ('but', 'CC'), ('theft', 'NN'), ('is', 'VBZ'), ('far', 'RB'), ('easier', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('troubles', 'NNS'), ('we', 'PRP'), ('go', 'VBP'), ('through', 'IN'), ('to', 'TO'), ('purchase', 'VB'), ('over', 'RP'), ('here', 'RB'), ('they', 'PRP'), ('are', 'VBP'), ('neither', 'DT'), ('they', 'PRP'), ('are', 'VBP'), ('an', 'DT'), ('option', 'NN'), ('we', 'PRP'), ('would', 'MD'), ('never', 'RB'), ('force', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('own', 'VB'), ('guns', 'NNS'), ('if', 'IN'), ('you', 'PRP'), ('lived', 'VBD'), ('here', 'RB'), ('we', 'PRP'), ('would', 'MD'), ('however', 'RB'), ('fight', 'VB'), ('to', 'TO'), ('keep', 'VB'), ('that', 'DT'), ('option', 'NN'), ('open', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('then', 'RB'), ('you', 'PRP'), ('show', 'VBP'), ('you', 'PRP'), ('are', 'VBP'), ('responsible', 'JJ'), ('rational', 'JJ'), ('user', 'NN'), ('of', 'IN'), ('weapons', 'NNS'), ('welcome', 'VBP'), ('to', 'TO'), ('our', 'PRP$'), ('ranks', 'NNS'), ('now', 'RB'), ('how', 'WRB'), ('do', 'VBP'), ('we', 'PRP'), ('teach', 'VB'), ('the', 'DT'), ('young', 'JJ'), ('people', 'NNS'), ('this', 'DT'), ('sort', 'NN'), ('of', 'IN'), ('responsibility', 'NN'), ('cultures', 'NNS'), ('seem', 'VBP'), ('to', 'TO'), ('have', 'VB'), ('grave', 'JJ'), ('impact', 'NN'), ('here', 'RB'), ('notice', 'RB'), ('you', 'PRP'), ('didn', 'VBP'), ('use', 'VB'), ('my', 'PRP$'), ('great', 'JJ'), ('grandfather', 'NN'), ('name', 'NN'), ('well', 'RB'), ('he', 'PRP'), ('didn', 'VBZ'), ('like', 'IN'), ('it', 'PRP'), ('much', 'RB'), ('either', 'RBR'), (';-)', 'JJ')] | ['ok', 'mail', 'want', 'discussion', 'around', 'long', 'gun', 'proof', 'age', 'fill', 'form', 'pistols', 'nation', 'wide', 'check', 'felony', 'three', 'day', 'wait', 'good', 'reason', 'difference', 'one', 'american', 'tend', 'get', 'annoy', 'see', 'reason', 'guy', 'badge', 'good', 'u', 'deal', 'america', 'drive', 'wheel', 'truck', 'permit', 'license', 'age', 'engage', 'farm', 'work', 'strange', 'little', 'problem', 'personal', 'right', 'versus', 'collective', 'security', 'strange', 'rate', 'would', 'decline', 'since', 'kill', 'somebody', 'much', 'frowned', 'upon', 'merely', 'steal', 'gun', 'attract', 'attention', 'carry', 'sword', 'openly', 'practice', 'legal', 'thing', 'also', 'attract', 'lot', 'attention', 'rather', 'lose', 'crowd', 'one', 'subject', 'attention', 'carry', 'weapon', 'think', 'word', 'intimidation', 'see', 'intimidation', 'preferable', 'method', 'normal', 'citizen', 'aggressive', 'towards', 'southerner', 'german', 'precisely', 'think', 'society', 'less', 'violent', 'weapon', 'aside', 'mass', 'right', 'individual', 'everything', 'come', 'individual', 'one', 'instance', 'another', 'draw', 'analogy', 'norway', 'involve', 'eec', 'usa', 'involve', 'nato', 'eec', 'require', 'certain', 'change', 'law', 'nato', 'require', 'change', 'usa', 'law', 'law', 'affect', 'citizen', 'hence', 'norway', 'say', 'europe', 'important', 'say', 'norwegian', 'motorcycle', 'make', 'usa', 'likely', 'tell', 'eec', 'get', 'stuff', 'since', 'eec', 'business', 'eye', 'tell', 'u', 'much', 'horsepower', 'safely', 'ride', 'note', 'state', 'government', 'often', 'play', 'game', 'federal', 'government', 'essence', 'cultural', 'difference', 'u', 'since', 'neither', 'country', 'manage', 'remove', 'criminal', 'society', 'america', 'feel', 'remember', 'individual', 'state', 'large', 'country', 'police', 'cannot', 'protect', 'u', 'must', 'criminal', 'country', 'quite', 'violent', 'hence', 'prepare', 'mail', 'find', 'difficult', 'really', 'country', 'easy', 'theft', 'far', 'easy', 'trouble', 'go', 'purchase', 'neither', 'option', 'would', 'never', 'force', 'gun', 'live', 'would', 'however', 'fight', 'keep', 'option', 'open', 'show', 'responsible', 'rational', 'user', 'weapon', 'welcome', 'rank', 'teach', 'young', 'people', 'sort', 'responsibility', 'culture', 'seem', 'grave', 'impact', 'notice', 'use', 'great', 'grandfather', 'name', 'well', 'like', 'much', 'either'] | ['around_long', 'three_day', 'day_wait', 'good_reason', 'difference_one', 'tend_get', 'see_reason', 'little_problem', 'rate_would', 'attract_attention', 'thing_also', 'one_subject', 'carry_weapon', 'right_individual', 'everything_come', 'change_law', 'law_law', 'get_stuff', 'tell_u', 'u_much', 'state_government', 'play_game', 'federal_government', 'protect_u', 'u_must', 'find_difficult', 'option_would', 'would_never', 'live_would', 'young_people', 'people_sort', 'use_great', 'well_like', 'like_much', 'much_either'] | talk_politics_guns_54292 |@lemmatized ok:1 mail:2 want:1 discussion:1 around:1 long:1 gun:3 proof:1 age:2 fill:1 form:1 pistols:1 nation:1 wide:1 check:1 felony:1 three:1 day:1 wait:1 good:2 reason:2 difference:2 one:3 american:1 tend:1 get:2 annoy:1 see:2 guy:1 badge:1 u:4 deal:1 america:2 drive:1 wheel:1 truck:1 permit:1 license:1 engage:1 farm:1 work:1 strange:2 little:1 problem:1 personal:1 right:2 versus:1 collective:1 security:1 rate:1 would:3 decline:1 since:3 kill:1 somebody:1 much:3 frowned:1 upon:1 merely:1 steal:1 attract:2 attention:3 carry:2 sword:1 openly:1 practice:1 legal:1 thing:1 also:1 lot:1 rather:1 lose:1 crowd:1 subject:1 weapon:3 think:2 word:1 intimidation:2 preferable:1 method:1 normal:1 citizen:2 aggressive:1 towards:1 southerner:1 german:1 precisely:1 society:2 less:1 violent:2 aside:1 mass:1 individual:3 everything:1 come:1 instance:1 another:1 draw:1 analogy:1 norway:2 involve:2 eec:4 usa:3 nato:2 require:2 certain:1 change:2 law:3 affect:1 hence:2 say:2 europe:1 important:1 norwegian:1 motorcycle:1 make:1 likely:1 tell:2 stuff:1 business:1 eye:1 horsepower:1 safely:1 ride:1 note:1 state:2 government:2 often:1 play:1 game:1 federal:1 essence:1 cultural:1 neither:2 country:4 manage:1 remove:1 criminal:2 feel:1 remember:1 large:1 police:1 cannot:1 protect:1 must:1 quite:1 prepare:1 find:1 difficult:1 really:1 easy:2 theft:1 far:1 trouble:1 go:1 purchase:1 option:2 never:1 force:1 live:1 however:1 fight:1 keep:1 open:1 show:1 responsible:1 rational:1 user:1 welcome:1 rank:1 teach:1 young:1 people:1 sort:1 responsibility:1 culture:1 seem:1 grave:1 impact:1 notice:1 use:1 great:1 grandfather:1 name:1 well:1 like:1 either:1 |@bigram around_long:1 three_day:1 day_wait:1 good_reason:1 difference_one:1 tend_get:1 see_reason:1 little_problem:1 rate_would:1 attract_attention:1 thing_also:1 one_subject:1 carry_weapon:1 right_individual:1 everything_come:1 change_law:1 law_law:1 get_stuff:1 tell_u:1 u_much:1 state_government:1 play_game:1 federal_government:1 protect_u:1 u_must:1 find_difficult:1 option_would:1 would_never:1 live_would:1 young_people:1 people_sort:1 use_great:1 well_like:1 like_much:1 much_either:1 |
2,121 |
IMHO this whole discussion named "Motif looks like MS-Windogs" is totally
stupid. The only thing remotely influenced here can be the Motif Window
Manager, that features an arrangement of buttons and menus somewhat
similiar to this of the MS-W windowmanaging agent, however its name is.
But MWM is only a SMALL part of Motif, in fact, MWM and Motif can work
without each other, and if one doesn't like MWMs outfit for some reason,
he switches to another windowmanager. All this doesn't influence Motif,
which is a toolkit of widgets to write applications, and this toolkit
is IMHO uncomparable to MS-W, because it is much more wellorganized and
features alot of goodies more than the MS-W interface.
You cannot say "A Porsche looks like a VW Käfer" ONLY because they have the
wheel and the gear at the same position. Motif and MS-W are complete
different worlds, only one element of the Motif world has some gear and wheel
at the same position as MS-W.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/66871 | 5 | comp_windows_x_66871 | [('imho', 'NN'), ('this', 'DT'), ('whole', 'JJ'), ('discussion', 'NN'), ('named', 'VBN'), ('motif', 'JJ'), ('looks', 'NNS'), ('like', 'IN'), ('ms', 'JJ'), ('windogs', 'NNS'), ('is', 'VBZ'), ('totally', 'RB'), ('stupid', 'JJ'), ('the', 'DT'), ('only', 'JJ'), ('thing', 'NN'), ('remotely', 'RB'), ('influenced', 'VBD'), ('here', 'RB'), ('can', 'MD'), ('be', 'VB'), ('the', 'DT'), ('motif', 'NN'), ('window', 'NN'), ('manager', 'NN'), ('that', 'WDT'), ('features', 'VBZ'), ('an', 'DT'), ('arrangement', 'NN'), ('of', 'IN'), ('buttons', 'NNS'), ('and', 'CC'), ('menus', 'NNS'), ('somewhat', 'RB'), ('similiar', 'VBP'), ('to', 'TO'), ('this', 'DT'), ('of', 'IN'), ('the', 'DT'), ('ms', 'NN'), ('windowmanaging', 'VBG'), ('agent', 'NN'), ('however', 'RB'), ('its', 'PRP$'), ('name', 'NN'), ('is', 'VBZ'), ('but', 'CC'), ('mwm', 'NN'), ('is', 'VBZ'), ('only', 'RB'), ('small', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('motif', 'NN'), ('in', 'IN'), ('fact', 'NN'), ('mwm', 'NN'), ('and', 'CC'), ('motif', 'NN'), ('can', 'MD'), ('work', 'VB'), ('without', 'IN'), ('each', 'DT'), ('other', 'JJ'), ('and', 'CC'), ('if', 'IN'), ('one', 'CD'), ('doesn', 'NN'), ('like', 'IN'), ('mwms', 'NN'), ('outfit', 'NN'), ('for', 'IN'), ('some', 'DT'), ('reason', 'NN'), ('he', 'PRP'), ('switches', 'VBZ'), ('to', 'TO'), ('another', 'DT'), ('windowmanager', 'NN'), ('all', 'PDT'), ('this', 'DT'), ('doesn', 'JJ'), ('influence', 'NN'), ('motif', 'NN'), ('which', 'WDT'), ('is', 'VBZ'), ('toolkit', 'NN'), ('of', 'IN'), ('widgets', 'NNS'), ('to', 'TO'), ('write', 'VB'), ('applications', 'NNS'), ('and', 'CC'), ('this', 'DT'), ('toolkit', 'NN'), ('is', 'VBZ'), ('imho', 'JJ'), ('uncomparable', 'JJ'), ('to', 'TO'), ('ms', 'VB'), ('because', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('much', 'RB'), ('more', 'JJR'), ('wellorganized', 'JJ'), ('and', 'CC'), ('features', 'VBZ'), ('alot', 'NN'), ('of', 'IN'), ('goodies', 'NNS'), ('more', 'RBR'), ('than', 'IN'), ('the', 'DT'), ('ms', 'JJ'), ('interface', 'NN'), ('you', 'PRP'), ('cannot', 'VBP'), ('say', 'VB'), ('porsche', 'NN'), ('looks', 'NNS'), ('like', 'IN'), ('vw', 'NN'), ('käfer', 'VBP'), ('only', 'RB'), ('because', 'IN'), ('they', 'PRP'), ('have', 'VBP'), ('the', 'DT'), ('wheel', 'NN'), ('and', 'CC'), ('the', 'DT'), ('gear', 'NN'), ('at', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('position', 'NN'), ('motif', 'NN'), ('and', 'CC'), ('ms', 'NN'), ('are', 'VBP'), ('complete', 'JJ'), ('different', 'JJ'), ('worlds', 'NNS'), ('only', 'RB'), ('one', 'CD'), ('element', 'NN'), ('of', 'IN'), ('the', 'DT'), ('motif', 'NN'), ('world', 'NN'), ('has', 'VBZ'), ('some', 'DT'), ('gear', 'NN'), ('and', 'CC'), ('wheel', 'NN'), ('at', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('position', 'NN'), ('as', 'IN'), ('ms', 'NN')] | ['imho', 'whole', 'discussion', 'name', 'motif', 'look', 'like', 'ms', 'windogs', 'totally', 'stupid', 'thing', 'remotely', 'influence', 'motif', 'window', 'manager', 'feature', 'arrangement', 'button', 'menu', 'somewhat', 'similiar', 'windowmanaging', 'agent', 'however', 'name', 'mwm', 'small', 'part', 'motif', 'fact', 'mwm', 'motif', 'work', 'without', 'one', 'like', 'mwms', 'outfit', 'reason', 'switch', 'another', 'windowmanager', 'influence', 'motif', 'toolkit', 'widget', 'write', 'application', 'toolkit', 'imho', 'uncomparable', 'ms', 'much', 'wellorganized', 'feature', 'alot', 'goody', 'ms', 'interface', 'cannot', 'say', 'porsche', 'look', 'like', 'vw', 'käfer', 'wheel', 'gear', 'position', 'motif', 'complete', 'different', 'world', 'one', 'element', 'motif', 'world', 'gear', 'wheel', 'position'] | ['motif_look', 'look_like', 'stupid_thing', 'motif_window', 'window_manager', 'small_part', 'work_without', 'without_one', 'one_like', 'motif_toolkit', 'widget_write', 'write_application', 'cannot_say', 'look_like', 'world_one'] | comp_windows_x_66871 |@lemmatized imho:2 whole:1 discussion:1 name:2 motif:7 look:2 like:3 ms:3 windogs:1 totally:1 stupid:1 thing:1 remotely:1 influence:2 window:1 manager:1 feature:2 arrangement:1 button:1 menu:1 somewhat:1 similiar:1 windowmanaging:1 agent:1 however:1 mwm:2 small:1 part:1 fact:1 work:1 without:1 one:2 mwms:1 outfit:1 reason:1 switch:1 another:1 windowmanager:1 toolkit:2 widget:1 write:1 application:1 uncomparable:1 much:1 wellorganized:1 alot:1 goody:1 interface:1 cannot:1 say:1 porsche:1 vw:1 käfer:1 wheel:2 gear:2 position:2 complete:1 different:1 world:2 element:1 |@bigram motif_look:1 look_like:2 stupid_thing:1 motif_window:1 window_manager:1 small_part:1 work_without:1 without_one:1 one_like:1 motif_toolkit:1 widget_write:1 write_application:1 cannot_say:1 world_one:1 |
2,122 |
Well said Mr. Beyer :)
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76146 | 17 | talk_politics_mideast_76146 | [('well', 'RB'), ('said', 'VBD'), ('mr', 'JJ'), ('beyer', 'NN'), (':)', 'NN')] | ['well', 'say', 'mr', 'beyer'] | ['well_say', 'say_mr'] | talk_politics_mideast_76146 |@lemmatized well:1 say:1 mr:1 beyer:1 |@bigram well_say:1 say_mr:1 |
2,123 | Hi Xperts,
this is a repost (no one responded to my desperate yell 8-(
I can't believe there is no XView wizards any more 8-)...
I'm using sliders in my XView apps, usually with editable numeric
field. But I seem to have no control over the length of this field.
In some apps it appears long enough to keep several characters,
in some - it cannot keep even the maximum value set by
PANEL_MAX_VALUE!
As I understand, PANEL_VALUE_DISPLAY_LENGTH, which controls
number of characters to be displayed in text items, doesn't
work in the case of slider, despite the fact that <panel.h>
contains the following bit:
/* Panel_multiline_text_item, Panel_numeric_text_item,
* Panel_slider_item and Panel_text_item attributes
*/
PANEL_NOTIFY_LEVEL = PANEL_ATTR(ATTR_ENUM, 152),
PANEL_VALUE_DISPLAY_LENGTH = PANEL_ATTR(ATTR_INT, 182),
which gives a hint that this attribute can be used for sliders.
But 1) setting this attribute gives nothing, and 2) xv_get'ting
this attribute gives warning: Bad attribute, and returns value 0.
Strange thing is that DEC's port of XView gives plenty of space
in a text fields, but not Sun's Xview...
Can someone share his experience in managing sliders in XView with me,
and clear this problem?
Any help is very much appreciated.
Yuri | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/67308 | 5 | comp_windows_x_67308 | [('hi', 'NN'), ('xperts', 'NNS'), ('this', 'DT'), ('is', 'VBZ'), ('repost', 'VBN'), ('no', 'DT'), ('one', 'NN'), ('responded', 'VBD'), ('to', 'TO'), ('my', 'PRP$'), ('desperate', 'JJ'), ('yell', 'NN'), ('-(', 'NNS'), ('can', 'MD'), ('believe', 'VB'), ('there', 'EX'), ('is', 'VBZ'), ('no', 'DT'), ('xview', 'NN'), ('wizards', 'VBZ'), ('any', 'DT'), ('more', 'JJR'), ('-)...', 'JJ'), ('using', 'VBG'), ('sliders', 'NNS'), ('in', 'IN'), ('my', 'PRP$'), ('xview', 'NN'), ('apps', 'VBZ'), ('usually', 'RB'), ('with', 'IN'), ('editable', 'JJ'), ('numeric', 'JJ'), ('field', 'NN'), ('but', 'CC'), ('seem', 'VBP'), ('to', 'TO'), ('have', 'VB'), ('no', 'DT'), ('control', 'NN'), ('over', 'IN'), ('the', 'DT'), ('length', 'NN'), ('of', 'IN'), ('this', 'DT'), ('field', 'NN'), ('in', 'IN'), ('some', 'DT'), ('apps', 'NN'), ('it', 'PRP'), ('appears', 'VBZ'), ('long', 'RB'), ('enough', 'RB'), ('to', 'TO'), ('keep', 'VB'), ('several', 'JJ'), ('characters', 'NNS'), ('in', 'IN'), ('some', 'DT'), ('it', 'PRP'), ('cannot', 'JJ'), ('keep', 'VB'), ('even', 'RB'), ('the', 'DT'), ('maximum', 'JJ'), ('value', 'NN'), ('set', 'VBN'), ('by', 'IN'), ('panel_max_value', 'NN'), ('as', 'IN'), ('understand', 'NN'), ('panel_value_display_length', 'NN'), ('which', 'WDT'), ('controls', 'VBZ'), ('number', 'NN'), ('of', 'IN'), ('characters', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('displayed', 'VBN'), ('in', 'IN'), ('text', 'JJ'), ('items', 'NNS'), ('doesn', 'JJ'), ('work', 'NN'), ('in', 'IN'), ('the', 'DT'), ('case', 'NN'), ('of', 'IN'), ('slider', 'NN'), ('despite', 'IN'), ('the', 'DT'), ('fact', 'NN'), ('that', 'IN'), ('panel', 'NN'), ('contains', 'VBZ'), ('the', 'DT'), ('following', 'JJ'), ('bit', 'NN'), ('/*', 'JJ'), ('panel_multiline_text_item', 'NN'), ('panel_numeric_text_item', 'NN'), ('panel_slider_item', 'NN'), ('and', 'CC'), ('panel_text_item', 'NN'), ('attributes', 'NNS'), ('*/', 'VBP'), ('panel_notify_level', 'JJ'), ('panel_attr', 'NN'), ('attr_enum', 'NN'), ('152', 'CD'), ('),', 'JJ'), ('panel_value_display_length', 'NN'), ('panel_attr', 'NN'), ('attr_int', 'NN'), ('182', 'CD'), ('),', 'NN'), ('which', 'WDT'), ('gives', 'VBZ'), ('hint', 'NN'), ('that', 'IN'), ('this', 'DT'), ('attribute', 'NN'), ('can', 'MD'), ('be', 'VB'), ('used', 'VBN'), ('for', 'IN'), ('sliders', 'NNS'), ('but', 'CC'), ('setting', 'VBG'), ('this', 'DT'), ('attribute', 'JJ'), ('gives', 'VBZ'), ('nothing', 'NN'), ('and', 'CC'), ('xv_get', 'VB'), ('ting', 'VBG'), ('this', 'DT'), ('attribute', 'NN'), ('gives', 'VBZ'), ('warning', 'VBG'), ('bad', 'JJ'), ('attribute', 'NN'), ('and', 'CC'), ('returns', 'NNS'), ('value', 'NN'), ('strange', 'JJ'), ('thing', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('dec', 'JJ'), ('port', 'NN'), ('of', 'IN'), ('xview', 'NNP'), ('gives', 'VBZ'), ('plenty', 'NN'), ('of', 'IN'), ('space', 'NN'), ('in', 'IN'), ('text', 'JJ'), ('fields', 'NNS'), ('but', 'CC'), ('not', 'RB'), ('sun', 'JJ'), ('xview', 'NN'), ('...', ':'), ('can', 'MD'), ('someone', 'NN'), ('share', 'NN'), ('his', 'PRP$'), ('experience', 'NN'), ('in', 'IN'), ('managing', 'VBG'), ('sliders', 'NNS'), ('in', 'IN'), ('xview', 'NN'), ('with', 'IN'), ('me', 'PRP'), ('and', 'CC'), ('clear', 'VB'), ('this', 'DT'), ('problem', 'NN'), ('any', 'DT'), ('help', 'NN'), ('is', 'VBZ'), ('very', 'RB'), ('much', 'RB'), ('appreciated', 'VBN'), ('yuri', 'NN')] | ['hi', 'xperts', 'repost', 'one', 'respond', 'desperate', 'yell', 'believe', 'xview', 'wizards', 'use', 'slider', 'xview', 'apps', 'usually', 'editable', 'numeric', 'field', 'seem', 'control', 'length', 'field', 'apps', 'appear', 'long', 'enough', 'keep', 'several', 'character', 'cannot', 'keep', 'even', 'maximum', 'value', 'set', 'understand', 'control', 'number', 'character', 'display', 'text', 'item', 'work', 'case', 'slider', 'despite', 'fact', 'panel', 'contain', 'following', 'bit', 'attribute', 'give', 'hint', 'attribute', 'use', 'slider', 'set', 'attribute', 'give', 'nothing', 'ting', 'attribute', 'give', 'warn', 'bad', 'attribute', 'return', 'value', 'strange', 'thing', 'dec', 'port', 'xview', 'give', 'plenty', 'space', 'text', 'field', 'sun', 'xview', 'someone', 'share', 'experience', 'manage', 'slider', 'xview', 'clear', 'problem', 'help', 'much', 'appreciate', 'yuri'] | ['long_enough', 'enough_keep', 'value_set', 'character_display', 'work_case', 'despite_fact', 'contain_following', 'attribute_give', 'give_hint', 'attribute_give', 'attribute_give', 'return_value', 'strange_thing', 'text_field', 'problem_help', 'help_much', 'much_appreciate'] | comp_windows_x_67308 |@lemmatized hi:1 xperts:1 repost:1 one:1 respond:1 desperate:1 yell:1 believe:1 xview:5 wizards:1 use:2 slider:4 apps:2 usually:1 editable:1 numeric:1 field:3 seem:1 control:2 length:1 appear:1 long:1 enough:1 keep:2 several:1 character:2 cannot:1 even:1 maximum:1 value:2 set:2 understand:1 number:1 display:1 text:2 item:1 work:1 case:1 despite:1 fact:1 panel:1 contain:1 following:1 bit:1 attribute:5 give:4 hint:1 nothing:1 ting:1 warn:1 bad:1 return:1 strange:1 thing:1 dec:1 port:1 plenty:1 space:1 sun:1 someone:1 share:1 experience:1 manage:1 clear:1 problem:1 help:1 much:1 appreciate:1 yuri:1 |@bigram long_enough:1 enough_keep:1 value_set:1 character_display:1 work_case:1 despite_fact:1 contain_following:1 attribute_give:3 give_hint:1 return_value:1 strange_thing:1 text_field:1 problem_help:1 help_much:1 much_appreciate:1 |
2,124 |
Hismanal (astemizole) is most definitely linked to weight gain.
It really is peculiar that some antihistamines have this effect,
and even more so an antihistamine like astemizole which purportedly
doesn't cross the blood-brain barrier and so tends not to cause
drowsiness.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.med/59070 | 13 | sci_med_59070 | [('hismanal', 'JJ'), ('astemizole', 'NN'), ('is', 'VBZ'), ('most', 'RBS'), ('definitely', 'RB'), ('linked', 'VBN'), ('to', 'TO'), ('weight', 'JJ'), ('gain', 'NN'), ('it', 'PRP'), ('really', 'RB'), ('is', 'VBZ'), ('peculiar', 'JJ'), ('that', 'IN'), ('some', 'DT'), ('antihistamines', 'NNS'), ('have', 'VBP'), ('this', 'DT'), ('effect', 'NN'), ('and', 'CC'), ('even', 'RB'), ('more', 'RBR'), ('so', 'RB'), ('an', 'DT'), ('antihistamine', 'NN'), ('like', 'IN'), ('astemizole', 'NN'), ('which', 'WDT'), ('purportedly', 'RB'), ('doesn', 'VBZ'), ('cross', 'VB'), ('the', 'DT'), ('blood', 'NN'), ('brain', 'NN'), ('barrier', 'NN'), ('and', 'CC'), ('so', 'RB'), ('tends', 'VBZ'), ('not', 'RB'), ('to', 'TO'), ('cause', 'VB'), ('drowsiness', 'NN')] | ['hismanal', 'astemizole', 'definitely', 'link', 'weight', 'gain', 'really', 'peculiar', 'antihistamine', 'effect', 'even', 'antihistamine', 'like', 'astemizole', 'purportedly', 'cross', 'blood', 'brain', 'barrier', 'tend', 'cause', 'drowsiness'] | ['weight_gain', 'blood_brain', 'brain_barrier'] | sci_med_59070 |@lemmatized hismanal:1 astemizole:2 definitely:1 link:1 weight:1 gain:1 really:1 peculiar:1 antihistamine:2 effect:1 even:1 like:1 purportedly:1 cross:1 blood:1 brain:1 barrier:1 tend:1 cause:1 drowsiness:1 |@bigram weight_gain:1 blood_brain:1 brain_barrier:1 |
2,125 | I'm making a customized paint program in DOS and need an algorithm
for reading bitmap files like GIF, PCX, or BMP. Does anyone have
such an algorithm? I've tried copying one out of a book for reading
.PCX format but it doesn't work. I will take an algorithm for any
format that can be created from Windows Paint.
Thanks!
Toni
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38420 | 1 | comp_graphics_38420 | [('making', 'VBG'), ('customized', 'JJ'), ('paint', 'NN'), ('program', 'NN'), ('in', 'IN'), ('dos', 'NN'), ('and', 'CC'), ('need', 'VBP'), ('an', 'DT'), ('algorithm', 'NN'), ('for', 'IN'), ('reading', 'VBG'), ('bitmap', 'JJ'), ('files', 'NNS'), ('like', 'IN'), ('gif', 'NN'), ('pcx', 'NN'), ('or', 'CC'), ('bmp', 'NN'), ('does', 'VBZ'), ('anyone', 'NN'), ('have', 'VB'), ('such', 'JJ'), ('an', 'DT'), ('algorithm', 'JJ'), ('ve', 'NN'), ('tried', 'VBD'), ('copying', 'VBG'), ('one', 'CD'), ('out', 'IN'), ('of', 'IN'), ('book', 'NN'), ('for', 'IN'), ('reading', 'VBG'), ('pcx', 'JJ'), ('format', 'NNS'), ('but', 'CC'), ('it', 'PRP'), ('doesn', 'VBZ'), ('work', 'NN'), ('will', 'MD'), ('take', 'VB'), ('an', 'DT'), ('algorithm', 'NN'), ('for', 'IN'), ('any', 'DT'), ('format', 'NN'), ('that', 'WDT'), ('can', 'MD'), ('be', 'VB'), ('created', 'VBN'), ('from', 'IN'), ('windows', 'NNS'), ('paint', 'VBP'), ('thanks', 'NNS'), ('toni', 'VB')] | ['make', 'customized', 'paint', 'program', 'need', 'algorithm', 'read', 'bitmap', 'file', 'like', 'gif', 'pcx', 'bmp', 'anyone', 'algorithm', 'try', 'copy', 'one', 'book', 'read', 'pcx', 'format', 'work', 'take', 'algorithm', 'format', 'create', 'window', 'paint', 'thanks', 'toni'] | ['paint_program', 'program_need', 'file_like', 'pcx_bmp', 'copy_one', 'one_book', 'book_read', 'work_take', 'create_window'] | comp_graphics_38420 |@lemmatized make:1 customized:1 paint:2 program:1 need:1 algorithm:3 read:2 bitmap:1 file:1 like:1 gif:1 pcx:2 bmp:1 anyone:1 try:1 copy:1 one:1 book:1 format:2 work:1 take:1 create:1 window:1 thanks:1 toni:1 |@bigram paint_program:1 program_need:1 file_like:1 pcx_bmp:1 copy_one:1 one_book:1 book_read:1 work_take:1 create_window:1 |
2,126 |
not a flame, just a point: I'd be scared at 130 here, not because i feel
drivers who are STUPID. Like the ones who are doing 130 also, and so
they pull in right behind you at maybe 1-2 car lengths....oh yeah, real
smart... This scares me in cities at 50. When i can't see enough of
the car to make it recognizable, they are following TOO CLOSE. And
when i see them doing this AND reading a newspaper.....*sigh*...this
is why America has 55-65 speed limits: our drivers are TOO DUMB to realise
that reading the paper should be done at breakfast, or work, not in their
car. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.autos/103031 | 7 | rec_autos_103031 | [('not', 'RB'), ('flame', 'VB'), ('just', 'RB'), ('point', 'NN'), ('be', 'VB'), ('scared', 'VBN'), ('at', 'IN'), ('130', 'CD'), ('here', 'RB'), ('not', 'RB'), ('because', 'IN'), ('feel', 'NN'), ('drivers', 'NNS'), ('who', 'WP'), ('are', 'VBP'), ('stupid', 'JJ'), ('like', 'IN'), ('the', 'DT'), ('ones', 'NNS'), ('who', 'WP'), ('are', 'VBP'), ('doing', 'VBG'), ('130', 'CD'), ('also', 'RB'), ('and', 'CC'), ('so', 'RB'), ('they', 'PRP'), ('pull', 'VBP'), ('in', 'IN'), ('right', 'NN'), ('behind', 'IN'), ('you', 'PRP'), ('at', 'IN'), ('maybe', 'RB'), ('car', 'NN'), ('lengths', 'NNS'), ('....', 'VBP'), ('oh', 'RB'), ('yeah', 'JJ'), ('real', 'JJ'), ('smart', 'NN'), ('...', ':'), ('this', 'DT'), ('scares', 'VBZ'), ('me', 'PRP'), ('in', 'IN'), ('cities', 'NNS'), ('at', 'IN'), ('50', 'CD'), ('when', 'WRB'), ('can', 'MD'), ('see', 'VB'), ('enough', 'RB'), ('of', 'IN'), ('the', 'DT'), ('car', 'NN'), ('to', 'TO'), ('make', 'VB'), ('it', 'PRP'), ('recognizable', 'JJ'), ('they', 'PRP'), ('are', 'VBP'), ('following', 'VBG'), ('too', 'RB'), ('close', 'RB'), ('and', 'CC'), ('when', 'WRB'), ('see', 'VB'), ('them', 'PRP'), ('doing', 'VBG'), ('this', 'DT'), ('and', 'CC'), ('reading', 'VBG'), ('newspaper', 'NN'), ('.....*', 'NNP'), ('sigh', 'NN'), ('*...', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('why', 'WRB'), ('america', 'NN'), ('has', 'VBZ'), ('55', 'CD'), ('65', 'CD'), ('speed', 'NN'), ('limits', 'NNS'), ('our', 'PRP$'), ('drivers', 'NNS'), ('are', 'VBP'), ('too', 'RB'), ('dumb', 'JJ'), ('to', 'TO'), ('realise', 'VB'), ('that', 'IN'), ('reading', 'VBG'), ('the', 'DT'), ('paper', 'NN'), ('should', 'MD'), ('be', 'VB'), ('done', 'VBN'), ('at', 'IN'), ('breakfast', 'NN'), ('or', 'CC'), ('work', 'NN'), ('not', 'RB'), ('in', 'IN'), ('their', 'PRP$'), ('car', 'NN')] | ['flame', 'point', 'scar', 'feel', 'driver', 'stupid', 'like', 'one', 'also', 'pull', 'right', 'behind', 'maybe', 'car', 'length', 'oh', 'yeah', 'real', 'smart', 'scar', 'city', 'see', 'enough', 'car', 'make', 'recognizable', 'follow', 'close', 'see', 'read', 'newspaper', 'sigh', 'america', 'speed', 'limit', 'driver', 'dumb', 'realise', 'read', 'paper', 'breakfast', 'work', 'car'] | ['like_one', 'one_also', 'right_behind', 'oh_yeah', 'car_make', 'read_newspaper', 'speed_limit', 'read_paper'] | rec_autos_103031 |@lemmatized flame:1 point:1 scar:2 feel:1 driver:2 stupid:1 like:1 one:1 also:1 pull:1 right:1 behind:1 maybe:1 car:3 length:1 oh:1 yeah:1 real:1 smart:1 city:1 see:2 enough:1 make:1 recognizable:1 follow:1 close:1 read:2 newspaper:1 sigh:1 america:1 speed:1 limit:1 dumb:1 realise:1 paper:1 breakfast:1 work:1 |@bigram like_one:1 one_also:1 right_behind:1 oh_yeah:1 car_make:1 read_newspaper:1 speed_limit:1 read_paper:1 |
2,127 | The r.s.h FAQ sheet never fails to crash my newsreader. The only way I
can avoid crashing (and restarting the machine) is to look at the headers and
avoid reading the FAQ. Does anyone else have problems reading the FAQ?
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/52653 | 10 | rec_sport_hockey_52653 | [('the', 'DT'), ('faq', 'JJ'), ('sheet', 'NN'), ('never', 'RB'), ('fails', 'VBZ'), ('to', 'TO'), ('crash', 'VB'), ('my', 'PRP$'), ('newsreader', 'NN'), ('the', 'DT'), ('only', 'JJ'), ('way', 'NN'), ('can', 'MD'), ('avoid', 'VB'), ('crashing', 'NN'), ('and', 'CC'), ('restarting', 'VBG'), ('the', 'DT'), ('machine', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('look', 'VB'), ('at', 'IN'), ('the', 'DT'), ('headers', 'NNS'), ('and', 'CC'), ('avoid', 'VB'), ('reading', 'VBG'), ('the', 'DT'), ('faq', 'NN'), ('does', 'VBZ'), ('anyone', 'NN'), ('else', 'RB'), ('have', 'VBP'), ('problems', 'NNS'), ('reading', 'VBG'), ('the', 'DT'), ('faq', 'NN')] | ['faq', 'sheet', 'never', 'fail', 'crash', 'newsreader', 'way', 'avoid', 'crashing', 'restart', 'machine', 'look', 'header', 'avoid', 'read', 'faq', 'anyone', 'else', 'problem', 'read', 'faq'] | ['never_fail', 'way_avoid', 'read_faq', 'anyone_else', 'else_problem', 'read_faq'] | rec_sport_hockey_52653 |@lemmatized faq:3 sheet:1 never:1 fail:1 crash:1 newsreader:1 way:1 avoid:2 crashing:1 restart:1 machine:1 look:1 header:1 read:2 anyone:1 else:1 problem:1 |@bigram never_fail:1 way_avoid:1 read_faq:2 anyone_else:1 else_problem:1 |
2,128 |
Yes, it is -- you could look it up. And spare us the thin-skinned
indignation, please; what's sauce for four years of using George Herbert
Walker Bush and J. Danforth Quayle as an insult is sauce for William
Jefferson Blythe Clinton. Do you feel that calling a President by his full
name implies some sort of disrespect? Hint: this is a rhetorical question.
------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------
Paul Havemann (Internet: [email protected]) | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.misc/178840 | 18 | talk_politics_misc_178840 | [('yes', 'NNS'), ('it', 'PRP'), ('is', 'VBZ'), ('--', ':'), ('you', 'PRP'), ('could', 'MD'), ('look', 'VB'), ('it', 'PRP'), ('up', 'RP'), ('and', 'CC'), ('spare', 'VB'), ('us', 'PRP'), ('the', 'DT'), ('thin', 'JJ'), ('skinned', 'JJ'), ('indignation', 'NN'), ('please', 'VB'), ('what', 'WP'), ('sauce', 'VB'), ('for', 'IN'), ('four', 'CD'), ('years', 'NNS'), ('of', 'IN'), ('using', 'VBG'), ('george', 'NN'), ('herbert', 'NN'), ('walker', 'NN'), ('bush', 'NN'), ('and', 'CC'), ('danforth', 'JJ'), ('quayle', 'NN'), ('as', 'IN'), ('an', 'DT'), ('insult', 'NN'), ('is', 'VBZ'), ('sauce', 'VBN'), ('for', 'IN'), ('william', 'NN'), ('jefferson', 'NN'), ('blythe', 'IN'), ('clinton', 'NN'), ('do', 'VBP'), ('you', 'PRP'), ('feel', 'VB'), ('that', 'IN'), ('calling', 'VBG'), ('president', 'NN'), ('by', 'IN'), ('his', 'PRP$'), ('full', 'JJ'), ('name', 'NN'), ('implies', 'VBZ'), ('some', 'DT'), ('sort', 'NN'), ('of', 'IN'), ('disrespect', 'JJ'), ('hint', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('rhetorical', 'JJ'), ('question', 'NN'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('------', 'NNP'), ('paul', 'NN'), ('havemann', 'NN'), ('internet', 'NN')] | ['yes', 'could', 'look', 'spare', 'u', 'thin', 'skinned', 'indignation', 'please', 'sauce', 'four', 'year', 'use', 'george', 'herbert', 'walker', 'bush', 'danforth', 'quayle', 'insult', 'sauce', 'william', 'jefferson', 'blythe', 'clinton', 'feel', 'call', 'president', 'full', 'name', 'imply', 'sort', 'disrespect', 'hint', 'rhetorical', 'question', 'paul', 'havemann', 'internet'] | ['yes_could', 'could_look', 'four_year', 'year_use', 'full_name', 'rhetorical_question'] | talk_politics_misc_178840 |@lemmatized yes:1 could:1 look:1 spare:1 u:1 thin:1 skinned:1 indignation:1 please:1 sauce:2 four:1 year:1 use:1 george:1 herbert:1 walker:1 bush:1 danforth:1 quayle:1 insult:1 william:1 jefferson:1 blythe:1 clinton:1 feel:1 call:1 president:1 full:1 name:1 imply:1 sort:1 disrespect:1 hint:1 rhetorical:1 question:1 paul:1 havemann:1 internet:1 |@bigram yes_could:1 could_look:1 four_year:1 year_use:1 full_name:1 rhetorical_question:1 |
2,129 |
~~~~~~~~~~FOR SALE as of 5PM 4/02/93~~~~~~~~~~
1 AMIGA 3000UX 25mhz, unix compatible machine w/100 meg Hard
Drive, 4 meg RAM, no monitor, keyboard (ESC and ~ keys
broken)
ASKING PRICE: $1700 OBO.
Mind my asking why you're selling a used machine with a damaged
keyboard for the about the same price as a brand new A4000/030
(A4000-EC030/4 megs/120meg IDE HD/HD Floppy/v3.0 OS - $1899)?
I'd like to get an A3000 locally for something reasonable like less
than 1K without monitor. Brand new the A3000-25mhz/50 meg HD/HD
floppy/2.1 ROM isn't running for more than $1400 or so.
Considering it's damaged, probabably has a real old version of the OS
I'll offer $700. Don't laugh...my A2000 isn't worth more than
$250-$300 these days.
N. Tzeng | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/74754 | 6 | misc_forsale_74754 | [('~~~~~~~~~~', 'NN'), ('for', 'IN'), ('sale', 'NN'), ('as', 'IN'), ('of', 'IN'), ('5pm', 'CD'), ('02', 'CD'), ('93', 'CD'), ('~~~~~~~~~~', 'NN'), ('amiga', 'VBD'), ('3000ux', 'CD'), ('25mhz', 'CD'), ('unix', 'JJ'), ('compatible', 'JJ'), ('machine', 'NN'), ('100', 'CD'), ('meg', 'JJ'), ('hard', 'JJ'), ('drive', 'NN'), ('meg', 'NN'), ('ram', 'VBZ'), ('no', 'DT'), ('monitor', 'NN'), ('keyboard', 'NN'), ('esc', 'NN'), ('and', 'CC'), ('keys', 'VB'), ('broken', 'JJ'), ('asking', 'VBG'), ('price', 'NN'), ('1700', 'CD'), ('obo', 'NN'), ('mind', 'NN'), ('my', 'PRP$'), ('asking', 'VBG'), ('why', 'WRB'), ('you', 'PRP'), ('re', 'VBP'), ('selling', 'VBG'), ('used', 'VBN'), ('machine', 'NN'), ('with', 'IN'), ('damaged', 'JJ'), ('keyboard', 'NN'), ('for', 'IN'), ('the', 'DT'), ('about', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('price', 'NN'), ('as', 'IN'), ('brand', 'NN'), ('new', 'JJ'), ('a4000', 'NN'), ('030', 'CD'), ('a4000', 'NN'), ('ec030', 'NN'), ('megs', 'VBZ'), ('120meg', 'CD'), ('ide', 'NN'), ('hd', 'NN'), ('hd', 'NN'), ('floppy', 'JJ'), ('v3', 'NN'), ('os', 'NN'), ('1899', 'CD'), (')?', 'NN'), ('like', 'IN'), ('to', 'TO'), ('get', 'VB'), ('an', 'DT'), ('a3000', 'NN'), ('locally', 'RB'), ('for', 'IN'), ('something', 'NN'), ('reasonable', 'JJ'), ('like', 'IN'), ('less', 'JJR'), ('than', 'IN'), ('1k', 'CD'), ('without', 'IN'), ('monitor', 'NN'), ('brand', 'NN'), ('new', 'JJ'), ('the', 'DT'), ('a3000', 'NN'), ('25mhz', 'CD'), ('50', 'CD'), ('meg', 'NN'), ('hd', 'NN'), ('hd', 'NN'), ('floppy', 'JJ'), ('rom', 'NN'), ('isn', 'NN'), ('running', 'VBG'), ('for', 'IN'), ('more', 'JJR'), ('than', 'IN'), ('1400', 'CD'), ('or', 'CC'), ('so', 'RB'), ('considering', 'VBG'), ('it', 'PRP'), ('damaged', 'VBD'), ('probabably', 'RB'), ('has', 'VBZ'), ('real', 'JJ'), ('old', 'JJ'), ('version', 'NN'), ('of', 'IN'), ('the', 'DT'), ('os', 'NN'), ('ll', 'NN'), ('offer', 'VBP'), ('700', 'CD'), ('don', 'NNS'), ('laugh', 'IN'), ('...', ':'), ('my', 'PRP$'), ('a2000', 'NN'), ('isn', 'NN'), ('worth', 'IN'), ('more', 'JJR'), ('than', 'IN'), ('250', 'CD'), ('-$', 'JJ'), ('300', 'CD'), ('these', 'DT'), ('days', 'NNS'), ('tzeng', 'VBP')] | ['sale', 'amiga', 'unix', 'compatible', 'machine', 'meg', 'hard', 'drive', 'meg', 'ram', 'monitor', 'keyboard', 'esc', 'key', 'broken', 'ask', 'price', 'obo', 'mind', 'ask', 'sell', 'use', 'machine', 'damaged', 'keyboard', 'price', 'brand', 'new', 'megs', 'ide', 'hd', 'hd', 'floppy', 'like', 'get', 'locally', 'something', 'reasonable', 'like', 'less', 'without', 'monitor', 'brand', 'new', 'meg', 'hd', 'hd', 'floppy', 'rom', 'run', 'consider', 'damage', 'probabably', 'real', 'old', 'version', 'offer', 'laugh', 'worth', 'day', 'tzeng'] | ['amiga_unix', 'compatible_machine', 'meg_hard', 'hard_drive', 'drive_meg', 'meg_ram', 'monitor_keyboard', 'ask_price', 'price_obo', 'use_machine', 'brand_new', 'ide_hd', 'hd_floppy', 'like_get', 'brand_new', 'meg_hd', 'hd_floppy', 'old_version'] | misc_forsale_74754 |@lemmatized sale:1 amiga:1 unix:1 compatible:1 machine:2 meg:3 hard:1 drive:1 ram:1 monitor:2 keyboard:2 esc:1 key:1 broken:1 ask:2 price:2 obo:1 mind:1 sell:1 use:1 damaged:1 brand:2 new:2 megs:1 ide:1 hd:4 floppy:2 like:2 get:1 locally:1 something:1 reasonable:1 less:1 without:1 rom:1 run:1 consider:1 damage:1 probabably:1 real:1 old:1 version:1 offer:1 laugh:1 worth:1 day:1 tzeng:1 |@bigram amiga_unix:1 compatible_machine:1 meg_hard:1 hard_drive:1 drive_meg:1 meg_ram:1 monitor_keyboard:1 ask_price:1 price_obo:1 use_machine:1 brand_new:2 ide_hd:1 hd_floppy:2 like_get:1 meg_hd:1 old_version:1 |
2,130 |
Yep, it's called OS2!
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9888 | 2 | comp_os_ms-windows_misc_9888 | [('yep', 'NN'), ('it', 'PRP'), ('called', 'VBD'), ('os2', 'RP')] | ['yep', 'call'] | [] | comp_os_ms-windows_misc_9888 |@lemmatized yep:1 call:1 |@bigram |
2,131 | =============================================================================
NOTE: This is being posted for a friend. DO NOT REPLY to my account. Please
direct all replies to Scott Burke at [email protected]
=============================================================================
Alpine 5959S 6-CD Shuttle. Paid $600, want $420/OBO.
Alpine 1203 Remote CD Changer Control. Paid $250, want $175/OBO.
Boston ProSeries 10.0 Subwoofers (2) + Box. Paid $545, want $380/OBO.
All equipment is under 6 months old and includes a full-replacement 5-year
warranty from original point of purchase. The subwoofer box was custom
designed to fit in the back of a Bronco II and is 14" by 21" by 27".
Send replies to: [email protected]
-----
Scott Burke - Project Leader - Sparcom Corporation - Corvallis OR
[email protected] - Telephone (503) 757-8416 - FAX (503) 753-7821
--
------------------------------------------------------------------------------
"Just waiting for the nuts..."
Brett Barksdale [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/76328 | 6 | misc_forsale_76328 | [('=============================================================================', 'JJ'), ('note', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('being', 'VBG'), ('posted', 'VBN'), ('for', 'IN'), ('friend', 'NN'), ('do', 'VBP'), ('not', 'RB'), ('reply', 'VB'), ('to', 'TO'), ('my', 'PRP$'), ('account', 'NN'), ('please', 'VB'), ('direct', 'JJ'), ('all', 'DT'), ('replies', 'NNS'), ('to', 'TO'), ('scott', 'VB'), ('burke', 'NN'), ('at', 'IN'), ('=============================================================================', 'NNP'), ('alpine', 'VBP'), ('5959s', 'CD'), ('cd', 'NN'), ('shuttle', 'NN'), ('paid', 'VBD'), ('600', 'CD'), ('want', 'JJ'), ('420', 'CD'), ('obo', 'NN'), ('alpine', 'NN'), ('1203', 'CD'), ('remote', 'JJ'), ('cd', 'NN'), ('changer', 'NN'), ('control', 'NN'), ('paid', 'VBD'), ('250', 'CD'), ('want', 'JJ'), ('175', 'CD'), ('obo', 'JJ'), ('boston', 'NN'), ('proseries', 'NNS'), ('10', 'CD'), ('subwoofers', 'NNS'), ('box', 'NN'), ('paid', 'VBD'), ('545', 'CD'), ('want', 'JJ'), ('380', 'CD'), ('obo', 'IN'), ('all', 'DT'), ('equipment', 'NN'), ('is', 'VBZ'), ('under', 'IN'), ('months', 'NNS'), ('old', 'JJ'), ('and', 'CC'), ('includes', 'VBZ'), ('full', 'JJ'), ('replacement', 'NN'), ('year', 'NN'), ('warranty', 'NN'), ('from', 'IN'), ('original', 'JJ'), ('point', 'NN'), ('of', 'IN'), ('purchase', 'NN'), ('the', 'DT'), ('subwoofer', 'NN'), ('box', 'NN'), ('was', 'VBD'), ('custom', 'NN'), ('designed', 'VBN'), ('to', 'TO'), ('fit', 'VB'), ('in', 'IN'), ('the', 'DT'), ('back', 'NN'), ('of', 'IN'), ('bronco', 'NN'), ('ii', 'NN'), ('and', 'CC'), ('is', 'VBZ'), ('14', 'CD'), ('by', 'IN'), ('21', 'CD'), ('by', 'IN'), ('27', 'CD'), ('".', 'NNS'), ('send', 'JJ'), ('replies', 'NNS'), ('to', 'TO'), ('-----', 'VB'), ('scott', 'NN'), ('burke', 'NN'), ('project', 'NN'), ('leader', 'NN'), ('sparcom', 'JJ'), ('corporation', 'NN'), ('corvallis', 'NN'), ('or', 'CC'), ('telephone', 'NN'), ('503', 'CD'), ('757', 'CD'), ('8416', 'CD'), ('fax', 'NN'), ('503', 'CD'), ('753', 'CD'), ('7821', 'CD'), ('--', ':'), ('------------------------------------------------------------------------------', 'VB'), ('just', 'RB'), ('waiting', 'VBG'), ('for', 'IN'), ('the', 'DT'), ('nuts', 'NNS'), ('..."', 'NNP'), ('brett', 'NN'), ('barksdale', 'NN')] | ['note', 'post', 'friend', 'reply', 'account', 'please', 'direct', 'reply', 'scott', 'burke', 'alpine', 'cd', 'shuttle', 'pay', 'want', 'obo', 'alpine', 'remote', 'cd', 'changer', 'control', 'pay', 'want', 'obo', 'boston', 'proseries', 'subwoofer', 'box', 'pay', 'want', 'obo', 'equipment', 'month', 'old', 'include', 'full', 'replacement', 'year', 'warranty', 'original', 'point', 'purchase', 'subwoofer', 'box', 'custom', 'design', 'fit', 'back', 'bronco', 'ii', 'send', 'reply', 'scott', 'burke', 'project', 'leader', 'sparcom', 'corporation', 'corvallis', 'telephone', 'fax', 'wait', 'nut', 'brett', 'barksdale'] | ['post_friend', 'reply_account', 'cd_changer', 'month_old', 'include_full', 'year_warranty', 'original_point', 'send_reply', 'telephone_fax'] | misc_forsale_76328 |@lemmatized note:1 post:1 friend:1 reply:3 account:1 please:1 direct:1 scott:2 burke:2 alpine:2 cd:2 shuttle:1 pay:3 want:3 obo:3 remote:1 changer:1 control:1 boston:1 proseries:1 subwoofer:2 box:2 equipment:1 month:1 old:1 include:1 full:1 replacement:1 year:1 warranty:1 original:1 point:1 purchase:1 custom:1 design:1 fit:1 back:1 bronco:1 ii:1 send:1 project:1 leader:1 sparcom:1 corporation:1 corvallis:1 telephone:1 fax:1 wait:1 nut:1 brett:1 barksdale:1 |@bigram post_friend:1 reply_account:1 cd_changer:1 month_old:1 include_full:1 year_warranty:1 original_point:1 send_reply:1 telephone_fax:1 |
2,132 | I have the following items for sale:
Animation Works software for Macintosh by Gold Disk
This is a brand new shrink-wrapped copy
Microsoft Excel for Windows Ver. 4.0
Opened, but includes everything including Registration card
Video7 FastWrite VGA card. 512 video memory. 800x600 resolution.
Everex 2400b internal modem.
Video card and the modem are used items.
If you are interested make a reasonable offer. I wish to ship these
UPS COD.
Please email me at [email protected].
Thank you. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/75947 | 6 | misc_forsale_75947 | [('have', 'VB'), ('the', 'DT'), ('following', 'JJ'), ('items', 'NNS'), ('for', 'IN'), ('sale', 'NN'), ('animation', 'NN'), ('works', 'VBZ'), ('software', 'NN'), ('for', 'IN'), ('macintosh', 'NN'), ('by', 'IN'), ('gold', 'JJ'), ('disk', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('brand', 'NN'), ('new', 'JJ'), ('shrink', 'NN'), ('wrapped', 'VBD'), ('copy', 'NN'), ('microsoft', 'JJ'), ('excel', 'NN'), ('for', 'IN'), ('windows', 'NNS'), ('ver', 'RB'), ('opened', 'VBD'), ('but', 'CC'), ('includes', 'VBZ'), ('everything', 'NN'), ('including', 'VBG'), ('registration', 'NN'), ('card', 'NN'), ('video7', 'NN'), ('fastwrite', 'JJ'), ('vga', 'JJ'), ('card', 'NN'), ('512', 'CD'), ('video', 'NN'), ('memory', 'NN'), ('800x600', 'CD'), ('resolution', 'NN'), ('everex', 'VBD'), ('2400b', 'CD'), ('internal', 'JJ'), ('modem', 'NN'), ('video', 'NN'), ('card', 'NN'), ('and', 'CC'), ('the', 'DT'), ('modem', 'NN'), ('are', 'VBP'), ('used', 'VBN'), ('items', 'NNS'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('interested', 'JJ'), ('make', 'RBR'), ('reasonable', 'JJ'), ('offer', 'NN'), ('wish', 'JJ'), ('to', 'TO'), ('ship', 'VB'), ('these', 'DT'), ('ups', 'NNS'), ('cod', 'VBP'), ('please', 'NN'), ('email', 'VB'), ('me', 'PRP'), ('at', 'IN'), ('thank', 'NN'), ('you', 'PRP')] | ['following', 'item', 'sale', 'animation', 'work', 'software', 'macintosh', 'gold', 'disk', 'brand', 'new', 'shrink', 'wrap', 'copy', 'microsoft', 'excel', 'window', 'ver', 'open', 'include', 'everything', 'include', 'registration', 'card', 'fastwrite', 'vga', 'card', 'video', 'memory', 'resolution', 'everex', 'internal', 'modem', 'video', 'card', 'modem', 'use', 'item', 'interested', 'make', 'reasonable', 'offer', 'wish', 'ship', 'ups', 'cod', 'please', 'email', 'thank'] | ['following_item', 'item_sale', 'brand_new', 'shrink_wrap', 'registration_card', 'vga_card', 'card_video', 'video_memory', 'internal_modem', 'video_card', 'modem_use', 'interested_make', 'make_reasonable', 'reasonable_offer', 'ups_cod', 'please_email', 'email_thank'] | misc_forsale_75947 |@lemmatized following:1 item:2 sale:1 animation:1 work:1 software:1 macintosh:1 gold:1 disk:1 brand:1 new:1 shrink:1 wrap:1 copy:1 microsoft:1 excel:1 window:1 ver:1 open:1 include:2 everything:1 registration:1 card:3 fastwrite:1 vga:1 video:2 memory:1 resolution:1 everex:1 internal:1 modem:2 use:1 interested:1 make:1 reasonable:1 offer:1 wish:1 ship:1 ups:1 cod:1 please:1 email:1 thank:1 |@bigram following_item:1 item_sale:1 brand_new:1 shrink_wrap:1 registration_card:1 vga_card:1 card_video:1 video_memory:1 internal_modem:1 video_card:1 modem_use:1 interested_make:1 make_reasonable:1 reasonable_offer:1 ups_cod:1 please_email:1 email_thank:1 |
2,133 | Here is the MacWeek article describing the DUO ram situation.
(w/o permission. I hope that is ok)
Jose
Bad RAM brings some Duos down. (random access memory boards for Apple
Macintosh PowerBook Duos)
MacWEEK v7, n7 (Feb 15, 1993):132.
COPYRIGHT Coastal Associates Publishing L.P. 1993
By Raines Cohen
Austin, Texas - Some third-party memory-expansion cards for PowerBook
Duos depart from Apple specs in ways that could cause crashes, data loss
and other problems.
Technology Works Inc., a RAM and network vendor based here, last week
issued a warning about three problems it said it had found in Duo RAM
products from some competing vendors, which it declined to identify.
Other vendors and an Apple spokeswoman confirmed that the problems exist.
> Self-refresh. The Duos require a kind of dynamic RAM called
selfrefreshing, which can recharge itself while the system sleeps. But
Technology Works said some vendors have sold Duo cards with
nonselfrefreshing DRAM, which can cause the system to lose data or fail to
wake from sleep.
Most leading memory manufacturers include the letter V in the part
number stamped on their self-refreshing chips; nonself-refreshing chips
instead have an L, according to TechWorks. The chip label, however, may
not tell the whole story. Newer Technology of Wichita, Kan., said it uses
nonself-refreshing chips but adds its own circuitry to keep them refreshed
while the Duo sleeps.
> Speed. Some RAM-card vendors have put 80-nanosecond DRAM on Duo
cards rather than the 70-nanosecond type the 230 requires, Technology
Works said. However, some chips labeled as 80- or 85-nanosecond are
certified by the manufacturer to run at a higher speed.
Kingston Technology Corp. of Fountain Valley, Calif., said it offers
Duo RAM cards with 80-nanosecond chips, but only for the Duo 210, which is
compatible with the slower chips.
> Space. Technology Works charged and Apple officials confirmed that
some third-party cards are too large to fit properly, forcing the corner
of the Duo keyboard up and preventing the system from starting up normally
when in a Duo Dock. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51775 | 4 | comp_sys_mac_hardware_51775 | [('here', 'RB'), ('is', 'VBZ'), ('the', 'DT'), ('macweek', 'JJ'), ('article', 'NN'), ('describing', 'VBG'), ('the', 'DT'), ('duo', 'NN'), ('ram', 'NN'), ('situation', 'NN'), ('permission', 'NN'), ('hope', 'VBP'), ('that', 'DT'), ('is', 'VBZ'), ('ok', 'JJ'), ('jose', 'JJ'), ('bad', 'JJ'), ('ram', 'NN'), ('brings', 'VBZ'), ('some', 'DT'), ('duos', 'VBP'), ('down', 'RP'), ('random', 'JJ'), ('access', 'NN'), ('memory', 'NN'), ('boards', 'NNS'), ('for', 'IN'), ('apple', 'NN'), ('macintosh', 'NN'), ('powerbook', 'NN'), ('duos', 'NN'), ('macweek', 'NN'), ('v7', 'NN'), ('n7', 'JJ'), ('feb', 'RB'), ('15', 'CD'), ('1993', 'CD'), ('):', 'NN'), ('132', 'CD'), ('copyright', 'NN'), ('coastal', 'NN'), ('associates', 'VBZ'), ('publishing', 'VBG'), ('1993', 'CD'), ('by', 'IN'), ('raines', 'NNS'), ('cohen', 'NNS'), ('austin', 'VBP'), ('texas', 'JJ'), ('some', 'DT'), ('third', 'JJ'), ('party', 'NN'), ('memory', 'NN'), ('expansion', 'NN'), ('cards', 'NNS'), ('for', 'IN'), ('powerbook', 'NN'), ('duos', 'JJ'), ('depart', 'NN'), ('from', 'IN'), ('apple', 'NN'), ('specs', 'NN'), ('in', 'IN'), ('ways', 'NNS'), ('that', 'WDT'), ('could', 'MD'), ('cause', 'VB'), ('crashes', 'NNS'), ('data', 'NNS'), ('loss', 'NN'), ('and', 'CC'), ('other', 'JJ'), ('problems', 'NNS'), ('technology', 'NN'), ('works', 'VBZ'), ('inc', 'JJ'), ('.,', 'NNP'), ('ram', 'NN'), ('and', 'CC'), ('network', 'NN'), ('vendor', 'NN'), ('based', 'VBN'), ('here', 'RB'), ('last', 'JJ'), ('week', 'NN'), ('issued', 'VBD'), ('warning', 'VBG'), ('about', 'IN'), ('three', 'CD'), ('problems', 'NNS'), ('it', 'PRP'), ('said', 'VBD'), ('it', 'PRP'), ('had', 'VBD'), ('found', 'VBN'), ('in', 'IN'), ('duo', 'NN'), ('ram', 'NN'), ('products', 'NNS'), ('from', 'IN'), ('some', 'DT'), ('competing', 'VBG'), ('vendors', 'NNS'), ('which', 'WDT'), ('it', 'PRP'), ('declined', 'VBD'), ('to', 'TO'), ('identify', 'VB'), ('other', 'JJ'), ('vendors', 'NNS'), ('and', 'CC'), ('an', 'DT'), ('apple', 'NN'), ('spokeswoman', 'NN'), ('confirmed', 'VBD'), ('that', 'IN'), ('the', 'DT'), ('problems', 'NNS'), ('exist', 'VBP'), ('self', 'PRP'), ('refresh', 'VBZ'), ('the', 'DT'), ('duos', 'NN'), ('require', 'VBP'), ('kind', 'NN'), ('of', 'IN'), ('dynamic', 'JJ'), ('ram', 'NN'), ('called', 'VBN'), ('selfrefreshing', 'VBG'), ('which', 'WDT'), ('can', 'MD'), ('recharge', 'VB'), ('itself', 'PRP'), ('while', 'IN'), ('the', 'DT'), ('system', 'NN'), ('sleeps', 'NNS'), ('but', 'CC'), ('technology', 'NN'), ('works', 'NNS'), ('said', 'VBD'), ('some', 'DT'), ('vendors', 'NNS'), ('have', 'VBP'), ('sold', 'VBN'), ('duo', 'NN'), ('cards', 'NNS'), ('with', 'IN'), ('nonselfrefreshing', 'VBG'), ('dram', 'NN'), ('which', 'WDT'), ('can', 'MD'), ('cause', 'VB'), ('the', 'DT'), ('system', 'NN'), ('to', 'TO'), ('lose', 'VB'), ('data', 'NNS'), ('or', 'CC'), ('fail', 'VB'), ('to', 'TO'), ('wake', 'VB'), ('from', 'IN'), ('sleep', 'NN'), ('most', 'RBS'), ('leading', 'JJ'), ('memory', 'NN'), ('manufacturers', 'NNS'), ('include', 'VBP'), ('the', 'DT'), ('letter', 'NN'), ('in', 'IN'), ('the', 'DT'), ('part', 'NN'), ('number', 'NN'), ('stamped', 'VBN'), ('on', 'IN'), ('their', 'PRP$'), ('self', 'NN'), ('refreshing', 'VBG'), ('chips', 'NNS'), ('nonself', 'RB'), ('refreshing', 'VBG'), ('chips', 'NNS'), ('instead', 'RB'), ('have', 'VBP'), ('an', 'DT'), ('according', 'VBG'), ('to', 'TO'), ('techworks', 'VB'), ('the', 'DT'), ('chip', 'NN'), ('label', 'VBZ'), ('however', 'RB'), ('may', 'MD'), ('not', 'RB'), ('tell', 'VB'), ('the', 'DT'), ('whole', 'JJ'), ('story', 'NN'), ('newer', 'JJR'), ('technology', 'NN'), ('of', 'IN'), ('wichita', 'JJ'), ('kan', 'NN'), ('.,', 'NNP'), ('said', 'VBD'), ('it', 'PRP'), ('uses', 'VBZ'), ('nonself', 'PRP'), ('refreshing', 'VBG'), ('chips', 'NNS'), ('but', 'CC'), ('adds', 'VBZ'), ('its', 'PRP$'), ('own', 'JJ'), ('circuitry', 'NN'), ('to', 'TO'), ('keep', 'VB'), ('them', 'PRP'), ('refreshed', 'VBN'), ('while', 'IN'), ('the', 'DT'), ('duo', 'NN'), ('sleeps', 'NNS'), ('speed', 'VBD'), ('some', 'DT'), ('ram', 'JJ'), ('card', 'NN'), ('vendors', 'NNS'), ('have', 'VBP'), ('put', 'VBN'), ('80', 'CD'), ('nanosecond', 'NN'), ('dram', 'NN'), ('on', 'IN'), ('duo', 'NN'), ('cards', 'NNS'), ('rather', 'RB'), ('than', 'IN'), ('the', 'DT'), ('70', 'CD'), ('nanosecond', 'NN'), ('type', 'VBD'), ('the', 'DT'), ('230', 'CD'), ('requires', 'VBZ'), ('technology', 'NN'), ('works', 'NNS'), ('said', 'VBD'), ('however', 'RB'), ('some', 'DT'), ('chips', 'NNS'), ('labeled', 'VBD'), ('as', 'IN'), ('80', 'CD'), ('or', 'CC'), ('85', 'CD'), ('nanosecond', 'NN'), ('are', 'VBP'), ('certified', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('manufacturer', 'NN'), ('to', 'TO'), ('run', 'VB'), ('at', 'IN'), ('higher', 'JJR'), ('speed', 'NN'), ('kingston', 'NNP'), ('technology', 'NN'), ('corp', 'NN'), ('of', 'IN'), ('fountain', 'NN'), ('valley', 'NN'), ('calif', 'NN'), ('.,', 'NNP'), ('said', 'VBD'), ('it', 'PRP'), ('offers', 'VBZ'), ('duo', 'JJ'), ('ram', 'NN'), ('cards', 'NNS'), ('with', 'IN'), ('80', 'CD'), ('nanosecond', 'JJ'), ('chips', 'NNS'), ('but', 'CC'), ('only', 'RB'), ('for', 'IN'), ('the', 'DT'), ('duo', 'NN'), ('210', 'CD'), ('which', 'WDT'), ('is', 'VBZ'), ('compatible', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('slower', 'JJR'), ('chips', 'NNS'), ('space', 'NN'), ('technology', 'NN'), ('works', 'VBZ'), ('charged', 'VBN'), ('and', 'CC'), ('apple', 'NN'), ('officials', 'NNS'), ('confirmed', 'VBD'), ('that', 'IN'), ('some', 'DT'), ('third', 'JJ'), ('party', 'NN'), ('cards', 'NNS'), ('are', 'VBP'), ('too', 'RB'), ('large', 'JJ'), ('to', 'TO'), ('fit', 'VB'), ('properly', 'RB'), ('forcing', 'VBG'), ('the', 'DT'), ('corner', 'NN'), ('of', 'IN'), ('the', 'DT'), ('duo', 'NN'), ('keyboard', 'VBD'), ('up', 'RB'), ('and', 'CC'), ('preventing', 'VBG'), ('the', 'DT'), ('system', 'NN'), ('from', 'IN'), ('starting', 'VBG'), ('up', 'RP'), ('normally', 'RB'), ('when', 'WRB'), ('in', 'IN'), ('duo', 'NN'), ('dock', 'NN')] | ['macweek', 'article', 'describe', 'duo', 'ram', 'situation', 'permission', 'hope', 'ok', 'jose', 'bad', 'ram', 'bring', 'duos', 'random', 'access', 'memory', 'board', 'apple', 'macintosh', 'powerbook', 'duo', 'macweek', 'feb', 'copyright', 'coastal', 'associate', 'publish', 'raines', 'cohen', 'austin', 'texas', 'third', 'party', 'memory', 'expansion', 'card', 'powerbook', 'duos', 'depart', 'apple', 'spec', 'way', 'could', 'cause', 'crash', 'data', 'loss', 'problem', 'technology', 'work', 'inc', 'ram', 'network', 'vendor', 'base', 'last', 'week', 'issue', 'warn', 'three', 'problem', 'say', 'find', 'duo', 'ram', 'product', 'compete', 'vendor', 'decline', 'identify', 'vendor', 'apple', 'spokeswoman', 'confirm', 'problem', 'exist', 'self', 'refresh', 'duo', 'require', 'kind', 'dynamic', 'ram', 'call', 'selfrefreshing', 'recharge', 'system', 'sleep', 'technology', 'work', 'say', 'vendor', 'sell', 'duo', 'card', 'nonselfrefreshing', 'dram', 'cause', 'system', 'lose', 'data', 'fail', 'wake', 'sleep', 'leading', 'memory', 'manufacturer', 'include', 'letter', 'part', 'number', 'stamp', 'self', 'refresh', 'chip', 'nonself', 'refresh', 'chip', 'instead', 'accord', 'techworks', 'chip', 'label', 'however', 'may', 'tell', 'whole', 'story', 'new', 'technology', 'wichita', 'kan', 'say', 'use', 'nonself', 'refresh', 'chip', 'add', 'circuitry', 'keep', 'refresh', 'duo', 'sleep', 'speed', 'ram', 'card', 'vendor', 'put', 'nanosecond', 'dram', 'duo', 'card', 'rather', 'nanosecond', 'type', 'require', 'technology', 'work', 'say', 'however', 'chip', 'label', 'nanosecond', 'certify', 'manufacturer', 'run', 'high', 'speed', 'kingston', 'technology', 'corp', 'fountain', 'valley', 'calif', 'say', 'offer', 'duo', 'ram', 'card', 'nanosecond', 'chip', 'duo', 'compatible', 'slow', 'chip', 'space', 'technology', 'work', 'charge', 'apple', 'official', 'confirm', 'third', 'party', 'card', 'large', 'fit', 'properly', 'force', 'corner', 'duo', 'keyboard', 'prevent', 'system', 'start', 'normally', 'duo', 'dock'] | ['access_memory', 'apple_macintosh', 'austin_texas', 'third_party', 'memory_expansion', 'way_could', 'could_cause', 'technology_work', 'last_week', 'say_find', 'technology_work', 'work_say', 'lose_data', 'part_number', 'however_may', 'tell_whole', 'whole_story', 'new_technology', 'say_use', 'ram_card', 'technology_work', 'work_say', 'say_however', 'run_high', 'high_speed', 'ram_card', 'space_technology', 'technology_work', 'third_party', 'duo_dock'] | comp_sys_mac_hardware_51775 |@lemmatized macweek:2 article:1 describe:1 duo:11 ram:7 situation:1 permission:1 hope:1 ok:1 jose:1 bad:1 bring:1 duos:2 random:1 access:1 memory:3 board:1 apple:4 macintosh:1 powerbook:2 feb:1 copyright:1 coastal:1 associate:1 publish:1 raines:1 cohen:1 austin:1 texas:1 third:2 party:2 expansion:1 card:6 depart:1 spec:1 way:1 could:1 cause:2 crash:1 data:2 loss:1 problem:3 technology:6 work:4 inc:1 network:1 vendor:5 base:1 last:1 week:1 issue:1 warn:1 three:1 say:5 find:1 product:1 compete:1 decline:1 identify:1 spokeswoman:1 confirm:2 exist:1 self:2 refresh:5 require:2 kind:1 dynamic:1 call:1 selfrefreshing:1 recharge:1 system:3 sleep:3 sell:1 nonselfrefreshing:1 dram:2 lose:1 fail:1 wake:1 leading:1 manufacturer:2 include:1 letter:1 part:1 number:1 stamp:1 chip:7 nonself:2 instead:1 accord:1 techworks:1 label:2 however:2 may:1 tell:1 whole:1 story:1 new:1 wichita:1 kan:1 use:1 add:1 circuitry:1 keep:1 speed:2 put:1 nanosecond:4 rather:1 type:1 certify:1 run:1 high:1 kingston:1 corp:1 fountain:1 valley:1 calif:1 offer:1 compatible:1 slow:1 space:1 charge:1 official:1 large:1 fit:1 properly:1 force:1 corner:1 keyboard:1 prevent:1 start:1 normally:1 dock:1 |@bigram access_memory:1 apple_macintosh:1 austin_texas:1 third_party:2 memory_expansion:1 way_could:1 could_cause:1 technology_work:4 last_week:1 say_find:1 work_say:2 lose_data:1 part_number:1 however_may:1 tell_whole:1 whole_story:1 new_technology:1 say_use:1 ram_card:2 say_however:1 run_high:1 high_speed:1 space_technology:1 duo_dock:1 |
2,134 |
They light the highways in Texas? Funny, everywhere else I've been
they only light 'em at junctions.
I won't even get into how much road markings vary between states and
localities except to say that there are some areas where markings are
essentially nonexistant.
I suspect you have very limited experience -- US freeways vary
dramatically, particularly between states. I can name a number of
interstate highways in various parts of the country where 130 would be
very optimistic in any car.
I'm not sure what you call "quite severe" in terms of road deviations
but I suspect every single bridge junction on I84 through CT would be
considered so. They're hard to take at 85mph. That's not the only
interstate I've seen with such deviations, but it's one I drive
frequently.
Texas is pretty much an edge-case -- you can't assume that everywhere
has roads in such good condition, such flat terrain, and such
wide-open spaces. It just ain't so. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.autos/102968 | 7 | rec_autos_102968 | [('they', 'PRP'), ('light', 'VBD'), ('the', 'DT'), ('highways', 'NNS'), ('in', 'IN'), ('texas', 'NN'), ('funny', 'NN'), ('everywhere', 'RB'), ('else', 'RB'), ('ve', 'VBP'), ('been', 'VBN'), ('they', 'PRP'), ('only', 'RB'), ('light', 'VBD'), ('em', 'NNS'), ('at', 'IN'), ('junctions', 'NNS'), ('won', 'VBD'), ('even', 'RB'), ('get', 'VB'), ('into', 'IN'), ('how', 'WRB'), ('much', 'JJ'), ('road', 'NN'), ('markings', 'NNS'), ('vary', 'VBP'), ('between', 'IN'), ('states', 'NNS'), ('and', 'CC'), ('localities', 'NNS'), ('except', 'IN'), ('to', 'TO'), ('say', 'VB'), ('that', 'IN'), ('there', 'EX'), ('are', 'VBP'), ('some', 'DT'), ('areas', 'NNS'), ('where', 'WRB'), ('markings', 'NNS'), ('are', 'VBP'), ('essentially', 'RB'), ('nonexistant', 'JJ'), ('suspect', 'NN'), ('you', 'PRP'), ('have', 'VBP'), ('very', 'RB'), ('limited', 'JJ'), ('experience', 'NN'), ('--', ':'), ('us', 'PRP'), ('freeways', 'VBP'), ('vary', 'JJ'), ('dramatically', 'RB'), ('particularly', 'RB'), ('between', 'IN'), ('states', 'NNS'), ('can', 'MD'), ('name', 'VB'), ('number', 'NN'), ('of', 'IN'), ('interstate', 'JJ'), ('highways', 'NNS'), ('in', 'IN'), ('various', 'JJ'), ('parts', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('country', 'NN'), ('where', 'WRB'), ('130', 'CD'), ('would', 'MD'), ('be', 'VB'), ('very', 'RB'), ('optimistic', 'JJ'), ('in', 'IN'), ('any', 'DT'), ('car', 'NN'), ('not', 'RB'), ('sure', 'JJ'), ('what', 'WP'), ('you', 'PRP'), ('call', 'VBP'), ('quite', 'RB'), ('severe', 'JJ'), ('in', 'IN'), ('terms', 'NNS'), ('of', 'IN'), ('road', 'NN'), ('deviations', 'NNS'), ('but', 'CC'), ('suspect', 'JJ'), ('every', 'DT'), ('single', 'JJ'), ('bridge', 'NN'), ('junction', 'NN'), ('on', 'IN'), ('i84', 'NN'), ('through', 'IN'), ('ct', 'NN'), ('would', 'MD'), ('be', 'VB'), ('considered', 'VBN'), ('so', 'IN'), ('they', 'PRP'), ('re', 'VBP'), ('hard', 'JJ'), ('to', 'TO'), ('take', 'VB'), ('at', 'IN'), ('85mph', 'CD'), ('that', 'IN'), ('not', 'RB'), ('the', 'DT'), ('only', 'JJ'), ('interstate', 'NN'), ('ve', 'NNS'), ('seen', 'VBN'), ('with', 'IN'), ('such', 'JJ'), ('deviations', 'NNS'), ('but', 'CC'), ('it', 'PRP'), ('one', 'CD'), ('drive', 'NN'), ('frequently', 'RB'), ('texas', 'VBZ'), ('is', 'VBZ'), ('pretty', 'RB'), ('much', 'JJ'), ('an', 'DT'), ('edge', 'NN'), ('case', 'NN'), ('--', ':'), ('you', 'PRP'), ('can', 'MD'), ('assume', 'VB'), ('that', 'DT'), ('everywhere', 'RB'), ('has', 'VBZ'), ('roads', 'VBN'), ('in', 'IN'), ('such', 'JJ'), ('good', 'JJ'), ('condition', 'NN'), ('such', 'JJ'), ('flat', 'JJ'), ('terrain', 'NN'), ('and', 'CC'), ('such', 'JJ'), ('wide', 'JJ'), ('open', 'JJ'), ('spaces', 'NNS'), ('it', 'PRP'), ('just', 'RB'), ('ain', 'VBP'), ('so', 'RB')] | ['light', 'highway', 'texas', 'funny', 'everywhere', 'else', 'light', 'em', 'junction', 'win', 'even', 'get', 'much', 'road', 'marking', 'vary', 'state', 'locality', 'except', 'say', 'area', 'marking', 'essentially', 'nonexistant', 'suspect', 'limited', 'experience', 'u', 'freeways', 'vary', 'dramatically', 'particularly', 'state', 'name', 'number', 'interstate', 'highway', 'various', 'part', 'country', 'would', 'optimistic', 'car', 'sure', 'call', 'quite', 'severe', 'term', 'road', 'deviation', 'suspect', 'every', 'single', 'bridge', 'junction', 'ct', 'would', 'consider', 'hard', 'take', 'interstate', 'see', 'deviation', 'one', 'drive', 'frequently', 'texas', 'pretty', 'much', 'edge', 'case', 'assume', 'everywhere', 'roads', 'good', 'condition', 'flat', 'terrain', 'wide', 'open', 'space'] | ['everywhere_else', 'win_even', 'even_get', 'get_much', 'name_number', 'various_part', 'part_country', 'every_single', 'would_consider', 'one_drive', 'pretty_much', 'good_condition', 'wide_open'] | rec_autos_102968 |@lemmatized light:2 highway:2 texas:2 funny:1 everywhere:2 else:1 em:1 junction:2 win:1 even:1 get:1 much:2 road:2 marking:2 vary:2 state:2 locality:1 except:1 say:1 area:1 essentially:1 nonexistant:1 suspect:2 limited:1 experience:1 u:1 freeways:1 dramatically:1 particularly:1 name:1 number:1 interstate:2 various:1 part:1 country:1 would:2 optimistic:1 car:1 sure:1 call:1 quite:1 severe:1 term:1 deviation:2 every:1 single:1 bridge:1 ct:1 consider:1 hard:1 take:1 see:1 one:1 drive:1 frequently:1 pretty:1 edge:1 case:1 assume:1 roads:1 good:1 condition:1 flat:1 terrain:1 wide:1 open:1 space:1 |@bigram everywhere_else:1 win_even:1 even_get:1 get_much:1 name_number:1 various_part:1 part_country:1 every_single:1 would_consider:1 one_drive:1 pretty_much:1 good_condition:1 wide_open:1 |
2,135 | My HP720 workstation uses PseudoColor (id 0x21, 255 colors) as the | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.windows.x/67279 | 5 | comp_windows_x_67279 | [('my', 'PRP$'), ('hp720', 'NN'), ('workstation', 'NN'), ('uses', 'VBZ'), ('pseudocolor', 'NN'), ('id', 'NN'), ('0x21', 'CD'), ('255', 'CD'), ('colors', 'NNS'), ('as', 'IN'), ('the', 'DT')] | ['workstation', 'use', 'pseudocolor', 'id', 'color'] | [] | comp_windows_x_67279 |@lemmatized workstation:1 use:1 pseudocolor:1 id:1 color:1 |@bigram |
2,136 |
Not so. Surveys have shown while the public thinks certain types
of gun control may be acceptable they do believe they have an
individual right to keep and bear arms, and that the police should
not have /discretion/ over who may and may not own firearms.
By the end of the Clinton administration a lot of things will be
screwed up. Hell, we'll probably be just like England.
"Tough titty" ? My how eloquent you are.
As for your claim, I think Clinton has a big fight ahead of him if
he thinks he's going to pass some comprehensive gun legislation.
He will sign the Brady Bill if it gets to his desk. We will do
whatever we can to either keep that from happening, or modify it
such that it is acceptable to us.
Sorry, that's not possible. And that's why we won't give them up
either. Legally or illegally, American's will keep their firearms.
The number of unregistered weapons in New York City is in the millions.
There aren't even close to that number of violent criminals there.
If the gov't was serious about stopping violent crime they would
keep violent criminals in jail for a long long time where they
belong instead of letting them out on early release.
Hey, we can go into politics too if we feel like it.
I don't believe this one bit.
Snore. Like I take advice on the RKBA from a Brit. No way.
You watch too much "Star Trek". Actually, this is an understandable
attitude from a Brit; you are a subject of the state.
Not necessarily. There are ways of resisting oppression without
getting caught by the gov't.
The "abstract criminal" like the ones who killed a relative of mine
while she was working in a carry-out.
While undesirable, they are sometimes unavoidable. If you don't want
to resist a criminal attack by all means do nothing. I will (a) take
my chances resisting violent attack, and (b) stand a better chance of
being unharmed than someone who does nothing.
What a joke. Criminals want a disarmed population. How can you keep
criminals from preying on us after our best means of self defense is
taken away ? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.guns/54189 | 16 | talk_politics_guns_54189 | [('not', 'RB'), ('so', 'RB'), ('surveys', 'NNS'), ('have', 'VBP'), ('shown', 'VBN'), ('while', 'IN'), ('the', 'DT'), ('public', 'JJ'), ('thinks', 'VBZ'), ('certain', 'JJ'), ('types', 'NNS'), ('of', 'IN'), ('gun', 'NN'), ('control', 'NN'), ('may', 'MD'), ('be', 'VB'), ('acceptable', 'JJ'), ('they', 'PRP'), ('do', 'VBP'), ('believe', 'VBP'), ('they', 'PRP'), ('have', 'VBP'), ('an', 'DT'), ('individual', 'JJ'), ('right', 'NN'), ('to', 'TO'), ('keep', 'VB'), ('and', 'CC'), ('bear', 'VB'), ('arms', 'NNS'), ('and', 'CC'), ('that', 'IN'), ('the', 'DT'), ('police', 'NN'), ('should', 'MD'), ('not', 'RB'), ('have', 'VB'), ('discretion', 'NN'), ('over', 'IN'), ('who', 'WP'), ('may', 'MD'), ('and', 'CC'), ('may', 'MD'), ('not', 'RB'), ('own', 'VB'), ('firearms', 'NNS'), ('by', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('the', 'DT'), ('clinton', 'NN'), ('administration', 'NN'), ('lot', 'NN'), ('of', 'IN'), ('things', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('screwed', 'VBN'), ('up', 'RP'), ('hell', 'NN'), ('we', 'PRP'), ('ll', 'VBD'), ('probably', 'RB'), ('be', 'VB'), ('just', 'RB'), ('like', 'IN'), ('england', 'VBP'), ('tough', 'JJ'), ('titty', 'NN'), ('my', 'PRP$'), ('how', 'WRB'), ('eloquent', 'JJ'), ('you', 'PRP'), ('are', 'VBP'), ('as', 'IN'), ('for', 'IN'), ('your', 'PRP$'), ('claim', 'NN'), ('think', 'VBP'), ('clinton', 'NN'), ('has', 'VBZ'), ('big', 'JJ'), ('fight', 'VBN'), ('ahead', 'RB'), ('of', 'IN'), ('him', 'PRP'), ('if', 'IN'), ('he', 'PRP'), ('thinks', 'VBZ'), ('he', 'PRP'), ('going', 'VBG'), ('to', 'TO'), ('pass', 'VB'), ('some', 'DT'), ('comprehensive', 'JJ'), ('gun', 'NN'), ('legislation', 'NN'), ('he', 'PRP'), ('will', 'MD'), ('sign', 'VB'), ('the', 'DT'), ('brady', 'JJ'), ('bill', 'NN'), ('if', 'IN'), ('it', 'PRP'), ('gets', 'VBZ'), ('to', 'TO'), ('his', 'PRP$'), ('desk', 'NN'), ('we', 'PRP'), ('will', 'MD'), ('do', 'VB'), ('whatever', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('to', 'TO'), ('either', 'VB'), ('keep', 'VB'), ('that', 'IN'), ('from', 'IN'), ('happening', 'VBG'), ('or', 'CC'), ('modify', 'VB'), ('it', 'PRP'), ('such', 'JJ'), ('that', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('acceptable', 'JJ'), ('to', 'TO'), ('us', 'PRP'), ('sorry', 'VB'), ('that', 'IN'), ('not', 'RB'), ('possible', 'JJ'), ('and', 'CC'), ('that', 'DT'), ('why', 'WRB'), ('we', 'PRP'), ('won', 'VBD'), ('give', 'VB'), ('them', 'PRP'), ('up', 'RP'), ('either', 'CC'), ('legally', 'RB'), ('or', 'CC'), ('illegally', 'RB'), ('american', 'JJ'), ('will', 'MD'), ('keep', 'VB'), ('their', 'PRP$'), ('firearms', 'NNS'), ('the', 'DT'), ('number', 'NN'), ('of', 'IN'), ('unregistered', 'JJ'), ('weapons', 'NNS'), ('in', 'IN'), ('new', 'JJ'), ('york', 'NN'), ('city', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('the', 'DT'), ('millions', 'NNS'), ('there', 'EX'), ('aren', 'RB'), ('even', 'RB'), ('close', 'VB'), ('to', 'TO'), ('that', 'DT'), ('number', 'NN'), ('of', 'IN'), ('violent', 'JJ'), ('criminals', 'NNS'), ('there', 'RB'), ('if', 'IN'), ('the', 'DT'), ('gov', 'NN'), ('was', 'VBD'), ('serious', 'JJ'), ('about', 'IN'), ('stopping', 'VBG'), ('violent', 'JJ'), ('crime', 'NN'), ('they', 'PRP'), ('would', 'MD'), ('keep', 'VB'), ('violent', 'JJ'), ('criminals', 'NNS'), ('in', 'IN'), ('jail', 'NN'), ('for', 'IN'), ('long', 'RB'), ('long', 'JJ'), ('time', 'NN'), ('where', 'WRB'), ('they', 'PRP'), ('belong', 'VBP'), ('instead', 'RB'), ('of', 'IN'), ('letting', 'VBG'), ('them', 'PRP'), ('out', 'RP'), ('on', 'IN'), ('early', 'JJ'), ('release', 'NN'), ('hey', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('go', 'VB'), ('into', 'IN'), ('politics', 'NNS'), ('too', 'RB'), ('if', 'IN'), ('we', 'PRP'), ('feel', 'VBP'), ('like', 'IN'), ('it', 'PRP'), ('don', 'VBZ'), ('believe', 'VBP'), ('this', 'DT'), ('one', 'CD'), ('bit', 'NN'), ('snore', 'RBR'), ('like', 'IN'), ('take', 'VB'), ('advice', 'NN'), ('on', 'IN'), ('the', 'DT'), ('rkba', 'NN'), ('from', 'IN'), ('brit', 'NN'), ('no', 'DT'), ('way', 'NN'), ('you', 'PRP'), ('watch', 'VBP'), ('too', 'RB'), ('much', 'JJ'), ('star', 'NN'), ('trek', 'NN'), ('".', 'NNP'), ('actually', 'RB'), ('this', 'DT'), ('is', 'VBZ'), ('an', 'DT'), ('understandable', 'JJ'), ('attitude', 'NN'), ('from', 'IN'), ('brit', 'NN'), ('you', 'PRP'), ('are', 'VBP'), ('subject', 'JJ'), ('of', 'IN'), ('the', 'DT'), ('state', 'NN'), ('not', 'RB'), ('necessarily', 'RB'), ('there', 'EX'), ('are', 'VBP'), ('ways', 'NNS'), ('of', 'IN'), ('resisting', 'VBG'), ('oppression', 'NN'), ('without', 'IN'), ('getting', 'VBG'), ('caught', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('gov', 'NN'), ('the', 'DT'), ('abstract', 'JJ'), ('criminal', 'NN'), ('like', 'IN'), ('the', 'DT'), ('ones', 'NNS'), ('who', 'WP'), ('killed', 'VBD'), ('relative', 'NN'), ('of', 'IN'), ('mine', 'NN'), ('while', 'IN'), ('she', 'PRP'), ('was', 'VBD'), ('working', 'VBG'), ('in', 'IN'), ('carry', 'NN'), ('out', 'RP'), ('while', 'IN'), ('undesirable', 'JJ'), ('they', 'PRP'), ('are', 'VBP'), ('sometimes', 'RB'), ('unavoidable', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('don', 'VBP'), ('want', 'VBP'), ('to', 'TO'), ('resist', 'VB'), ('criminal', 'JJ'), ('attack', 'NN'), ('by', 'IN'), ('all', 'DT'), ('means', 'NNS'), ('do', 'VBP'), ('nothing', 'NN'), ('will', 'MD'), ('take', 'VB'), ('my', 'PRP$'), ('chances', 'NNS'), ('resisting', 'VBG'), ('violent', 'JJ'), ('attack', 'NN'), ('and', 'CC'), ('stand', 'VB'), ('better', 'JJR'), ('chance', 'NN'), ('of', 'IN'), ('being', 'VBG'), ('unharmed', 'VBN'), ('than', 'IN'), ('someone', 'NN'), ('who', 'WP'), ('does', 'VBZ'), ('nothing', 'NN'), ('what', 'WP'), ('joke', 'VBD'), ('criminals', 'NNS'), ('want', 'VBP'), ('disarmed', 'VBN'), ('population', 'NN'), ('how', 'WRB'), ('can', 'MD'), ('you', 'PRP'), ('keep', 'VB'), ('criminals', 'NNS'), ('from', 'IN'), ('preying', 'VBG'), ('on', 'IN'), ('us', 'PRP'), ('after', 'IN'), ('our', 'PRP$'), ('best', 'JJS'), ('means', 'NNS'), ('of', 'IN'), ('self', 'NN'), ('defense', 'NN'), ('is', 'VBZ'), ('taken', 'VBN'), ('away', 'RB')] | ['survey', 'show', 'public', 'think', 'certain', 'type', 'gun', 'control', 'may', 'acceptable', 'believe', 'individual', 'right', 'keep', 'bear', 'arm', 'police', 'discretion', 'may', 'may', 'firearm', 'end', 'clinton', 'administration', 'lot', 'thing', 'screw', 'hell', 'probably', 'like', 'england', 'tough', 'titty', 'eloquent', 'claim', 'think', 'clinton', 'big', 'fight', 'ahead', 'think', 'go', 'pass', 'comprehensive', 'gun', 'legislation', 'sign', 'brady', 'bill', 'get', 'desk', 'whatever', 'either', 'keep', 'happen', 'modify', 'acceptable', 'u', 'sorry', 'possible', 'win', 'give', 'either', 'legally', 'illegally', 'american', 'keep', 'firearm', 'number', 'unregistered', 'weapon', 'new', 'york', 'city', 'million', 'even', 'close', 'number', 'violent', 'criminal', 'gov', 'serious', 'stop', 'violent', 'crime', 'would', 'keep', 'violent', 'criminal', 'jail', 'long', 'long', 'time', 'belong', 'instead', 'let', 'early', 'release', 'hey', 'go', 'politics', 'feel', 'like', 'believe', 'one', 'bit', 'snore', 'like', 'take', 'advice', 'rkba', 'brit', 'way', 'watch', 'much', 'star', 'trek', 'actually', 'understandable', 'attitude', 'brit', 'subject', 'state', 'necessarily', 'way', 'resist', 'oppression', 'without', 'get', 'catch', 'gov', 'abstract', 'criminal', 'like', 'one', 'kill', 'relative', 'mine', 'work', 'carry', 'undesirable', 'sometimes', 'unavoidable', 'want', 'resist', 'criminal', 'attack', 'mean', 'nothing', 'take', 'chance', 'resist', 'violent', 'attack', 'stand', 'good', 'chance', 'unharmed', 'someone', 'nothing', 'joke', 'criminal', 'want', 'disarm', 'population', 'keep', 'criminal', 'prey', 'u', 'best', 'mean', 'self', 'defense', 'take', 'away'] | ['certain_type', 'gun_control', 'individual_right', 'right_keep', 'keep_bear', 'bear_arm', 'may_may', 'clinton_administration', 'lot_thing', 'probably_like', 'think_go', 'gun_legislation', 'brady_bill', 'win_give', 'new_york', 'york_city', 'even_close', 'violent_criminal', 'violent_crime', 'crime_would', 'would_keep', 'violent_criminal', 'long_long', 'long_time', 'feel_like', 'like_believe', 'believe_one', 'one_bit', 'like_take', 'take_advice', 'star_trek', 'without_get', 'get_catch', 'like_one', 'one_kill', 'mine_work', 'mean_nothing', 'take_chance', 'good_chance', 'self_defense', 'take_away'] | talk_politics_guns_54189 |@lemmatized survey:1 show:1 public:1 think:3 certain:1 type:1 gun:2 control:1 may:3 acceptable:2 believe:2 individual:1 right:1 keep:5 bear:1 arm:1 police:1 discretion:1 firearm:2 end:1 clinton:2 administration:1 lot:1 thing:1 screw:1 hell:1 probably:1 like:4 england:1 tough:1 titty:1 eloquent:1 claim:1 big:1 fight:1 ahead:1 go:2 pass:1 comprehensive:1 legislation:1 sign:1 brady:1 bill:1 get:2 desk:1 whatever:1 either:2 happen:1 modify:1 u:2 sorry:1 possible:1 win:1 give:1 legally:1 illegally:1 american:1 number:2 unregistered:1 weapon:1 new:1 york:1 city:1 million:1 even:1 close:1 violent:4 criminal:6 gov:2 serious:1 stop:1 crime:1 would:1 jail:1 long:2 time:1 belong:1 instead:1 let:1 early:1 release:1 hey:1 politics:1 feel:1 one:2 bit:1 snore:1 take:3 advice:1 rkba:1 brit:2 way:2 watch:1 much:1 star:1 trek:1 actually:1 understandable:1 attitude:1 subject:1 state:1 necessarily:1 resist:3 oppression:1 without:1 catch:1 abstract:1 kill:1 relative:1 mine:1 work:1 carry:1 undesirable:1 sometimes:1 unavoidable:1 want:2 attack:2 mean:2 nothing:2 chance:2 stand:1 good:1 unharmed:1 someone:1 joke:1 disarm:1 population:1 prey:1 best:1 self:1 defense:1 away:1 |@bigram certain_type:1 gun_control:1 individual_right:1 right_keep:1 keep_bear:1 bear_arm:1 may_may:1 clinton_administration:1 lot_thing:1 probably_like:1 think_go:1 gun_legislation:1 brady_bill:1 win_give:1 new_york:1 york_city:1 even_close:1 violent_criminal:2 violent_crime:1 crime_would:1 would_keep:1 long_long:1 long_time:1 feel_like:1 like_believe:1 believe_one:1 one_bit:1 like_take:1 take_advice:1 star_trek:1 without_get:1 get_catch:1 like_one:1 one_kill:1 mine_work:1 mean_nothing:1 take_chance:1 good_chance:1 self_defense:1 take_away:1 |
2,137 | My god, hope we don't have to put up with this kind of junk all season!
How many home runs by Tartabull? Just 1, right, you must be thinking
of Dean Palmer or Juan Gonzalez (both of Texas) who each had 2 homers.
I don't know how many to follow, but he was 1 for 4.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/102689 | 9 | rec_sport_baseball_102689 | [('my', 'PRP$'), ('god', 'NNS'), ('hope', 'VBP'), ('we', 'PRP'), ('don', 'NNS'), ('have', 'VBP'), ('to', 'TO'), ('put', 'VB'), ('up', 'RP'), ('with', 'IN'), ('this', 'DT'), ('kind', 'NN'), ('of', 'IN'), ('junk', 'NN'), ('all', 'DT'), ('season', 'NN'), ('how', 'WRB'), ('many', 'JJ'), ('home', 'NN'), ('runs', 'NNS'), ('by', 'IN'), ('tartabull', 'NN'), ('just', 'RB'), ('right', 'RB'), ('you', 'PRP'), ('must', 'MD'), ('be', 'VB'), ('thinking', 'VBG'), ('of', 'IN'), ('dean', 'JJ'), ('palmer', 'NN'), ('or', 'CC'), ('juan', 'NN'), ('gonzalez', 'JJ'), ('both', 'DT'), ('of', 'IN'), ('texas', 'NN'), ('who', 'WP'), ('each', 'DT'), ('had', 'VBD'), ('homers', 'NNS'), ('don', 'RB'), ('know', 'VBP'), ('how', 'WRB'), ('many', 'JJ'), ('to', 'TO'), ('follow', 'VB'), ('but', 'CC'), ('he', 'PRP'), ('was', 'VBD'), ('for', 'IN')] | ['god', 'hope', 'put', 'kind', 'junk', 'season', 'many', 'home', 'run', 'tartabull', 'right', 'must', 'think', 'dean', 'palmer', 'juan', 'gonzalez', 'texas', 'homer', 'know', 'many', 'follow'] | ['home_run', 'must_think', 'know_many'] | rec_sport_baseball_102689 |@lemmatized god:1 hope:1 put:1 kind:1 junk:1 season:1 many:2 home:1 run:1 tartabull:1 right:1 must:1 think:1 dean:1 palmer:1 juan:1 gonzalez:1 texas:1 homer:1 know:1 follow:1 |@bigram home_run:1 must_think:1 know_many:1 |
2,138 | It depends on what you'd like your joystick for. I've seen Gravis
joysticks at Radio Shack. They seemed flimsy and didn't fit well in my
hand. I have heard on c.s.i.p.games that they don't last well (less than
a year) on flightsims. One redeeming feature does seem to be the ability
to adjust the tension of the stick.
I recently purchased a CH Flightstick. There aren't any suction cups and
no tension adjusters but otherwise it seems to be an excellent joystick.
I'm currently using it for the Wing Commander series and Red Baron. Works
quite well. The large base does not require a steadying hand and so
leaves it free. The buttons provide good tactile response (you can hear
and feel them well). There are other models made by CH that can go up or
down in features.
For price comparison Gravis analogue joysticks sell for ~$35.00 here
compared to the $45.00 I paid for a CH Flightstick. I think the extra
$10.00 is worth it just in feel. Best thing to do is to ask a salesperson
to let you try them out or at least feel it before you buy.
Just another note, analogue joysticks are best for flightsims or something
that needs sensitive touch. If you're only playing games such as Castle
Wolfenstein or some other game that only uses digital input (ie. only up,
down, left, etc. instead of 'how much right') you might want to look into
a Gravis gamepad. They look like a Nintendo control pad but I don't know
much beyond that. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.ibm.pc.hardware/60204 | 3 | comp_sys_ibm_pc_hardware_60204 | [('it', 'PRP'), ('depends', 'VBZ'), ('on', 'IN'), ('what', 'WP'), ('you', 'PRP'), ('like', 'VBP'), ('your', 'PRP$'), ('joystick', 'NN'), ('for', 'IN'), ('ve', 'NN'), ('seen', 'VBN'), ('gravis', 'NN'), ('joysticks', 'NNS'), ('at', 'IN'), ('radio', 'NN'), ('shack', 'NN'), ('they', 'PRP'), ('seemed', 'VBD'), ('flimsy', 'JJ'), ('and', 'CC'), ('didn', 'JJ'), ('fit', 'NN'), ('well', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('hand', 'NN'), ('have', 'VBP'), ('heard', 'VBN'), ('on', 'IN'), ('games', 'NNS'), ('that', 'IN'), ('they', 'PRP'), ('don', 'VBP'), ('last', 'JJ'), ('well', 'RB'), ('less', 'RBR'), ('than', 'IN'), ('year', 'NN'), ('on', 'IN'), ('flightsims', 'NNS'), ('one', 'CD'), ('redeeming', 'NN'), ('feature', 'NN'), ('does', 'VBZ'), ('seem', 'VB'), ('to', 'TO'), ('be', 'VB'), ('the', 'DT'), ('ability', 'NN'), ('to', 'TO'), ('adjust', 'VB'), ('the', 'DT'), ('tension', 'NN'), ('of', 'IN'), ('the', 'DT'), ('stick', 'NN'), ('recently', 'RB'), ('purchased', 'VBD'), ('ch', 'NN'), ('flightstick', 'NN'), ('there', 'RB'), ('aren', 'VBZ'), ('any', 'DT'), ('suction', 'NN'), ('cups', 'NNS'), ('and', 'CC'), ('no', 'DT'), ('tension', 'NN'), ('adjusters', 'NNS'), ('but', 'CC'), ('otherwise', 'VBP'), ('it', 'PRP'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('an', 'DT'), ('excellent', 'JJ'), ('joystick', 'NN'), ('currently', 'RB'), ('using', 'VBG'), ('it', 'PRP'), ('for', 'IN'), ('the', 'DT'), ('wing', 'NN'), ('commander', 'NN'), ('series', 'NN'), ('and', 'CC'), ('red', 'JJ'), ('baron', 'NN'), ('works', 'VBZ'), ('quite', 'RB'), ('well', 'RB'), ('the', 'DT'), ('large', 'JJ'), ('base', 'NN'), ('does', 'VBZ'), ('not', 'RB'), ('require', 'VB'), ('steadying', 'VBG'), ('hand', 'NN'), ('and', 'CC'), ('so', 'RB'), ('leaves', 'VBZ'), ('it', 'PRP'), ('free', 'JJ'), ('the', 'DT'), ('buttons', 'NNS'), ('provide', 'VBP'), ('good', 'JJ'), ('tactile', 'NN'), ('response', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('hear', 'VB'), ('and', 'CC'), ('feel', 'VB'), ('them', 'PRP'), ('well', 'RB'), (').', 'IN'), ('there', 'EX'), ('are', 'VBP'), ('other', 'JJ'), ('models', 'NNS'), ('made', 'VBN'), ('by', 'IN'), ('ch', 'NN'), ('that', 'WDT'), ('can', 'MD'), ('go', 'VB'), ('up', 'RP'), ('or', 'CC'), ('down', 'RB'), ('in', 'IN'), ('features', 'NNS'), ('for', 'IN'), ('price', 'NN'), ('comparison', 'NN'), ('gravis', 'NN'), ('analogue', 'NN'), ('joysticks', 'NNS'), ('sell', 'VBP'), ('for', 'IN'), ('~$', '$'), ('35', 'CD'), ('00', 'CD'), ('here', 'RB'), ('compared', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('45', 'CD'), ('00', 'CD'), ('paid', 'VBN'), ('for', 'IN'), ('ch', 'NN'), ('flightstick', 'NN'), ('think', 'VBP'), ('the', 'DT'), ('extra', 'JJ'), ('10', 'CD'), ('00', 'CD'), ('is', 'VBZ'), ('worth', 'IN'), ('it', 'PRP'), ('just', 'RB'), ('in', 'IN'), ('feel', 'NN'), ('best', 'RB'), ('thing', 'NN'), ('to', 'TO'), ('do', 'VB'), ('is', 'VBZ'), ('to', 'TO'), ('ask', 'VB'), ('salesperson', 'NN'), ('to', 'TO'), ('let', 'VB'), ('you', 'PRP'), ('try', 'VB'), ('them', 'PRP'), ('out', 'RP'), ('or', 'CC'), ('at', 'IN'), ('least', 'JJS'), ('feel', 'VB'), ('it', 'PRP'), ('before', 'IN'), ('you', 'PRP'), ('buy', 'VBP'), ('just', 'RB'), ('another', 'DT'), ('note', 'NN'), ('analogue', 'NN'), ('joysticks', 'NNS'), ('are', 'VBP'), ('best', 'JJS'), ('for', 'IN'), ('flightsims', 'NNS'), ('or', 'CC'), ('something', 'NN'), ('that', 'WDT'), ('needs', 'VBZ'), ('sensitive', 'JJ'), ('touch', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('re', 'VBP'), ('only', 'RB'), ('playing', 'VBG'), ('games', 'NNS'), ('such', 'JJ'), ('as', 'IN'), ('castle', 'JJ'), ('wolfenstein', 'NN'), ('or', 'CC'), ('some', 'DT'), ('other', 'JJ'), ('game', 'NN'), ('that', 'IN'), ('only', 'JJ'), ('uses', 'VBZ'), ('digital', 'JJ'), ('input', 'NN'), ('ie', 'NN'), ('only', 'RB'), ('up', 'RB'), ('down', 'RB'), ('left', 'VBD'), ('etc', 'JJ'), ('instead', 'RB'), ('of', 'IN'), ('how', 'WRB'), ('much', 'JJ'), ('right', 'NN'), ("')", 'POS'), ('you', 'PRP'), ('might', 'MD'), ('want', 'VB'), ('to', 'TO'), ('look', 'VB'), ('into', 'IN'), ('gravis', 'JJ'), ('gamepad', 'NN'), ('they', 'PRP'), ('look', 'VBP'), ('like', 'IN'), ('nintendo', 'NNS'), ('control', 'VBP'), ('pad', 'NN'), ('but', 'CC'), ('don', 'NN'), ('know', 'VBP'), ('much', 'RB'), ('beyond', 'IN'), ('that', 'DT')] | ['depend', 'like', 'joystick', 'see', 'gravis', 'joystick', 'radio', 'shack', 'seem', 'flimsy', 'fit', 'well', 'hand', 'hear', 'game', 'last', 'well', 'less', 'year', 'flightsims', 'one', 'redeeming', 'feature', 'seem', 'ability', 'adjust', 'tension', 'stick', 'recently', 'purchase', 'ch', 'flightstick', 'suction', 'cup', 'tension', 'adjuster', 'otherwise', 'seem', 'excellent', 'joystick', 'currently', 'use', 'wing', 'commander', 'series', 'red', 'baron', 'work', 'quite', 'well', 'large', 'base', 'require', 'steady', 'hand', 'leave', 'free', 'button', 'provide', 'good', 'tactile', 'response', 'hear', 'feel', 'well', 'model', 'make', 'ch', 'go', 'feature', 'price', 'comparison', 'gravis', 'analogue', 'joystick', 'sell', 'compare', 'pay', 'ch', 'flightstick', 'think', 'extra', 'worth', 'feel', 'best', 'thing', 'ask', 'salesperson', 'let', 'try', 'least', 'feel', 'buy', 'another', 'note', 'analogue', 'joystick', 'best', 'flightsims', 'something', 'need', 'sensitive', 'touch', 'play', 'game', 'castle', 'wolfenstein', 'game', 'use', 'digital', 'input', 'ie', 'leave', 'etc', 'instead', 'much', 'right', 'might', 'want', 'look', 'gravis', 'gamepad', 'look', 'like', 'nintendo', 'control', 'pad', 'know', 'much', 'beyond'] | ['radio_shack', 'fit_well', 'game_last', 'less_year', 'recently_purchase', 'currently_use', 'wing_commander', 'work_quite', 'quite_well', 'well_large', 'provide_good', 'feel_well', 'think_extra', 'best_thing', 'thing_ask', 'let_try', 'buy_another', 'another_note', 'play_game', 'game_use', 'use_digital', 'might_want', 'want_look', 'look_like', 'know_much'] | comp_sys_ibm_pc_hardware_60204 |@lemmatized depend:1 like:2 joystick:5 see:1 gravis:3 radio:1 shack:1 seem:3 flimsy:1 fit:1 well:4 hand:2 hear:2 game:3 last:1 less:1 year:1 flightsims:2 one:1 redeeming:1 feature:2 ability:1 adjust:1 tension:2 stick:1 recently:1 purchase:1 ch:3 flightstick:2 suction:1 cup:1 adjuster:1 otherwise:1 excellent:1 currently:1 use:2 wing:1 commander:1 series:1 red:1 baron:1 work:1 quite:1 large:1 base:1 require:1 steady:1 leave:2 free:1 button:1 provide:1 good:1 tactile:1 response:1 feel:3 model:1 make:1 go:1 price:1 comparison:1 analogue:2 sell:1 compare:1 pay:1 think:1 extra:1 worth:1 best:2 thing:1 ask:1 salesperson:1 let:1 try:1 least:1 buy:1 another:1 note:1 something:1 need:1 sensitive:1 touch:1 play:1 castle:1 wolfenstein:1 digital:1 input:1 ie:1 etc:1 instead:1 much:2 right:1 might:1 want:1 look:2 gamepad:1 nintendo:1 control:1 pad:1 know:1 beyond:1 |@bigram radio_shack:1 fit_well:1 game_last:1 less_year:1 recently_purchase:1 currently_use:1 wing_commander:1 work_quite:1 quite_well:1 well_large:1 provide_good:1 feel_well:1 think_extra:1 best_thing:1 thing_ask:1 let_try:1 buy_another:1 another_note:1 play_game:1 game_use:1 use_digital:1 might_want:1 want_look:1 look_like:1 know_much:1 |
2,139 | Hi.. Me and My roomate are going to redecorate the "living room" and
we thought it would be a cool idea to have a license plate from every
state in the US and then from whereever else we could find, like canada,
Mexixo, even some European ones.
If anyone has any ideas or knows someone that could help us out
please let me know.... The more recent, the better, but anything
would be nice.
Either that or if you have an old plate hanging around... (hint hint!)
Kev
[email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.autos/102897 | 7 | rec_autos_102897 | [('hi', 'NN'), ('..', 'VB'), ('me', 'PRP'), ('and', 'CC'), ('my', 'PRP$'), ('roomate', 'NN'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('redecorate', 'VB'), ('the', 'DT'), ('living', 'NN'), ('room', 'NN'), ('and', 'CC'), ('we', 'PRP'), ('thought', 'VBD'), ('it', 'PRP'), ('would', 'MD'), ('be', 'VB'), ('cool', 'JJ'), ('idea', 'NN'), ('to', 'TO'), ('have', 'VB'), ('license', 'JJ'), ('plate', 'NN'), ('from', 'IN'), ('every', 'DT'), ('state', 'NN'), ('in', 'IN'), ('the', 'DT'), ('us', 'PRP'), ('and', 'CC'), ('then', 'RB'), ('from', 'IN'), ('whereever', 'NN'), ('else', 'RB'), ('we', 'PRP'), ('could', 'MD'), ('find', 'VB'), ('like', 'IN'), ('canada', 'NN'), ('mexixo', 'NN'), ('even', 'RB'), ('some', 'DT'), ('european', 'JJ'), ('ones', 'NNS'), ('if', 'IN'), ('anyone', 'NN'), ('has', 'VBZ'), ('any', 'DT'), ('ideas', 'NNS'), ('or', 'CC'), ('knows', 'VBZ'), ('someone', 'NN'), ('that', 'WDT'), ('could', 'MD'), ('help', 'VB'), ('us', 'PRP'), ('out', 'RP'), ('please', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('....', 'VBZ'), ('the', 'DT'), ('more', 'RBR'), ('recent', 'JJ'), ('the', 'DT'), ('better', 'JJR'), ('but', 'CC'), ('anything', 'NN'), ('would', 'MD'), ('be', 'VB'), ('nice', 'JJ'), ('either', 'CC'), ('that', 'DT'), ('or', 'CC'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('an', 'DT'), ('old', 'JJ'), ('plate', 'NN'), ('hanging', 'NN'), ('around', 'IN'), ('...', ':'), ('hint', 'NN'), ('hint', 'NN'), ('!)', 'NNP'), ('kev', 'NN')] | ['hi', 'roomate', 'go', 'redecorate', 'living', 'room', 'think', 'would', 'cool', 'idea', 'license', 'plate', 'every', 'state', 'u', 'whereever', 'else', 'could', 'find', 'like', 'canada', 'mexixo', 'even', 'european', 'one', 'anyone', 'idea', 'know', 'someone', 'could', 'help', 'u', 'please', 'let', 'know', 'recent', 'good', 'anything', 'would', 'nice', 'either', 'old', 'plate', 'hanging', 'around', 'hint', 'hint', 'kev'] | ['living_room', 'think_would', 'license_plate', 'every_state', 'else_could', 'could_find', 'one_anyone', 'anyone_idea', 'know_someone', 'someone_could', 'could_help', 'help_u', 'u_please', 'please_let', 'let_know', 'anything_would', 'would_nice'] | rec_autos_102897 |@lemmatized hi:1 roomate:1 go:1 redecorate:1 living:1 room:1 think:1 would:2 cool:1 idea:2 license:1 plate:2 every:1 state:1 u:2 whereever:1 else:1 could:2 find:1 like:1 canada:1 mexixo:1 even:1 european:1 one:1 anyone:1 know:2 someone:1 help:1 please:1 let:1 recent:1 good:1 anything:1 nice:1 either:1 old:1 hanging:1 around:1 hint:2 kev:1 |@bigram living_room:1 think_would:1 license_plate:1 every_state:1 else_could:1 could_find:1 one_anyone:1 anyone_idea:1 know_someone:1 someone_could:1 could_help:1 help_u:1 u_please:1 please_let:1 let_know:1 anything_would:1 would_nice:1 |
2,140 | In comp.os.ms-windows.misc you write:
you might want to look in windows FAQ for this one, but here is my best
explanation. But I can't guarantee that I'm not way off base...
The permenant swap file is read/written to by windows by talking
directly to the hard disk controller card. The controller card must
use the protocal set up by western digital (or something like that).
Windows creates a file called spart.par in your windows directory that
points to that file. It then uses the physical information about your
disk to index to information in that file.
compressed disks are actually "logical" disks. These disks have different
characteristics than the actual physical disk. Furthermore, the information
on the compressed disks must be uncompressed before it is used. (i.e it must
go through the decompression program that traps disk reads at the operating
system level or the BIOS level). Because of this "inbetween" program, windows
cannot use direct methods to read from the "logical" disk.
a permenant swap file is only there to "reserve" an area of the disk that
windows can use and to block that space from DOS. Windows would theoretically
not even have to access the file from DOS to use that disk space. (I don't
know if it does or doesn't...but it checks for it somewhere everytime you
boot windows.)
a temporary swap file is just a normal DOS file that is accessed by windows
via DOS and the BIOS. If a disk compression program or other TSR is loaded
the file access must go through DOS...TSR'S (disk compression)...and BIOS in
order to be access. (i.e. NEVER USE A TEMPORARY SWAP FILE...NEVER)
more on permenent swap files...
i'm sure everyone who has an uncompressed part of their compressed hard disk
has seen the message "you have selected a swap file greater than the suggested
size...windows will only use the size suggested...do you wan't to create this
swap file anyway" or something like that.
well, a friend of mine (ROBERT) called microsoft and asked them what and why.
what they said is that windows checks the amount of free disk space and
divides that number by 2. Then it checks for the largest contiguous block
of free disk space. Windows then suggests the smaller of the two numbers.
They also said that under absolutely no circumstances...NONE!...will windows
uses a swap file larger than the suggested size. Well...that's what he
said!
I call bull@#$#. If this is true why does windows report the memory is
available to me if it's not going to use it?
any takers?
James | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9450 | 2 | comp_os_ms-windows_misc_9450 | [('in', 'IN'), ('comp', 'JJ'), ('os', 'NN'), ('ms', 'NN'), ('windows', 'VBZ'), ('misc', 'NN'), ('you', 'PRP'), ('write', 'VBP'), ('you', 'PRP'), ('might', 'MD'), ('want', 'VB'), ('to', 'TO'), ('look', 'VB'), ('in', 'IN'), ('windows', 'NNS'), ('faq', 'VBP'), ('for', 'IN'), ('this', 'DT'), ('one', 'CD'), ('but', 'CC'), ('here', 'RB'), ('is', 'VBZ'), ('my', 'PRP$'), ('best', 'JJS'), ('explanation', 'NN'), ('but', 'CC'), ('can', 'MD'), ('guarantee', 'VB'), ('that', 'IN'), ('not', 'RB'), ('way', 'NN'), ('off', 'IN'), ('base', 'NN'), ('...', ':'), ('the', 'DT'), ('permenant', 'JJ'), ('swap', 'NN'), ('file', 'NN'), ('is', 'VBZ'), ('read', 'VBN'), ('written', 'VBN'), ('to', 'TO'), ('by', 'IN'), ('windows', 'NNS'), ('by', 'IN'), ('talking', 'VBG'), ('directly', 'RB'), ('to', 'TO'), ('the', 'DT'), ('hard', 'JJ'), ('disk', 'NN'), ('controller', 'NN'), ('card', 'NN'), ('the', 'DT'), ('controller', 'NN'), ('card', 'NN'), ('must', 'MD'), ('use', 'VB'), ('the', 'DT'), ('protocal', 'NN'), ('set', 'VBN'), ('up', 'RP'), ('by', 'IN'), ('western', 'JJ'), ('digital', 'NN'), ('or', 'CC'), ('something', 'NN'), ('like', 'IN'), ('that', 'DT'), (').', 'NN'), ('windows', 'VBZ'), ('creates', 'NNS'), ('file', 'NN'), ('called', 'VBN'), ('spart', 'NN'), ('par', 'NN'), ('in', 'IN'), ('your', 'PRP$'), ('windows', 'NNS'), ('directory', 'NN'), ('that', 'WDT'), ('points', 'VBZ'), ('to', 'TO'), ('that', 'DT'), ('file', 'NN'), ('it', 'PRP'), ('then', 'RB'), ('uses', 'VBZ'), ('the', 'DT'), ('physical', 'JJ'), ('information', 'NN'), ('about', 'IN'), ('your', 'PRP$'), ('disk', 'NN'), ('to', 'TO'), ('index', 'NN'), ('to', 'TO'), ('information', 'NN'), ('in', 'IN'), ('that', 'DT'), ('file', 'NN'), ('compressed', 'VBD'), ('disks', 'NNS'), ('are', 'VBP'), ('actually', 'RB'), ('logical', 'JJ'), ('disks', 'NNS'), ('these', 'DT'), ('disks', 'NNS'), ('have', 'VBP'), ('different', 'JJ'), ('characteristics', 'NNS'), ('than', 'IN'), ('the', 'DT'), ('actual', 'JJ'), ('physical', 'JJ'), ('disk', 'NN'), ('furthermore', 'VBD'), ('the', 'DT'), ('information', 'NN'), ('on', 'IN'), ('the', 'DT'), ('compressed', 'JJ'), ('disks', 'NNS'), ('must', 'MD'), ('be', 'VB'), ('uncompressed', 'VBN'), ('before', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('used', 'VBN'), ('it', 'PRP'), ('must', 'MD'), ('go', 'VB'), ('through', 'IN'), ('the', 'DT'), ('decompression', 'NN'), ('program', 'NN'), ('that', 'WDT'), ('traps', 'VBZ'), ('disk', 'JJ'), ('reads', 'NNS'), ('at', 'IN'), ('the', 'DT'), ('operating', 'NN'), ('system', 'NN'), ('level', 'NN'), ('or', 'CC'), ('the', 'DT'), ('bios', 'NNS'), ('level', 'VBP'), (').', 'RB'), ('because', 'IN'), ('of', 'IN'), ('this', 'DT'), ('inbetween', 'JJ'), ('program', 'NN'), ('windows', 'NNS'), ('cannot', 'VBP'), ('use', 'IN'), ('direct', 'JJ'), ('methods', 'NNS'), ('to', 'TO'), ('read', 'VB'), ('from', 'IN'), ('the', 'DT'), ('logical', 'JJ'), ('disk', 'NN'), ('permenant', 'NN'), ('swap', 'NN'), ('file', 'NN'), ('is', 'VBZ'), ('only', 'RB'), ('there', 'RB'), ('to', 'TO'), ('reserve', 'VB'), ('an', 'DT'), ('area', 'NN'), ('of', 'IN'), ('the', 'DT'), ('disk', 'NN'), ('that', 'IN'), ('windows', 'NNS'), ('can', 'MD'), ('use', 'VB'), ('and', 'CC'), ('to', 'TO'), ('block', 'VB'), ('that', 'DT'), ('space', 'NN'), ('from', 'IN'), ('dos', 'NN'), ('windows', 'NNS'), ('would', 'MD'), ('theoretically', 'RB'), ('not', 'RB'), ('even', 'RB'), ('have', 'VBP'), ('to', 'TO'), ('access', 'NN'), ('the', 'DT'), ('file', 'NN'), ('from', 'IN'), ('dos', 'NN'), ('to', 'TO'), ('use', 'VB'), ('that', 'DT'), ('disk', 'NN'), ('space', 'NN'), ('don', 'NN'), ('know', 'VBP'), ('if', 'IN'), ('it', 'PRP'), ('does', 'VBZ'), ('or', 'CC'), ('doesn', 'VB'), ('...', ':'), ('but', 'CC'), ('it', 'PRP'), ('checks', 'VBZ'), ('for', 'IN'), ('it', 'PRP'), ('somewhere', 'RB'), ('everytime', 'VBZ'), ('you', 'PRP'), ('boot', 'VBP'), ('windows', 'NNS'), ('.)', 'VBP'), ('temporary', 'JJ'), ('swap', 'NN'), ('file', 'NN'), ('is', 'VBZ'), ('just', 'RB'), ('normal', 'JJ'), ('dos', 'NNS'), ('file', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('accessed', 'VBN'), ('by', 'IN'), ('windows', 'NNS'), ('via', 'IN'), ('dos', 'NN'), ('and', 'CC'), ('the', 'DT'), ('bios', 'NNS'), ('if', 'IN'), ('disk', 'JJ'), ('compression', 'NN'), ('program', 'NN'), ('or', 'CC'), ('other', 'JJ'), ('tsr', 'NN'), ('is', 'VBZ'), ('loaded', 'VBN'), ('the', 'DT'), ('file', 'NN'), ('access', 'NN'), ('must', 'MD'), ('go', 'VB'), ('through', 'IN'), ('dos', 'NN'), ('...', ':'), ('tsr', 'JJ'), ('disk', 'NN'), ('compression', 'NN'), (')...', 'NNP'), ('and', 'CC'), ('bios', 'NNS'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('be', 'VB'), ('access', 'NN'), ('never', 'RB'), ('use', 'VBP'), ('temporary', 'JJ'), ('swap', 'NN'), ('file', 'NN'), ('...', ':'), ('never', 'RB'), ('more', 'RBR'), ('on', 'IN'), ('permenent', 'NN'), ('swap', 'NN'), ('files', 'NNS'), ('...', ':'), ('sure', 'RB'), ('everyone', 'NN'), ('who', 'WP'), ('has', 'VBZ'), ('an', 'DT'), ('uncompressed', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('compressed', 'JJ'), ('hard', 'JJ'), ('disk', 'NN'), ('has', 'VBZ'), ('seen', 'VBN'), ('the', 'DT'), ('message', 'NN'), ('you', 'PRP'), ('have', 'VBP'), ('selected', 'VBN'), ('swap', 'NN'), ('file', 'NN'), ('greater', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('suggested', 'JJ'), ('size', 'NN'), ('...', ':'), ('windows', 'NNS'), ('will', 'MD'), ('only', 'RB'), ('use', 'VB'), ('the', 'DT'), ('size', 'NN'), ('suggested', 'VBD'), ('...', ':'), ('do', 'VBP'), ('you', 'PRP'), ('wan', 'VB'), ('to', 'TO'), ('create', 'VB'), ('this', 'DT'), ('swap', 'NN'), ('file', 'NN'), ('anyway', 'RB'), ('or', 'CC'), ('something', 'NN'), ('like', 'IN'), ('that', 'DT'), ('well', 'RB'), ('friend', 'NN'), ('of', 'IN'), ('mine', 'NN'), ('robert', 'NN'), ('called', 'VBN'), ('microsoft', 'CD'), ('and', 'CC'), ('asked', 'VBD'), ('them', 'PRP'), ('what', 'WP'), ('and', 'CC'), ('why', 'WRB'), ('what', 'WP'), ('they', 'PRP'), ('said', 'VBD'), ('is', 'VBZ'), ('that', 'IN'), ('windows', 'VBZ'), ('checks', 'NNS'), ('the', 'DT'), ('amount', 'NN'), ('of', 'IN'), ('free', 'JJ'), ('disk', 'NN'), ('space', 'NN'), ('and', 'CC'), ('divides', 'NNS'), ('that', 'IN'), ('number', 'NN'), ('by', 'IN'), ('then', 'RB'), ('it', 'PRP'), ('checks', 'VBZ'), ('for', 'IN'), ('the', 'DT'), ('largest', 'JJS'), ('contiguous', 'JJ'), ('block', 'NN'), ('of', 'IN'), ('free', 'JJ'), ('disk', 'NN'), ('space', 'NN'), ('windows', 'VBZ'), ('then', 'RB'), ('suggests', 'VBZ'), ('the', 'DT'), ('smaller', 'JJR'), ('of', 'IN'), ('the', 'DT'), ('two', 'CD'), ('numbers', 'NNS'), ('they', 'PRP'), ('also', 'RB'), ('said', 'VBD'), ('that', 'IN'), ('under', 'IN'), ('absolutely', 'RB'), ('no', 'DT'), ('circumstances', 'NNS'), ('...', ':'), ('none', 'NN'), ('!...', 'NN'), ('will', 'MD'), ('windows', 'VB'), ('uses', 'NNS'), ('swap', 'VBP'), ('file', 'RB'), ('larger', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('suggested', 'JJ'), ('size', 'NN'), ('well', 'NN'), ('...', ':'), ('that', 'IN'), ('what', 'WP'), ('he', 'PRP'), ('said', 'VBD'), ('call', 'NN'), ('if', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('true', 'JJ'), ('why', 'WRB'), ('does', 'VBZ'), ('windows', 'NNS'), ('report', 'VB'), ('the', 'DT'), ('memory', 'NN'), ('is', 'VBZ'), ('available', 'JJ'), ('to', 'TO'), ('me', 'PRP'), ('if', 'IN'), ('it', 'PRP'), ('not', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('use', 'VB'), ('it', 'PRP'), ('any', 'DT'), ('takers', 'NNS'), ('james', 'NNS')] | ['comp', 'windows', 'misc', 'write', 'might', 'want', 'look', 'window', 'faq', 'one', 'best', 'explanation', 'guarantee', 'way', 'base', 'permenant', 'swap', 'file', 'read', 'write', 'window', 'talk', 'directly', 'hard', 'disk', 'controller', 'card', 'controller', 'card', 'must', 'use', 'protocal', 'set', 'western', 'digital', 'something', 'like', 'windows', 'creates', 'file', 'call', 'spart', 'par', 'window', 'directory', 'point', 'file', 'use', 'physical', 'information', 'disk', 'index', 'information', 'file', 'compress', 'disk', 'actually', 'logical', 'disk', 'disk', 'different', 'characteristic', 'actual', 'physical', 'disk', 'furthermore', 'information', 'compressed', 'disk', 'must', 'uncompress', 'use', 'must', 'go', 'decompression', 'program', 'trap', 'disk', 'read', 'operating', 'system', 'level', 'bios', 'level', 'inbetween', 'program', 'window', 'cannot', 'use', 'direct', 'method', 'read', 'logical', 'disk', 'permenant', 'swap', 'file', 'reserve', 'area', 'disk', 'window', 'use', 'block', 'space', 'window', 'would', 'theoretically', 'even', 'access', 'file', 'use', 'disk', 'space', 'know', 'check', 'somewhere', 'everytime', 'boot', 'window', 'temporary', 'swap', 'file', 'normal', 'file', 'access', 'window', 'via', 'bios', 'disk', 'compression', 'program', 'tsr', 'load', 'file', 'access', 'must', 'go', 'tsr', 'disk', 'compression', 'bios', 'order', 'access', 'never', 'use', 'temporary', 'swap', 'file', 'never', 'permenent', 'swap', 'file', 'sure', 'everyone', 'uncompressed', 'part', 'compressed', 'hard', 'disk', 'see', 'message', 'select', 'swap', 'file', 'great', 'suggested', 'size', 'window', 'use', 'size', 'suggest', 'wan', 'create', 'swap', 'file', 'anyway', 'something', 'like', 'well', 'friend', 'mine', 'robert', 'call', 'microsoft', 'ask', 'say', 'windows', 'check', 'amount', 'free', 'disk', 'space', 'divide', 'number', 'check', 'large', 'contiguous', 'block', 'free', 'disk', 'space', 'windows', 'suggest', 'small', 'two', 'number', 'also', 'say', 'absolutely', 'circumstance', 'none', 'windows', 'us', 'swap', 'file', 'large', 'suggested', 'size', 'well', 'say', 'call', 'true', 'window', 'report', 'memory', 'available', 'go', 'use', 'taker', 'james'] | ['comp_windows', 'might_want', 'want_look', 'look_window', 'one_best', 'swap_file', 'file_read', 'read_write', 'hard_disk', 'disk_controller', 'controller_card', 'controller_card', 'must_use', 'western_digital', 'something_like', 'file_call', 'window_directory', 'file_use', 'information_file', 'file_compress', 'disk_disk', 'must_go', 'operating_system', 'system_level', 'program_window', 'cannot_use', 'swap_file', 'window_use', 'use_block', 'window_would', 'access_file', 'file_use', 'use_disk', 'disk_space', 'swap_file', 'file_access', 'file_access', 'must_go', 'never_use', 'swap_file', 'swap_file', 'sure_everyone', 'hard_disk', 'swap_file', 'size_window', 'window_use', 'swap_file', 'something_like', 'like_well', 'friend_mine', 'call_microsoft', 'ask_say', 'free_disk', 'disk_space', 'free_disk', 'disk_space', 'two_number', 'number_also', 'also_say', 'swap_file', 'file_large', 'well_say', 'say_call', 'memory_available', 'go_use'] | comp_os_ms-windows_misc_9450 |@lemmatized comp:1 windows:5 misc:1 write:2 might:1 want:1 look:1 window:10 faq:1 one:1 best:1 explanation:1 guarantee:1 way:1 base:1 permenant:2 swap:8 file:14 read:3 talk:1 directly:1 hard:2 disk:16 controller:2 card:2 must:4 use:9 protocal:1 set:1 western:1 digital:1 something:2 like:2 creates:1 call:3 spart:1 par:1 directory:1 point:1 physical:2 information:3 index:1 compress:1 actually:1 logical:2 different:1 characteristic:1 actual:1 furthermore:1 compressed:2 uncompress:1 go:3 decompression:1 program:3 trap:1 operating:1 system:1 level:2 bios:3 inbetween:1 cannot:1 direct:1 method:1 reserve:1 area:1 block:2 space:4 would:1 theoretically:1 even:1 access:4 know:1 check:3 somewhere:1 everytime:1 boot:1 temporary:2 normal:1 via:1 compression:2 tsr:2 load:1 order:1 never:2 permenent:1 sure:1 everyone:1 uncompressed:1 part:1 see:1 message:1 select:1 great:1 suggested:2 size:3 suggest:2 wan:1 create:1 anyway:1 well:2 friend:1 mine:1 robert:1 microsoft:1 ask:1 say:3 amount:1 free:2 divide:1 number:2 large:2 contiguous:1 small:1 two:1 also:1 absolutely:1 circumstance:1 none:1 us:1 true:1 report:1 memory:1 available:1 taker:1 james:1 |@bigram comp_windows:1 might_want:1 want_look:1 look_window:1 one_best:1 swap_file:8 file_read:1 read_write:1 hard_disk:2 disk_controller:1 controller_card:2 must_use:1 western_digital:1 something_like:2 file_call:1 window_directory:1 file_use:2 information_file:1 file_compress:1 disk_disk:1 must_go:2 operating_system:1 system_level:1 program_window:1 cannot_use:1 window_use:2 use_block:1 window_would:1 access_file:1 use_disk:1 disk_space:3 file_access:2 never_use:1 sure_everyone:1 size_window:1 like_well:1 friend_mine:1 call_microsoft:1 ask_say:1 free_disk:2 two_number:1 number_also:1 also_say:1 file_large:1 well_say:1 say_call:1 memory_available:1 go_use:1 |
2,141 |
On my 59 sporty I had some pinhole leaks open up on the back seam. I kreme
it about a year ago and have had no problems at all. Be real careful as
the cleaning part of the solution is hell on paint.
-Jim
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104593 | 8 | rec_motorcycles_104593 | [('on', 'IN'), ('my', 'PRP$'), ('59', 'CD'), ('sporty', 'NN'), ('had', 'VBD'), ('some', 'DT'), ('pinhole', 'JJ'), ('leaks', 'NNS'), ('open', 'VBP'), ('up', 'RP'), ('on', 'IN'), ('the', 'DT'), ('back', 'JJ'), ('seam', 'NN'), ('kreme', 'NN'), ('it', 'PRP'), ('about', 'IN'), ('year', 'NN'), ('ago', 'RB'), ('and', 'CC'), ('have', 'VB'), ('had', 'VBN'), ('no', 'DT'), ('problems', 'NNS'), ('at', 'IN'), ('all', 'DT'), ('be', 'VB'), ('real', 'JJ'), ('careful', 'JJ'), ('as', 'IN'), ('the', 'DT'), ('cleaning', 'VBG'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('solution', 'NN'), ('is', 'VBZ'), ('hell', 'VBN'), ('on', 'IN'), ('paint', 'NN'), ('jim', 'NN')] | ['sporty', 'pinhole', 'leak', 'open', 'back', 'seam', 'kreme', 'year', 'ago', 'problem', 'real', 'careful', 'clean', 'part', 'solution', 'hell', 'paint', 'jim'] | ['year_ago'] | rec_motorcycles_104593 |@lemmatized sporty:1 pinhole:1 leak:1 open:1 back:1 seam:1 kreme:1 year:1 ago:1 problem:1 real:1 careful:1 clean:1 part:1 solution:1 hell:1 paint:1 jim:1 |@bigram year_ago:1 |
2,142 | For Sale...:
Three software packages for IBM PC and compatible computers:
o Wing Commander deluxe edition
o Includes Secret Missions 1 & 2
o Includes all original packaging, manuals
and disks
o Includes registration card (so you can
send it in and register it in your name)
o Original price for Wing Commander: $69.95
o Original price for Secret Missions I: $29.95
o Original price for Secret Missions II: $29.95
o Total original price: $129.85
o My asking price for all these of these
games TOGETHER is $65.00
o Wing Commander and the Secret Missions is a
battle and flight simulator set in space. It
includes all the standard fun things about
flight simulators, like taking off and landing
on carriers, flying -- of course -- and better
yet, it is also a battle simulator. It is a
lot of fun, indeed.
o An IBM PC or compatible with at least 640K, and
dual floppies or a hard drive is required.
o WinWay Resume for Windows
o Includes all original packaging, manuals
and disks
o Original price: $50.00
o My asking price: $35.00
o WinWay Resume is a resume writing program for
Windows. It is an excellent program (it got
me a job!) and running under the Window's
interface makes it very, very easy to use. All
you do is answer a few questions, and print out
the results. In just a few minutes, you have a
beautifully and professionally designed resume.
o An IBM PC with Windows 3.0 or later installed
and 1 MB of free hard disk space is required.
o More Typefaces
o Includes all original packaging, manuals
and disks
o Original price: $99.99
o My asking price: $30.00
o More Typefaces is a package of three TypeType
font families (for a total of twelve fonts) for
Windows 3.1. The fonts included are: Marque,
Crystal and Architech, and of course italic,
bold and bold italic versions are included with
all those fonts. Because of the unique font
software included with the package, these fonts
can be used with either the MoreFonts typeface
program, Adobe Type Manager, TrueType, GeoWorks,
Express Publisher and CorelDRAW.
o An IBM PC with Windows 3.1 and a hard disk is
required if you want to use the typefaces in
TrueType format. For all other formats, an
IBM PC and a hard disk with one of the programs
listed above is required.
If you are interested in any of these programs, please
either leave me email or call Kirk Peterson at (303) 494-7951,
anytime. If I don't answer, leave me a message on my answering
machine and I'll call you back. I will pay the shipping on all
of the programs to anywhere in the continental United States. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/76395 | 6 | misc_forsale_76395 | [('for', 'IN'), ('sale', 'NN'), ('...:', 'NNP'), ('three', 'CD'), ('software', 'NN'), ('packages', 'NNS'), ('for', 'IN'), ('ibm', 'JJ'), ('pc', 'NN'), ('and', 'CC'), ('compatible', 'JJ'), ('computers', 'NNS'), ('wing', 'VBG'), ('commander', 'NN'), ('deluxe', 'JJ'), ('edition', 'NN'), ('includes', 'VBZ'), ('secret', 'JJ'), ('missions', 'NNS'), ('includes', 'VBZ'), ('all', 'DT'), ('original', 'JJ'), ('packaging', 'NN'), ('manuals', 'NNS'), ('and', 'CC'), ('disks', 'NNS'), ('includes', 'VBZ'), ('registration', 'NN'), ('card', 'NN'), ('so', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('send', 'VB'), ('it', 'PRP'), ('in', 'IN'), ('and', 'CC'), ('register', 'VB'), ('it', 'PRP'), ('in', 'IN'), ('your', 'PRP$'), ('name', 'NN'), ('original', 'JJ'), ('price', 'NN'), ('for', 'IN'), ('wing', 'VBG'), ('commander', 'NN'), ('69', 'CD'), ('95', 'CD'), ('original', 'JJ'), ('price', 'NN'), ('for', 'IN'), ('secret', 'JJ'), ('missions', 'NNS'), ('29', 'CD'), ('95', 'CD'), ('original', 'JJ'), ('price', 'NN'), ('for', 'IN'), ('secret', 'JJ'), ('missions', 'NNS'), ('ii', 'VBP'), ('29', 'CD'), ('95', 'CD'), ('total', 'JJ'), ('original', 'JJ'), ('price', 'NN'), ('129', 'CD'), ('85', 'CD'), ('my', 'PRP$'), ('asking', 'JJ'), ('price', 'NN'), ('for', 'IN'), ('all', 'PDT'), ('these', 'DT'), ('of', 'IN'), ('these', 'DT'), ('games', 'NNS'), ('together', 'RB'), ('is', 'VBZ'), ('65', 'CD'), ('00', 'CD'), ('wing', 'NN'), ('commander', 'NN'), ('and', 'CC'), ('the', 'DT'), ('secret', 'JJ'), ('missions', 'NNS'), ('is', 'VBZ'), ('battle', 'NN'), ('and', 'CC'), ('flight', 'NN'), ('simulator', 'NN'), ('set', 'VBN'), ('in', 'IN'), ('space', 'NN'), ('it', 'PRP'), ('includes', 'VBZ'), ('all', 'PDT'), ('the', 'DT'), ('standard', 'JJ'), ('fun', 'NN'), ('things', 'NNS'), ('about', 'IN'), ('flight', 'NN'), ('simulators', 'NNS'), ('like', 'IN'), ('taking', 'VBG'), ('off', 'RP'), ('and', 'CC'), ('landing', 'VBG'), ('on', 'IN'), ('carriers', 'NNS'), ('flying', 'VBG'), ('--', ':'), ('of', 'IN'), ('course', 'NN'), ('--', ':'), ('and', 'CC'), ('better', 'JJR'), ('yet', 'RB'), ('it', 'PRP'), ('is', 'VBZ'), ('also', 'RB'), ('battle', 'NN'), ('simulator', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('lot', 'NN'), ('of', 'IN'), ('fun', 'NN'), ('indeed', 'RB'), ('an', 'DT'), ('ibm', 'JJ'), ('pc', 'NN'), ('or', 'CC'), ('compatible', 'JJ'), ('with', 'IN'), ('at', 'IN'), ('least', 'JJS'), ('640k', 'CD'), ('and', 'CC'), ('dual', 'JJ'), ('floppies', 'NNS'), ('or', 'CC'), ('hard', 'JJ'), ('drive', 'NN'), ('is', 'VBZ'), ('required', 'VBN'), ('winway', 'RB'), ('resume', 'VB'), ('for', 'IN'), ('windows', 'NNS'), ('includes', 'VBZ'), ('all', 'DT'), ('original', 'JJ'), ('packaging', 'NN'), ('manuals', 'NNS'), ('and', 'CC'), ('disks', 'NNS'), ('original', 'JJ'), ('price', 'NN'), ('50', 'CD'), ('00', 'CD'), ('my', 'PRP$'), ('asking', 'VBG'), ('price', 'NN'), ('35', 'CD'), ('00', 'CD'), ('winway', 'NN'), ('resume', 'NN'), ('is', 'VBZ'), ('resume', 'JJ'), ('writing', 'VBG'), ('program', 'NN'), ('for', 'IN'), ('windows', 'NNS'), ('it', 'PRP'), ('is', 'VBZ'), ('an', 'DT'), ('excellent', 'JJ'), ('program', 'NN'), ('it', 'PRP'), ('got', 'VBD'), ('me', 'PRP'), ('job', 'NN'), ('!)', 'JJ'), ('and', 'CC'), ('running', 'VBG'), ('under', 'IN'), ('the', 'DT'), ('window', 'JJ'), ('interface', 'NN'), ('makes', 'VBZ'), ('it', 'PRP'), ('very', 'RB'), ('very', 'RB'), ('easy', 'JJ'), ('to', 'TO'), ('use', 'VB'), ('all', 'DT'), ('you', 'PRP'), ('do', 'VBP'), ('is', 'VBZ'), ('answer', 'VB'), ('few', 'JJ'), ('questions', 'NNS'), ('and', 'CC'), ('print', 'NN'), ('out', 'RP'), ('the', 'DT'), ('results', 'NNS'), ('in', 'IN'), ('just', 'RB'), ('few', 'JJ'), ('minutes', 'NNS'), ('you', 'PRP'), ('have', 'VBP'), ('beautifully', 'RB'), ('and', 'CC'), ('professionally', 'RB'), ('designed', 'VBN'), ('resume', 'VBP'), ('an', 'DT'), ('ibm', 'JJ'), ('pc', 'NN'), ('with', 'IN'), ('windows', 'NNS'), ('or', 'CC'), ('later', 'RB'), ('installed', 'VBN'), ('and', 'CC'), ('mb', 'NNS'), ('of', 'IN'), ('free', 'JJ'), ('hard', 'JJ'), ('disk', 'NN'), ('space', 'NN'), ('is', 'VBZ'), ('required', 'VBN'), ('more', 'JJR'), ('typefaces', 'NNS'), ('includes', 'VBZ'), ('all', 'DT'), ('original', 'JJ'), ('packaging', 'NN'), ('manuals', 'NNS'), ('and', 'CC'), ('disks', 'NNS'), ('original', 'JJ'), ('price', 'NN'), ('99', 'CD'), ('99', 'CD'), ('my', 'PRP$'), ('asking', 'VBG'), ('price', 'NN'), ('30', 'CD'), ('00', 'CD'), ('more', 'JJR'), ('typefaces', 'NNS'), ('is', 'VBZ'), ('package', 'NN'), ('of', 'IN'), ('three', 'CD'), ('typetype', 'NN'), ('font', 'NN'), ('families', 'NNS'), ('for', 'IN'), ('total', 'NN'), ('of', 'IN'), ('twelve', 'NN'), ('fonts', 'NNS'), ('for', 'IN'), ('windows', 'NNS'), ('the', 'DT'), ('fonts', 'NNS'), ('included', 'VBD'), ('are', 'VBP'), ('marque', 'JJ'), ('crystal', 'JJ'), ('and', 'CC'), ('architech', 'JJ'), ('and', 'CC'), ('of', 'IN'), ('course', 'NN'), ('italic', 'JJ'), ('bold', 'NN'), ('and', 'CC'), ('bold', 'JJ'), ('italic', 'JJ'), ('versions', 'NNS'), ('are', 'VBP'), ('included', 'VBN'), ('with', 'IN'), ('all', 'PDT'), ('those', 'DT'), ('fonts', 'NNS'), ('because', 'IN'), ('of', 'IN'), ('the', 'DT'), ('unique', 'JJ'), ('font', 'NN'), ('software', 'NN'), ('included', 'VBD'), ('with', 'IN'), ('the', 'DT'), ('package', 'NN'), ('these', 'DT'), ('fonts', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('used', 'VBN'), ('with', 'IN'), ('either', 'CC'), ('the', 'DT'), ('morefonts', 'NNS'), ('typeface', 'VBP'), ('program', 'NN'), ('adobe', 'NN'), ('type', 'NN'), ('manager', 'NN'), ('truetype', 'NN'), ('geoworks', 'NNS'), ('express', 'VBP'), ('publisher', 'NN'), ('and', 'CC'), ('coreldraw', 'VB'), ('an', 'DT'), ('ibm', 'JJ'), ('pc', 'NN'), ('with', 'IN'), ('windows', 'NNS'), ('and', 'CC'), ('hard', 'JJ'), ('disk', 'NN'), ('is', 'VBZ'), ('required', 'VBN'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('to', 'TO'), ('use', 'VB'), ('the', 'DT'), ('typefaces', 'NNS'), ('in', 'IN'), ('truetype', 'JJ'), ('format', 'NN'), ('for', 'IN'), ('all', 'DT'), ('other', 'JJ'), ('formats', 'NNS'), ('an', 'DT'), ('ibm', 'JJ'), ('pc', 'NN'), ('and', 'CC'), ('hard', 'JJ'), ('disk', 'NN'), ('with', 'IN'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('programs', 'NNS'), ('listed', 'VBN'), ('above', 'RB'), ('is', 'VBZ'), ('required', 'VBN'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('interested', 'JJ'), ('in', 'IN'), ('any', 'DT'), ('of', 'IN'), ('these', 'DT'), ('programs', 'NNS'), ('please', 'VBP'), ('either', 'DT'), ('leave', 'VBP'), ('me', 'PRP'), ('email', 'NN'), ('or', 'CC'), ('call', 'VB'), ('kirk', 'JJ'), ('peterson', 'NN'), ('at', 'IN'), ('303', 'CD'), ('494', 'CD'), ('7951', 'CD'), ('anytime', 'NN'), ('if', 'IN'), ('don', 'JJ'), ('answer', 'NN'), ('leave', 'VBP'), ('me', 'PRP'), ('message', 'NN'), ('on', 'IN'), ('my', 'PRP$'), ('answering', 'NN'), ('machine', 'NN'), ('and', 'CC'), ('ll', 'NN'), ('call', 'NN'), ('you', 'PRP'), ('back', 'VBP'), ('will', 'MD'), ('pay', 'VB'), ('the', 'DT'), ('shipping', 'NN'), ('on', 'IN'), ('all', 'DT'), ('of', 'IN'), ('the', 'DT'), ('programs', 'NNS'), ('to', 'TO'), ('anywhere', 'VB'), ('in', 'IN'), ('the', 'DT'), ('continental', 'JJ'), ('united', 'JJ'), ('states', 'NNS')] | ['sale', 'three', 'software', 'package', 'ibm', 'pc', 'compatible', 'computer', 'wing', 'commander', 'deluxe', 'edition', 'include', 'secret', 'mission', 'include', 'original', 'packaging', 'manual', 'disk', 'include', 'registration', 'card', 'send', 'register', 'name', 'original', 'price', 'wing', 'commander', 'original', 'price', 'secret', 'mission', 'original', 'price', 'secret', 'mission', 'ii', 'total', 'original', 'price', 'asking', 'price', 'game', 'together', 'wing', 'commander', 'secret', 'mission', 'battle', 'flight', 'simulator', 'set', 'space', 'include', 'standard', 'fun', 'thing', 'flight', 'simulator', 'like', 'take', 'land', 'carrier', 'fly', 'course', 'good', 'yet', 'also', 'battle', 'simulator', 'lot', 'fun', 'indeed', 'ibm', 'pc', 'compatible', 'least', 'dual', 'floppy', 'hard', 'drive', 'require', 'winway', 'resume', 'window', 'include', 'original', 'packaging', 'manual', 'disk', 'original', 'price', 'ask', 'price', 'winway', 'resume', 'resume', 'write', 'program', 'window', 'excellent', 'program', 'get', 'job', 'run', 'window', 'interface', 'make', 'easy', 'use', 'answer', 'question', 'print', 'result', 'minute', 'beautifully', 'professionally', 'design', 'resume', 'ibm', 'pc', 'window', 'later', 'instal', 'mb', 'free', 'hard', 'disk', 'space', 'require', 'typeface', 'include', 'original', 'packaging', 'manual', 'disk', 'original', 'price', 'ask', 'price', 'typeface', 'package', 'three', 'typetype', 'font', 'family', 'total', 'twelve', 'font', 'window', 'font', 'include', 'marque', 'crystal', 'architech', 'course', 'italic', 'bold', 'bold', 'italic', 'version', 'include', 'font', 'unique', 'font', 'software', 'include', 'package', 'font', 'use', 'either', 'morefonts', 'typeface', 'program', 'adobe', 'type', 'manager', 'truetype', 'geoworks', 'express', 'publisher', 'coreldraw', 'ibm', 'pc', 'window', 'hard', 'disk', 'require', 'want', 'use', 'typeface', 'truetype', 'format', 'format', 'ibm', 'pc', 'hard', 'disk', 'one', 'program', 'list', 'require', 'interested', 'program', 'please', 'either', 'leave', 'email', 'call', 'kirk', 'peterson', 'anytime', 'answer', 'leave', 'message', 'answering', 'machine', 'call', 'back', 'pay', 'shipping', 'program', 'anywhere', 'continental', 'united', 'state'] | ['software_package', 'ibm_pc', 'pc_compatible', 'wing_commander', 'mission_include', 'include_original', 'original_packaging', 'packaging_manual', 'manual_disk', 'disk_include', 'registration_card', 'original_price', 'wing_commander', 'original_price', 'original_price', 'original_price', 'wing_commander', 'space_include', 'include_standard', 'like_take', 'good_yet', 'yet_also', 'lot_fun', 'ibm_pc', 'pc_compatible', 'floppy_hard', 'hard_drive', 'include_original', 'original_packaging', 'packaging_manual', 'manual_disk', 'original_price', 'price_ask', 'ask_price', 'write_program', 'program_window', 'program_get', 'get_job', 'job_run', 'run_window', 'make_easy', 'easy_use', 'answer_question', 'ibm_pc', 'hard_disk', 'disk_space', 'include_original', 'original_packaging', 'packaging_manual', 'manual_disk', 'original_price', 'price_ask', 'ask_price', 'font_window', 'window_font', 'version_include', 'software_include', 'font_use', 'use_either', 'adobe_type', 'ibm_pc', 'hard_disk', 'want_use', 'ibm_pc', 'hard_disk', 'one_program', 'program_list', 'interested_program', 'program_please', 'either_leave', 'email_call', 'leave_message', 'call_back', 'pay_shipping', 'united_state'] | misc_forsale_76395 |@lemmatized sale:1 three:2 software:2 package:3 ibm:5 pc:5 compatible:2 computer:1 wing:3 commander:3 deluxe:1 edition:1 include:9 secret:4 mission:4 original:9 packaging:3 manual:3 disk:6 registration:1 card:1 send:1 register:1 name:1 price:9 ii:1 total:2 asking:1 game:1 together:1 battle:2 flight:2 simulator:3 set:1 space:2 standard:1 fun:2 thing:1 like:1 take:1 land:1 carrier:1 fly:1 course:2 good:1 yet:1 also:1 lot:1 indeed:1 least:1 dual:1 floppy:1 hard:4 drive:1 require:4 winway:2 resume:4 window:6 ask:2 write:1 program:6 excellent:1 get:1 job:1 run:1 interface:1 make:1 easy:1 use:3 answer:2 question:1 print:1 result:1 minute:1 beautifully:1 professionally:1 design:1 later:1 instal:1 mb:1 free:1 typeface:4 typetype:1 font:6 family:1 twelve:1 marque:1 crystal:1 architech:1 italic:2 bold:2 version:1 unique:1 either:2 morefonts:1 adobe:1 type:1 manager:1 truetype:2 geoworks:1 express:1 publisher:1 coreldraw:1 want:1 format:2 one:1 list:1 interested:1 please:1 leave:2 email:1 call:2 kirk:1 peterson:1 anytime:1 message:1 answering:1 machine:1 back:1 pay:1 shipping:1 anywhere:1 continental:1 united:1 state:1 |@bigram software_package:1 ibm_pc:5 pc_compatible:2 wing_commander:3 mission_include:1 include_original:3 original_packaging:3 packaging_manual:3 manual_disk:3 disk_include:1 registration_card:1 original_price:6 space_include:1 include_standard:1 like_take:1 good_yet:1 yet_also:1 lot_fun:1 floppy_hard:1 hard_drive:1 price_ask:2 ask_price:2 write_program:1 program_window:1 program_get:1 get_job:1 job_run:1 run_window:1 make_easy:1 easy_use:1 answer_question:1 hard_disk:3 disk_space:1 font_window:1 window_font:1 version_include:1 software_include:1 font_use:1 use_either:1 adobe_type:1 want_use:1 one_program:1 program_list:1 interested_program:1 program_please:1 either_leave:1 email_call:1 leave_message:1 call_back:1 pay_shipping:1 united_state:1 |
2,143 | Is there a update or something that will allow a person when
using novell 3.11 and windows 3.1 file manager to view the files with
the name of the person who created it or changed it like the novell
command ndir ?
tim osburn
[email protected]
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9991 | 2 | comp_os_ms-windows_misc_9991 | [('is', 'VBZ'), ('there', 'EX'), ('update', 'JJ'), ('or', 'CC'), ('something', 'NN'), ('that', 'WDT'), ('will', 'MD'), ('allow', 'VB'), ('person', 'NN'), ('when', 'WRB'), ('using', 'VBG'), ('novell', 'RB'), ('11', 'CD'), ('and', 'CC'), ('windows', 'NNS'), ('file', 'VBP'), ('manager', 'NN'), ('to', 'TO'), ('view', 'VB'), ('the', 'DT'), ('files', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('name', 'NN'), ('of', 'IN'), ('the', 'DT'), ('person', 'NN'), ('who', 'WP'), ('created', 'VBD'), ('it', 'PRP'), ('or', 'CC'), ('changed', 'VBD'), ('it', 'PRP'), ('like', 'IN'), ('the', 'DT'), ('novell', 'NN'), ('command', 'NN'), ('ndir', 'NN'), ('tim', 'NN'), ('osburn', 'NN')] | ['update', 'something', 'allow', 'person', 'use', 'novell', 'window', 'file', 'manager', 'view', 'file', 'name', 'person', 'create', 'change', 'like', 'novell', 'command', 'ndir', 'tim', 'osburn'] | ['person_use', 'file_manager', 'file_name'] | comp_os_ms-windows_misc_9991 |@lemmatized update:1 something:1 allow:1 person:2 use:1 novell:2 window:1 file:2 manager:1 view:1 name:1 create:1 change:1 like:1 command:1 ndir:1 tim:1 osburn:1 |@bigram person_use:1 file_manager:1 file_name:1 |
2,144 | : >over where it places its temp files: it just places them in its
: >"current directory".
: I have to beg to differ on this point, as the batch file I use
: to launch cview cd's to the dir where cview resides and then
: invokes it. every time I crash cview, the 0-byte temp file
: is found in the root dir of the drive cview is on.
This is what I posted that cview uses the root directory of the drive
cview is on. However, since It has so much trouble reading large files
from floppy, I suspect that it uses the root directory of the drive the
image files are on. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38599 | 1 | comp_graphics_38599 | [('over', 'IN'), ('where', 'WRB'), ('it', 'PRP'), ('places', 'VBZ'), ('its', 'PRP$'), ('temp', 'NN'), ('files', 'VBZ'), ('it', 'PRP'), ('just', 'RB'), ('places', 'VBZ'), ('them', 'PRP'), ('in', 'IN'), ('its', 'PRP$'), ('>"', 'JJ'), ('current', 'JJ'), ('directory', 'NN'), ('".', 'NN'), ('have', 'VBP'), ('to', 'TO'), ('beg', 'VB'), ('to', 'TO'), ('differ', 'VB'), ('on', 'IN'), ('this', 'DT'), ('point', 'NN'), ('as', 'IN'), ('the', 'DT'), ('batch', 'NN'), ('file', 'NN'), ('use', 'NN'), ('to', 'TO'), ('launch', 'VB'), ('cview', 'JJ'), ('cd', 'NN'), ('to', 'TO'), ('the', 'DT'), ('dir', 'NN'), ('where', 'WRB'), ('cview', 'NN'), ('resides', 'NNS'), ('and', 'CC'), ('then', 'RB'), ('invokes', 'VB'), ('it', 'PRP'), ('every', 'DT'), ('time', 'NN'), ('crash', 'NN'), ('cview', 'VBP'), ('the', 'DT'), ('byte', 'NN'), ('temp', 'NN'), ('file', 'NN'), ('is', 'VBZ'), ('found', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('root', 'NN'), ('dir', 'NN'), ('of', 'IN'), ('the', 'DT'), ('drive', 'NN'), ('cview', 'NN'), ('is', 'VBZ'), ('on', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('what', 'WDT'), ('posted', 'VBD'), ('that', 'DT'), ('cview', 'NN'), ('uses', 'VBZ'), ('the', 'DT'), ('root', 'NN'), ('directory', 'NN'), ('of', 'IN'), ('the', 'DT'), ('drive', 'NN'), ('cview', 'NN'), ('is', 'VBZ'), ('on', 'IN'), ('however', 'RB'), ('since', 'IN'), ('it', 'PRP'), ('has', 'VBZ'), ('so', 'RB'), ('much', 'JJ'), ('trouble', 'NN'), ('reading', 'VBG'), ('large', 'JJ'), ('files', 'NNS'), ('from', 'IN'), ('floppy', 'JJ'), ('suspect', 'NN'), ('that', 'IN'), ('it', 'PRP'), ('uses', 'VBZ'), ('the', 'DT'), ('root', 'NN'), ('directory', 'NN'), ('of', 'IN'), ('the', 'DT'), ('drive', 'NN'), ('the', 'DT'), ('image', 'NN'), ('files', 'NNS'), ('are', 'VBP'), ('on', 'IN')] | ['place', 'temp', 'file', 'place', 'current', 'directory', 'beg', 'differ', 'point', 'batch', 'file', 'use', 'launch', 'cview', 'cd', 'dir', 'cview', 'resides', 'invoke', 'every', 'time', 'crash', 'cview', 'byte', 'temp', 'file', 'find', 'root', 'dir', 'drive', 'cview', 'post', 'cview', 'use', 'root', 'directory', 'drive', 'cview', 'however', 'since', 'much', 'trouble', 'read', 'large', 'file', 'floppy', 'suspect', 'use', 'root', 'directory', 'drive', 'image', 'file'] | ['temp_file', 'file_place', 'current_directory', 'beg_differ', 'batch_file', 'file_use', 'use_launch', 'every_time', 'temp_file', 'file_find', 'however_since', 'since_much', 'much_trouble', 'image_file'] | comp_graphics_38599 |@lemmatized place:2 temp:2 file:5 current:1 directory:3 beg:1 differ:1 point:1 batch:1 use:3 launch:1 cview:6 cd:1 dir:2 resides:1 invoke:1 every:1 time:1 crash:1 byte:1 find:1 root:3 drive:3 post:1 however:1 since:1 much:1 trouble:1 read:1 large:1 floppy:1 suspect:1 image:1 |@bigram temp_file:2 file_place:1 current_directory:1 beg_differ:1 batch_file:1 file_use:1 use_launch:1 every_time:1 file_find:1 however_since:1 since_much:1 much_trouble:1 image_file:1 |
2,145 | Sorry, Bill, I had to clear this up. There may be good evolutionary
arguments against homosexuality, but these don't qualify.
[deletions]
[deletions]
Oh? I guess all those social insects (e.g. ants, bees, etc.) which
have one breeding queen and a whole passel of sterile workers are on
the way out, huh?
I refer you to the bonobos, a species of primate as closeley related to
humans as chimpanzees (that is, very closely). They have sex all the
time, homosexual as well as heterosexual. When the group finds food, they
have sex. Before the go to sleep at night, they have sex. After they
escape from or fight off prdators, they have sex. Sex serves a very important
social function above and beyond reproduction in this species. A species
closely related to humans. There is some indication that sex performs
a social function in humans, as well, but even if not, this shows that
such a function is not *impossible*.
Sincerely,
Ray Ingles [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/51283 | 0 | alt_atheism_51283 | [('sorry', 'JJ'), ('bill', 'NN'), ('had', 'VBD'), ('to', 'TO'), ('clear', 'VB'), ('this', 'DT'), ('up', 'IN'), ('there', 'EX'), ('may', 'MD'), ('be', 'VB'), ('good', 'JJ'), ('evolutionary', 'JJ'), ('arguments', 'NNS'), ('against', 'IN'), ('homosexuality', 'NN'), ('but', 'CC'), ('these', 'DT'), ('don', 'NNS'), ('qualify', 'VBP'), ('deletions', 'NNS'), ('deletions', 'NNS'), ('oh', 'VBP'), ('guess', 'NN'), ('all', 'PDT'), ('those', 'DT'), ('social', 'JJ'), ('insects', 'NNS'), ('ants', 'NNS'), ('bees', 'NNS'), ('etc', 'VBP'), ('.)', 'CD'), ('which', 'WDT'), ('have', 'VBP'), ('one', 'CD'), ('breeding', 'NN'), ('queen', 'NN'), ('and', 'CC'), ('whole', 'JJ'), ('passel', 'NN'), ('of', 'IN'), ('sterile', 'JJ'), ('workers', 'NNS'), ('are', 'VBP'), ('on', 'IN'), ('the', 'DT'), ('way', 'NN'), ('out', 'IN'), ('huh', 'NN'), ('refer', 'NN'), ('you', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('bonobos', 'NN'), ('species', 'NNS'), ('of', 'IN'), ('primate', 'NN'), ('as', 'IN'), ('closeley', 'NN'), ('related', 'VBN'), ('to', 'TO'), ('humans', 'NNS'), ('as', 'IN'), ('chimpanzees', 'NNS'), ('that', 'WDT'), ('is', 'VBZ'), ('very', 'RB'), ('closely', 'RB'), (').', 'IN'), ('they', 'PRP'), ('have', 'VBP'), ('sex', 'VBN'), ('all', 'PDT'), ('the', 'DT'), ('time', 'NN'), ('homosexual', 'JJ'), ('as', 'RB'), ('well', 'RB'), ('as', 'IN'), ('heterosexual', 'JJ'), ('when', 'WRB'), ('the', 'DT'), ('group', 'NN'), ('finds', 'VBZ'), ('food', 'NN'), ('they', 'PRP'), ('have', 'VBP'), ('sex', 'NN'), ('before', 'IN'), ('the', 'DT'), ('go', 'NN'), ('to', 'TO'), ('sleep', 'VB'), ('at', 'IN'), ('night', 'NN'), ('they', 'PRP'), ('have', 'VBP'), ('sex', 'VBN'), ('after', 'IN'), ('they', 'PRP'), ('escape', 'VBP'), ('from', 'IN'), ('or', 'CC'), ('fight', 'VB'), ('off', 'RP'), ('prdators', 'NNS'), ('they', 'PRP'), ('have', 'VBP'), ('sex', 'VBN'), ('sex', 'NN'), ('serves', 'VBZ'), ('very', 'RB'), ('important', 'JJ'), ('social', 'JJ'), ('function', 'NN'), ('above', 'IN'), ('and', 'CC'), ('beyond', 'IN'), ('reproduction', 'NN'), ('in', 'IN'), ('this', 'DT'), ('species', 'NNS'), ('species', 'VBZ'), ('closely', 'RB'), ('related', 'VBN'), ('to', 'TO'), ('humans', 'NNS'), ('there', 'EX'), ('is', 'VBZ'), ('some', 'DT'), ('indication', 'NN'), ('that', 'IN'), ('sex', 'NN'), ('performs', 'NNS'), ('social', 'JJ'), ('function', 'NN'), ('in', 'IN'), ('humans', 'NNS'), ('as', 'RB'), ('well', 'RB'), ('but', 'CC'), ('even', 'RB'), ('if', 'IN'), ('not', 'RB'), ('this', 'DT'), ('shows', 'VBZ'), ('that', 'IN'), ('such', 'JJ'), ('function', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('impossible', 'JJ'), ('*.', 'NNS'), ('sincerely', 'RB'), ('ray', 'VBP'), ('ingles', 'NNS')] | ['sorry', 'bill', 'clear', 'may', 'good', 'evolutionary', 'argument', 'homosexuality', 'qualify', 'deletion', 'deletion', 'oh', 'guess', 'social', 'insect', 'ant', 'bee', 'etc', 'one', 'breeding', 'queen', 'whole', 'passel', 'sterile', 'worker', 'way', 'huh', 'refer', 'bonobo', 'specie', 'primate', 'closeley', 'relate', 'human', 'chimpanzee', 'closely', 'sex', 'time', 'homosexual', 'well', 'heterosexual', 'group', 'find', 'food', 'sex', 'go', 'sleep', 'night', 'sex', 'escape', 'fight', 'prdators', 'sex', 'sex', 'serve', 'important', 'social', 'function', 'beyond', 'reproduction', 'specie', 'species', 'closely', 'relate', 'human', 'indication', 'sex', 'performs', 'social', 'function', 'human', 'well', 'even', 'show', 'function', 'impossible', 'sincerely', 'ray', 'ingles'] | ['may_good', 'oh_guess', 'etc_one', 'group_find', 'go_sleep', 'sleep_night', 'closely_relate', 'well_even'] | alt_atheism_51283 |@lemmatized sorry:1 bill:1 clear:1 may:1 good:1 evolutionary:1 argument:1 homosexuality:1 qualify:1 deletion:2 oh:1 guess:1 social:3 insect:1 ant:1 bee:1 etc:1 one:1 breeding:1 queen:1 whole:1 passel:1 sterile:1 worker:1 way:1 huh:1 refer:1 bonobo:1 specie:2 primate:1 closeley:1 relate:2 human:3 chimpanzee:1 closely:2 sex:6 time:1 homosexual:1 well:2 heterosexual:1 group:1 find:1 food:1 go:1 sleep:1 night:1 escape:1 fight:1 prdators:1 serve:1 important:1 function:3 beyond:1 reproduction:1 species:1 indication:1 performs:1 even:1 show:1 impossible:1 sincerely:1 ray:1 ingles:1 |@bigram may_good:1 oh_guess:1 etc_one:1 group_find:1 go_sleep:1 sleep_night:1 closely_relate:1 well_even:1 |
2,146 | null | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.ibm.pc.hardware/58991 | 3 | comp_sys_ibm_pc_hardware_58991 | [] | [] | [] | comp_sys_ibm_pc_hardware_58991 |@lemmatized |@bigram |
2,147 |
My own personal and highly subjective opinion is that freedom
is a good thing.
However, when I here people assert that the only "true" freedom
is in following the words of this and that Messiah, I realise
that people don't even agree on the meaning of the word.
What does it mean to say that word X represents an objective
value when word X has no objective meaning? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/53134 | 0 | alt_atheism_53134 | [('my', 'PRP$'), ('own', 'JJ'), ('personal', 'JJ'), ('and', 'CC'), ('highly', 'RB'), ('subjective', 'JJ'), ('opinion', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('freedom', 'NN'), ('is', 'VBZ'), ('good', 'JJ'), ('thing', 'NN'), ('however', 'RB'), ('when', 'WRB'), ('here', 'RB'), ('people', 'NNS'), ('assert', 'VBP'), ('that', 'IN'), ('the', 'DT'), ('only', 'JJ'), ('true', 'JJ'), ('freedom', 'NN'), ('is', 'VBZ'), ('in', 'IN'), ('following', 'VBG'), ('the', 'DT'), ('words', 'NNS'), ('of', 'IN'), ('this', 'DT'), ('and', 'CC'), ('that', 'IN'), ('messiah', 'JJ'), ('realise', 'NN'), ('that', 'WDT'), ('people', 'NNS'), ('don', 'VBP'), ('even', 'RB'), ('agree', 'VBP'), ('on', 'IN'), ('the', 'DT'), ('meaning', 'NN'), ('of', 'IN'), ('the', 'DT'), ('word', 'NN'), ('what', 'WP'), ('does', 'VBZ'), ('it', 'PRP'), ('mean', 'VB'), ('to', 'TO'), ('say', 'VB'), ('that', 'IN'), ('word', 'NN'), ('represents', 'VBZ'), ('an', 'DT'), ('objective', 'JJ'), ('value', 'NN'), ('when', 'WRB'), ('word', 'NN'), ('has', 'VBZ'), ('no', 'DT'), ('objective', 'JJ'), ('meaning', 'NN')] | ['personal', 'highly', 'subjective', 'opinion', 'freedom', 'good', 'thing', 'however', 'people', 'assert', 'true', 'freedom', 'follow', 'word', 'messiah', 'realise', 'people', 'even', 'agree', 'meaning', 'word', 'mean', 'say', 'word', 'represent', 'objective', 'value', 'word', 'objective', 'meaning'] | ['good_thing', 'thing_however', 'however_people', 'people_even', 'even_agree', 'meaning_word', 'word_mean', 'mean_say', 'say_word', 'objective_value', 'word_objective'] | alt_atheism_53134 |@lemmatized personal:1 highly:1 subjective:1 opinion:1 freedom:2 good:1 thing:1 however:1 people:2 assert:1 true:1 follow:1 word:4 messiah:1 realise:1 even:1 agree:1 meaning:2 mean:1 say:1 represent:1 objective:2 value:1 |@bigram good_thing:1 thing_however:1 however_people:1 people_even:1 even_agree:1 meaning_word:1 word_mean:1 mean_say:1 say_word:1 objective_value:1 word_objective:1 |
2,148 |
In case you haven't noticed, Clintonites are pushing a universal health
care ACCESS program. "Access" here means that folks who do not give
a damn about immunizing their children will have health care services
delivered to their doorsteps.
--
------------------------------------------------------------------------------------------
Disclaimer: Opinions expressed are mine, not my employer's. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.misc/178496 | 18 | talk_politics_misc_178496 | [('in', 'IN'), ('case', 'NN'), ('you', 'PRP'), ('haven', 'VBP'), ('noticed', 'JJ'), ('clintonites', 'NNS'), ('are', 'VBP'), ('pushing', 'VBG'), ('universal', 'JJ'), ('health', 'NN'), ('care', 'NN'), ('access', 'NN'), ('program', 'NN'), ('access', 'NN'), ('here', 'RB'), ('means', 'VBZ'), ('that', 'IN'), ('folks', 'NNS'), ('who', 'WP'), ('do', 'VBP'), ('not', 'RB'), ('give', 'VB'), ('damn', 'NN'), ('about', 'IN'), ('immunizing', 'VBG'), ('their', 'PRP$'), ('children', 'NNS'), ('will', 'MD'), ('have', 'VB'), ('health', 'NN'), ('care', 'NN'), ('services', 'NNS'), ('delivered', 'VBN'), ('to', 'TO'), ('their', 'PRP$'), ('doorsteps', 'NNS'), ('--', ':'), ('------------------------------------------------------------------------------------------', 'VB'), ('disclaimer', 'JJ'), ('opinions', 'NNS'), ('expressed', 'VBN'), ('are', 'VBP'), ('mine', 'JJ'), ('not', 'RB'), ('my', 'PRP$'), ('employer', 'NN')] | ['case', 'noticed', 'clintonites', 'push', 'universal', 'health', 'care', 'access', 'program', 'access', 'mean', 'folk', 'give', 'damn', 'immunize', 'child', 'health', 'care', 'service', 'deliver', 'doorstep', 'disclaimer', 'opinion', 'express', 'mine', 'employer'] | ['health_care', 'give_damn', 'health_care', 'care_service', 'disclaimer_opinion', 'opinion_express', 'mine_employer'] | talk_politics_misc_178496 |@lemmatized case:1 noticed:1 clintonites:1 push:1 universal:1 health:2 care:2 access:2 program:1 mean:1 folk:1 give:1 damn:1 immunize:1 child:1 service:1 deliver:1 doorstep:1 disclaimer:1 opinion:1 express:1 mine:1 employer:1 |@bigram health_care:2 give_damn:1 care_service:1 disclaimer_opinion:1 opinion_express:1 mine_employer:1 |
2,149 | HELLO, shit face david, I see that you are still around. I dont want to
see your shitty writings posted here man. I told you. You are getting
itchy as your fucking country. Hey , and dont give me that freedom
of speach bullshit once more. Because your freedom has ended when you started
writing things about my people. And try to translate this "ebenin donu
butti kafa David.".
BYE, ANACIM HADE.
TIMUCIN
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76110 | 17 | talk_politics_mideast_76110 | [('hello', 'NN'), ('shit', 'VBD'), ('face', 'NN'), ('david', 'NN'), ('see', 'VBP'), ('that', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('still', 'RB'), ('around', 'IN'), ('dont', 'JJ'), ('want', 'VBP'), ('to', 'TO'), ('see', 'VB'), ('your', 'PRP$'), ('shitty', 'JJ'), ('writings', 'NNS'), ('posted', 'VBD'), ('here', 'RB'), ('man', 'NN'), ('told', 'VBD'), ('you', 'PRP'), ('you', 'PRP'), ('are', 'VBP'), ('getting', 'VBG'), ('itchy', 'JJ'), ('as', 'IN'), ('your', 'PRP$'), ('fucking', 'VBG'), ('country', 'NN'), ('hey', 'NN'), ('and', 'CC'), ('dont', 'NN'), ('give', 'VB'), ('me', 'PRP'), ('that', 'IN'), ('freedom', 'NN'), ('of', 'IN'), ('speach', 'NN'), ('bullshit', 'NN'), ('once', 'RB'), ('more', 'RBR'), ('because', 'IN'), ('your', 'PRP$'), ('freedom', 'NN'), ('has', 'VBZ'), ('ended', 'VBN'), ('when', 'WRB'), ('you', 'PRP'), ('started', 'VBD'), ('writing', 'VBG'), ('things', 'NNS'), ('about', 'IN'), ('my', 'PRP$'), ('people', 'NNS'), ('and', 'CC'), ('try', 'VB'), ('to', 'TO'), ('translate', 'VB'), ('this', 'DT'), ('ebenin', 'NN'), ('donu', 'NN'), ('butti', 'NN'), ('kafa', 'NN'), ('david', 'NN'), ('.".', 'NNP'), ('bye', 'NN'), ('anacim', 'NN'), ('hade', 'VBD'), ('timucin', 'NN')] | ['hello', 'shit', 'face', 'david', 'see', 'still', 'around', 'dont', 'want', 'see', 'shitty', 'writing', 'post', 'man', 'tell', 'get', 'itchy', 'fuck', 'country', 'hey', 'dont', 'give', 'freedom', 'speach', 'bullshit', 'freedom', 'end', 'start', 'write', 'thing', 'people', 'try', 'translate', 'ebenin', 'donu', 'butti', 'kafa', 'david', 'bye', 'anacim', 'hade', 'timucin'] | ['see_still', 'still_around', 'want_see', 'tell_get', 'get_itchy', 'give_freedom', 'write_thing', 'thing_people', 'people_try'] | talk_politics_mideast_76110 |@lemmatized hello:1 shit:1 face:1 david:2 see:2 still:1 around:1 dont:2 want:1 shitty:1 writing:1 post:1 man:1 tell:1 get:1 itchy:1 fuck:1 country:1 hey:1 give:1 freedom:2 speach:1 bullshit:1 end:1 start:1 write:1 thing:1 people:1 try:1 translate:1 ebenin:1 donu:1 butti:1 kafa:1 bye:1 anacim:1 hade:1 timucin:1 |@bigram see_still:1 still_around:1 want_see:1 tell_get:1 get_itchy:1 give_freedom:1 write_thing:1 thing_people:1 people_try:1 |
2,150 |
If you culture out the spirochete, it is virtually 100% certain
the patient has Lyme. I suppose you could have contamination
in an exceptionally sloppy lab, but normally not. There are no
false positives.
--
----------------------------------------------------------------------------
Gordon Banks N3JXP | "Skepticism is the chastity of the intellect, and
[email protected] | it is shameful to surrender it too soon." | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.med/59107 | 13 | sci_med_59107 | [('if', 'IN'), ('you', 'PRP'), ('culture', 'NN'), ('out', 'IN'), ('the', 'DT'), ('spirochete', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('virtually', 'RB'), ('100', 'CD'), ('certain', 'JJ'), ('the', 'DT'), ('patient', 'NN'), ('has', 'VBZ'), ('lyme', 'VBN'), ('suppose', 'RB'), ('you', 'PRP'), ('could', 'MD'), ('have', 'VB'), ('contamination', 'NN'), ('in', 'IN'), ('an', 'DT'), ('exceptionally', 'RB'), ('sloppy', 'JJ'), ('lab', 'NN'), ('but', 'CC'), ('normally', 'RB'), ('not', 'RB'), ('there', 'EX'), ('are', 'VBP'), ('no', 'DT'), ('false', 'JJ'), ('positives', 'NNS'), ('--', ':'), ('----------------------------------------------------------------------------', 'JJ'), ('gordon', 'JJ'), ('banks', 'NNS'), ('n3jxp', 'JJ'), ('skepticism', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('chastity', 'NN'), ('of', 'IN'), ('the', 'DT'), ('intellect', 'NN'), ('and', 'CC'), ('it', 'PRP'), ('is', 'VBZ'), ('shameful', 'JJ'), ('to', 'TO'), ('surrender', 'VB'), ('it', 'PRP'), ('too', 'RB'), ('soon', 'RB'), ('."', 'JJ')] | ['culture', 'spirochete', 'virtually', 'certain', 'patient', 'lyme', 'suppose', 'could', 'contamination', 'exceptionally', 'sloppy', 'lab', 'normally', 'false', 'positive', 'gordon', 'bank', 'skepticism', 'chastity', 'intellect', 'shameful', 'surrender', 'soon'] | ['suppose_could', 'gordon_bank', 'bank_skepticism', 'skepticism_chastity', 'chastity_intellect', 'intellect_shameful', 'shameful_surrender', 'surrender_soon'] | sci_med_59107 |@lemmatized culture:1 spirochete:1 virtually:1 certain:1 patient:1 lyme:1 suppose:1 could:1 contamination:1 exceptionally:1 sloppy:1 lab:1 normally:1 false:1 positive:1 gordon:1 bank:1 skepticism:1 chastity:1 intellect:1 shameful:1 surrender:1 soon:1 |@bigram suppose_could:1 gordon_bank:1 bank_skepticism:1 skepticism_chastity:1 chastity_intellect:1 intellect_shameful:1 shameful_surrender:1 surrender_soon:1 |
2,151 |
See:
Maureen Stone and Tony DeRose,
"A Geometric Characterization of Parametric Cubic Curves",
ACM TOG, vol 8, no 3, July 1989, pp. 147-163.
_______________________________________________________________________
...Ron Capelli IBM Corp. Dept. C13, MS. P230
[email protected] PO Box 950
(914) 435-1673 Poughkeepsie, NY 12602
_______________________________________________________________________ | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38516 | 1 | comp_graphics_38516 | [('see', 'VB'), ('maureen', 'JJ'), ('stone', 'NN'), ('and', 'CC'), ('tony', 'JJ'), ('derose', 'NN'), ('geometric', 'JJ'), ('characterization', 'NN'), ('of', 'IN'), ('parametric', 'JJ'), ('cubic', 'JJ'), ('curves', 'NNS'), ('",', 'VBP'), ('acm', 'JJ'), ('tog', 'NN'), ('vol', 'NN'), ('no', 'DT'), ('july', 'NN'), ('1989', 'CD'), ('pp', 'NN'), ('147', 'CD'), ('163', 'CD'), ('_______________________________________________________________________', 'NN'), ('...', ':'), ('ron', 'NN'), ('capelli', 'NN'), ('ibm', 'VBP'), ('corp', 'NN'), ('dept', 'NN'), ('c13', 'NN'), ('ms', 'NN'), ('p230', 'NN'), ('po', 'NN'), ('box', 'NN'), ('950', 'CD'), ('914', 'CD'), ('435', 'CD'), ('1673', 'CD'), ('poughkeepsie', 'NN'), ('ny', 'CC'), ('12602', 'CD'), ('_______________________________________________________________________', 'NN')] | ['see', 'maureen', 'stone', 'tony', 'derose', 'geometric', 'characterization', 'parametric', 'cubic', 'curve', 'acm', 'tog', 'vol', 'july', 'pp', 'ron', 'capelli', 'ibm', 'corp', 'dept', 'po', 'box', 'poughkeepsie', 'ny'] | ['po_box'] | comp_graphics_38516 |@lemmatized see:1 maureen:1 stone:1 tony:1 derose:1 geometric:1 characterization:1 parametric:1 cubic:1 curve:1 acm:1 tog:1 vol:1 july:1 pp:1 ron:1 capelli:1 ibm:1 corp:1 dept:1 po:1 box:1 poughkeepsie:1 ny:1 |@bigram po_box:1 |
2,152 |
I've heard that bikes tuned to perfection on the Dyno can be a little
too close to the edge for street use. Cold morning, bad gas, etc.
Apparently they back them of some even for track use.
You pays your money ...
__
Jorg Klinger | GSXR1100 | If you only new who
Arch. & Eng. Services |"Lost Horizons" CR500 | I think I am.
UManitoba, Man. Ca. |"The Embalmer" IT175 | - anonymous
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/103213 | 8 | rec_motorcycles_103213 | [('ve', 'RB'), ('heard', 'NN'), ('that', 'IN'), ('bikes', 'NNS'), ('tuned', 'VBD'), ('to', 'TO'), ('perfection', 'VB'), ('on', 'IN'), ('the', 'DT'), ('dyno', 'NN'), ('can', 'MD'), ('be', 'VB'), ('little', 'RB'), ('too', 'RB'), ('close', 'JJ'), ('to', 'TO'), ('the', 'DT'), ('edge', 'NN'), ('for', 'IN'), ('street', 'NN'), ('use', 'NN'), ('cold', 'JJ'), ('morning', 'NN'), ('bad', 'JJ'), ('gas', 'NN'), ('etc', 'NN'), ('apparently', 'RB'), ('they', 'PRP'), ('back', 'VBP'), ('them', 'PRP'), ('of', 'IN'), ('some', 'DT'), ('even', 'RB'), ('for', 'IN'), ('track', 'NN'), ('use', 'NN'), ('you', 'PRP'), ('pays', 'VBP'), ('your', 'PRP$'), ('money', 'NN'), ('...', ':'), ('__', 'CC'), ('jorg', 'JJ'), ('klinger', 'NN'), ('gsxr1100', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('only', 'RB'), ('new', 'JJ'), ('who', 'WP'), ('arch', 'VBP'), ('eng', 'NN'), ('services', 'NNS'), ('|"', 'VBP'), ('lost', 'VBN'), ('horizons', 'NNS'), ('cr500', 'VBP'), ('think', 'VBP'), ('am', 'VBP'), ('umanitoba', 'JJ'), ('man', 'NN'), ('ca', 'MD'), ('|"', 'VB'), ('the', 'DT'), ('embalmer', 'NN'), ('it175', 'NN'), ('anonymous', 'JJ')] | ['heard', 'bike', 'tune', 'perfection', 'dyno', 'little', 'close', 'edge', 'street', 'use', 'cold', 'morning', 'bad', 'gas', 'etc', 'apparently', 'back', 'even', 'track', 'use', 'pay', 'money', 'jorg', 'klinger', 'new', 'arch', 'eng', 'service', 'lose', 'horizon', 'think', 'umanitoba', 'man', 'ca', 'embalmer', 'anonymous'] | ['back_even', 'use_pay', 'pay_money'] | rec_motorcycles_103213 |@lemmatized heard:1 bike:1 tune:1 perfection:1 dyno:1 little:1 close:1 edge:1 street:1 use:2 cold:1 morning:1 bad:1 gas:1 etc:1 apparently:1 back:1 even:1 track:1 pay:1 money:1 jorg:1 klinger:1 new:1 arch:1 eng:1 service:1 lose:1 horizon:1 think:1 umanitoba:1 man:1 ca:1 embalmer:1 anonymous:1 |@bigram back_even:1 use_pay:1 pay_money:1 |
2,153 | Fellow netters,
I have an Okidata printer I would like to sell. A description follows:
Okidata 180 printer including cables for both IBM compatibles (Centronics
parallel) and Commodore (RS-232 - round). Also includes power cable, manual,
and a handful of computer paper to get you started. This is a 9-pin printer.
I recently cleaned the printhead and installed a new ribbon. A print sample
can be provided upon request. This is a very dependable printer - it never
jams or does "weird" things. I have used it with a Commodore for about 3 years
and am now using it with my 486sx. I use mainly WordPerfect 5.1 (see next
post) for which I got a driver (at no charge) that directly supports the
Okidata 180 in Epson FX mode.
When I got the printer, it was selling for around $200-220 new (I got mine
from Tenex brand new - for a Christmas present). I would like to get about
$100 or so for it. If you are interested at all in it, please give me a ring
(E-Mail) and make an offer. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/misc.forsale/76162 | 6 | misc_forsale_76162 | [('fellow', 'JJ'), ('netters', 'NNS'), ('have', 'VBP'), ('an', 'DT'), ('okidata', 'NN'), ('printer', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('sell', 'VB'), ('description', 'NN'), ('follows', 'VBZ'), ('okidata', 'RP'), ('180', 'CD'), ('printer', 'NN'), ('including', 'VBG'), ('cables', 'NNS'), ('for', 'IN'), ('both', 'DT'), ('ibm', 'JJ'), ('compatibles', 'NNS'), ('centronics', 'NNS'), ('parallel', 'JJ'), ('and', 'CC'), ('commodore', 'JJ'), ('rs', 'NN'), ('232', 'CD'), ('round', 'NN'), (').', 'NNP'), ('also', 'RB'), ('includes', 'VBZ'), ('power', 'NN'), ('cable', 'NN'), ('manual', 'JJ'), ('and', 'CC'), ('handful', 'NN'), ('of', 'IN'), ('computer', 'NN'), ('paper', 'NN'), ('to', 'TO'), ('get', 'VB'), ('you', 'PRP'), ('started', 'VBN'), ('this', 'DT'), ('is', 'VBZ'), ('pin', 'JJ'), ('printer', 'NN'), ('recently', 'RB'), ('cleaned', 'VBD'), ('the', 'DT'), ('printhead', 'NN'), ('and', 'CC'), ('installed', 'VBD'), ('new', 'JJ'), ('ribbon', 'NN'), ('print', 'NN'), ('sample', 'NN'), ('can', 'MD'), ('be', 'VB'), ('provided', 'VBN'), ('upon', 'IN'), ('request', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('very', 'RB'), ('dependable', 'JJ'), ('printer', 'NN'), ('it', 'PRP'), ('never', 'RB'), ('jams', 'VBZ'), ('or', 'CC'), ('does', 'VBZ'), ('weird', 'JJ'), ('things', 'NNS'), ('have', 'VBP'), ('used', 'VBN'), ('it', 'PRP'), ('with', 'IN'), ('commodore', 'NN'), ('for', 'IN'), ('about', 'IN'), ('years', 'NNS'), ('and', 'CC'), ('am', 'VBP'), ('now', 'RB'), ('using', 'VBG'), ('it', 'PRP'), ('with', 'IN'), ('my', 'PRP$'), ('486sx', 'CD'), ('use', 'NN'), ('mainly', 'RB'), ('wordperfect', 'JJ'), ('see', 'VBP'), ('next', 'JJ'), ('post', 'NN'), ('for', 'IN'), ('which', 'WDT'), ('got', 'VBD'), ('driver', 'RB'), ('at', 'IN'), ('no', 'DT'), ('charge', 'NN'), ('that', 'WDT'), ('directly', 'RB'), ('supports', 'VBZ'), ('the', 'DT'), ('okidata', 'NN'), ('180', 'CD'), ('in', 'IN'), ('epson', 'NN'), ('fx', 'NN'), ('mode', 'NN'), ('when', 'WRB'), ('got', 'VBD'), ('the', 'DT'), ('printer', 'NN'), ('it', 'PRP'), ('was', 'VBD'), ('selling', 'VBG'), ('for', 'IN'), ('around', 'IN'), ('200', 'CD'), ('220', 'CD'), ('new', 'JJ'), ('got', 'VBD'), ('mine', 'JJ'), ('from', 'IN'), ('tenex', 'JJ'), ('brand', 'NN'), ('new', 'JJ'), ('for', 'IN'), ('christmas', 'JJ'), ('present', 'JJ'), (').', 'NN'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('get', 'VB'), ('about', 'IN'), ('100', 'CD'), ('or', 'CC'), ('so', 'RB'), ('for', 'IN'), ('it', 'PRP'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('interested', 'JJ'), ('at', 'IN'), ('all', 'DT'), ('in', 'IN'), ('it', 'PRP'), ('please', 'VB'), ('give', 'VB'), ('me', 'PRP'), ('ring', 'VBG'), ('mail', 'NN'), ('and', 'CC'), ('make', 'VB'), ('an', 'DT'), ('offer', 'NN')] | ['fellow', 'netters', 'okidata', 'printer', 'would', 'like', 'sell', 'description', 'follow', 'okidata', 'printer', 'include', 'cable', 'ibm', 'compatibles', 'centronics', 'parallel', 'commodore', 'r', 'round', 'also', 'include', 'power', 'cable', 'manual', 'handful', 'computer', 'paper', 'get', 'start', 'pin', 'printer', 'recently', 'clean', 'printhead', 'instal', 'new', 'ribbon', 'print', 'sample', 'provide', 'upon', 'request', 'dependable', 'printer', 'never', 'jam', 'weird', 'thing', 'use', 'commodore', 'year', 'use', 'use', 'mainly', 'wordperfect', 'see', 'next', 'post', 'get', 'driver', 'charge', 'directly', 'support', 'okidata', 'epson', 'fx', 'mode', 'get', 'printer', 'sell', 'around', 'new', 'get', 'mine', 'tenex', 'brand', 'new', 'christmas', 'present', 'would', 'like', 'get', 'interested', 'please', 'give', 'ring', 'mail', 'make', 'offer'] | ['fellow_netters', 'printer_would', 'would_like', 'like_sell', 'also_include', 'power_cable', 'get_start', 'pin_printer', 'instal_new', 'upon_request', 'weird_thing', 'thing_use', 'year_use', 'use_use', 'see_next', 'post_get', 'get_driver', 'mode_get', 'get_mine', 'brand_new', 'would_like', 'like_get', 'get_interested', 'interested_please', 'please_give', 'make_offer'] | misc_forsale_76162 |@lemmatized fellow:1 netters:1 okidata:3 printer:5 would:2 like:2 sell:2 description:1 follow:1 include:2 cable:2 ibm:1 compatibles:1 centronics:1 parallel:1 commodore:2 r:1 round:1 also:1 power:1 manual:1 handful:1 computer:1 paper:1 get:5 start:1 pin:1 recently:1 clean:1 printhead:1 instal:1 new:3 ribbon:1 print:1 sample:1 provide:1 upon:1 request:1 dependable:1 never:1 jam:1 weird:1 thing:1 use:3 year:1 mainly:1 wordperfect:1 see:1 next:1 post:1 driver:1 charge:1 directly:1 support:1 epson:1 fx:1 mode:1 around:1 mine:1 tenex:1 brand:1 christmas:1 present:1 interested:1 please:1 give:1 ring:1 mail:1 make:1 offer:1 |@bigram fellow_netters:1 printer_would:1 would_like:2 like_sell:1 also_include:1 power_cable:1 get_start:1 pin_printer:1 instal_new:1 upon_request:1 weird_thing:1 thing_use:1 year_use:1 use_use:1 see_next:1 post_get:1 get_driver:1 mode_get:1 get_mine:1 brand_new:1 like_get:1 get_interested:1 interested_please:1 please_give:1 make_offer:1 |
2,154 | I have a few reprints left of chapters from my book "Visions of the
Future". These include reprints of 3 chapters probably of interest to
readers of this forum, including:
1. Current Techniques and Development of Computer Art, by Franz Szabo
2. Forging a Career as a Sculptor from a Career as Computer Programmer,
by Stewart Dickson
3. Fractals and Genetics in the Future by H. Joel Jeffrey
I'd be happy to send out free reprints to researchers for scholarly
purposes, until the reprints run out.
Just send me your name and address. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38360 | 1 | comp_graphics_38360 | [('have', 'VB'), ('few', 'JJ'), ('reprints', 'NNS'), ('left', 'VBN'), ('of', 'IN'), ('chapters', 'NNS'), ('from', 'IN'), ('my', 'PRP$'), ('book', 'NN'), ('visions', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('future', 'NN'), ('".', 'VBZ'), ('these', 'DT'), ('include', 'VBP'), ('reprints', 'NNS'), ('of', 'IN'), ('chapters', 'NNS'), ('probably', 'RB'), ('of', 'IN'), ('interest', 'NN'), ('to', 'TO'), ('readers', 'NNS'), ('of', 'IN'), ('this', 'DT'), ('forum', 'NN'), ('including', 'VBG'), ('current', 'JJ'), ('techniques', 'NNS'), ('and', 'CC'), ('development', 'NN'), ('of', 'IN'), ('computer', 'NN'), ('art', 'NN'), ('by', 'IN'), ('franz', 'NN'), ('szabo', 'NN'), ('forging', 'VBG'), ('career', 'NN'), ('as', 'IN'), ('sculptor', 'NN'), ('from', 'IN'), ('career', 'NN'), ('as', 'IN'), ('computer', 'NN'), ('programmer', 'NN'), ('by', 'IN'), ('stewart', 'JJ'), ('dickson', 'NN'), ('fractals', 'NNS'), ('and', 'CC'), ('genetics', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('future', 'NN'), ('by', 'IN'), ('joel', 'NN'), ('jeffrey', 'NN'), ('be', 'VB'), ('happy', 'JJ'), ('to', 'TO'), ('send', 'VB'), ('out', 'RP'), ('free', 'JJ'), ('reprints', 'NNS'), ('to', 'TO'), ('researchers', 'NNS'), ('for', 'IN'), ('scholarly', 'JJ'), ('purposes', 'NNS'), ('until', 'IN'), ('the', 'DT'), ('reprints', 'NNS'), ('run', 'VB'), ('out', 'RB'), ('just', 'RB'), ('send', 'VB'), ('me', 'PRP'), ('your', 'PRP$'), ('name', 'NN'), ('and', 'CC'), ('address', 'NN')] | ['reprint', 'leave', 'chapter', 'book', 'vision', 'future', 'include', 'reprint', 'chapter', 'probably', 'interest', 'reader', 'forum', 'include', 'current', 'technique', 'development', 'computer', 'art', 'franz', 'szabo', 'forge', 'career', 'sculptor', 'career', 'computer', 'programmer', 'stewart', 'dickson', 'fractal', 'genetics', 'future', 'joel', 'jeffrey', 'happy', 'send', 'free', 'reprint', 'researcher', 'scholarly', 'purpose', 'reprint', 'run', 'send', 'name', 'address'] | ['include_current', 'name_address'] | comp_graphics_38360 |@lemmatized reprint:4 leave:1 chapter:2 book:1 vision:1 future:2 include:2 probably:1 interest:1 reader:1 forum:1 current:1 technique:1 development:1 computer:2 art:1 franz:1 szabo:1 forge:1 career:2 sculptor:1 programmer:1 stewart:1 dickson:1 fractal:1 genetics:1 joel:1 jeffrey:1 happy:1 send:2 free:1 researcher:1 scholarly:1 purpose:1 run:1 name:1 address:1 |@bigram include_current:1 name_address:1 |
2,155 |
I thought NEC and Toshiba CD-ROM mechanism have an average
access time of less than 200 ms. While the SONY-APPLE CD-ROM
drive has an access time of 300 ms for the doublespin models. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/50493 | 4 | comp_sys_mac_hardware_50493 | [('thought', 'VBN'), ('nec', 'NNS'), ('and', 'CC'), ('toshiba', 'JJ'), ('cd', 'NN'), ('rom', 'NN'), ('mechanism', 'NN'), ('have', 'VBP'), ('an', 'DT'), ('average', 'JJ'), ('access', 'NN'), ('time', 'NN'), ('of', 'IN'), ('less', 'JJR'), ('than', 'IN'), ('200', 'CD'), ('ms', 'NNS'), ('while', 'IN'), ('the', 'DT'), ('sony', 'NN'), ('apple', 'NN'), ('cd', 'NN'), ('rom', 'NN'), ('drive', 'NN'), ('has', 'VBZ'), ('an', 'DT'), ('access', 'NN'), ('time', 'NN'), ('of', 'IN'), ('300', 'CD'), ('ms', 'NN'), ('for', 'IN'), ('the', 'DT'), ('doublespin', 'NN'), ('models', 'NNS')] | ['think', 'nec', 'toshiba', 'cd', 'rom', 'mechanism', 'average', 'access', 'time', 'less', 'sony', 'apple', 'cd', 'rom', 'drive', 'access', 'time', 'doublespin', 'model'] | ['cd_rom', 'access_time', 'time_less', 'cd_rom', 'rom_drive', 'access_time'] | comp_sys_mac_hardware_50493 |@lemmatized think:1 nec:1 toshiba:1 cd:2 rom:2 mechanism:1 average:1 access:2 time:2 less:1 sony:1 apple:1 drive:1 doublespin:1 model:1 |@bigram cd_rom:2 access_time:2 time_less:1 rom_drive:1 |
2,156 |
Please tell me what you think would have happened had the people
come out with their hands up several weeks ago.
More than someone who would not release children from the compound.
I.e., more than David Koresh/Vernon Howell/"Jesus Christ".
I saw lengthy excerpts from an Australian documentary made in
1992 that clearly showed that this was a cult.
I am not pleased with the BATF handling of the affair. I think they
bungled it badly from the start. But I don't think they are
responsible for the fire, which started in two different places.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.guns/54378 | 16 | talk_politics_guns_54378 | [('please', 'NN'), ('tell', 'VB'), ('me', 'PRP'), ('what', 'WP'), ('you', 'PRP'), ('think', 'VBP'), ('would', 'MD'), ('have', 'VB'), ('happened', 'VBN'), ('had', 'VBD'), ('the', 'DT'), ('people', 'NNS'), ('come', 'VBP'), ('out', 'RP'), ('with', 'IN'), ('their', 'PRP$'), ('hands', 'NNS'), ('up', 'IN'), ('several', 'JJ'), ('weeks', 'NNS'), ('ago', 'RB'), ('more', 'JJR'), ('than', 'IN'), ('someone', 'NN'), ('who', 'WP'), ('would', 'MD'), ('not', 'RB'), ('release', 'VB'), ('children', 'NNS'), ('from', 'IN'), ('the', 'DT'), ('compound', 'NN'), ('.,', 'VBZ'), ('more', 'JJR'), ('than', 'IN'), ('david', 'JJ'), ('koresh', 'JJ'), ('vernon', 'NN'), ('howell', 'NN'), ('/"', 'NNP'), ('jesus', 'NN'), ('christ', 'NN'), ('".', 'NNP'), ('saw', 'VBD'), ('lengthy', 'JJ'), ('excerpts', 'NNS'), ('from', 'IN'), ('an', 'DT'), ('australian', 'JJ'), ('documentary', 'NN'), ('made', 'VBD'), ('in', 'IN'), ('1992', 'CD'), ('that', 'IN'), ('clearly', 'RB'), ('showed', 'VBD'), ('that', 'IN'), ('this', 'DT'), ('was', 'VBD'), ('cult', 'NN'), ('am', 'VBP'), ('not', 'RB'), ('pleased', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('batf', 'NN'), ('handling', 'NN'), ('of', 'IN'), ('the', 'DT'), ('affair', 'NN'), ('think', 'VBP'), ('they', 'PRP'), ('bungled', 'VBD'), ('it', 'PRP'), ('badly', 'RB'), ('from', 'IN'), ('the', 'DT'), ('start', 'NN'), ('but', 'CC'), ('don', 'JJ'), ('think', 'NN'), ('they', 'PRP'), ('are', 'VBP'), ('responsible', 'JJ'), ('for', 'IN'), ('the', 'DT'), ('fire', 'NN'), ('which', 'WDT'), ('started', 'VBD'), ('in', 'IN'), ('two', 'CD'), ('different', 'JJ'), ('places', 'NNS')] | ['please', 'tell', 'think', 'would', 'happen', 'people', 'come', 'hand', 'several', 'week', 'ago', 'someone', 'would', 'release', 'child', 'compound', 'david', 'koresh', 'vernon', 'howell', 'jesus', 'christ', 'saw', 'lengthy', 'excerpt', 'australian', 'documentary', 'make', 'clearly', 'show', 'cult', 'pleased', 'batf', 'handling', 'affair', 'think', 'bungle', 'badly', 'start', 'think', 'responsible', 'fire', 'start', 'two', 'different', 'place'] | ['please_tell', 'tell_think', 'think_would', 'would_happen', 'happen_people', 'people_come', 'several_week', 'week_ago', 'someone_would', 'david_koresh', 'jesus_christ', 'clearly_show', 'start_think', 'fire_start', 'two_different'] | talk_politics_guns_54378 |@lemmatized please:1 tell:1 think:3 would:2 happen:1 people:1 come:1 hand:1 several:1 week:1 ago:1 someone:1 release:1 child:1 compound:1 david:1 koresh:1 vernon:1 howell:1 jesus:1 christ:1 saw:1 lengthy:1 excerpt:1 australian:1 documentary:1 make:1 clearly:1 show:1 cult:1 pleased:1 batf:1 handling:1 affair:1 bungle:1 badly:1 start:2 responsible:1 fire:1 two:1 different:1 place:1 |@bigram please_tell:1 tell_think:1 think_would:1 would_happen:1 happen_people:1 people_come:1 several_week:1 week_ago:1 someone_would:1 david_koresh:1 jesus_christ:1 clearly_show:1 start_think:1 fire_start:1 two_different:1 |
2,157 | I'm quite astonished, shocked, and appalled at this serious frontal
assault on emerging American freedoms. The Clinton administration
nor any other government agency has any legitimate role whatsoever
in regulating cryptography. To do so is tantamount to regulating
`acceptable' speech, and is blatantly unconstitutional. Perhaps we
should rename this year `1984' in honor of such an illustrious
proposal. Let the Crappy Chip live in infamy, and the adminstration
receive great shame and discredit for this bizarre misadventure.
I am outraged that my tax money is being used to develop technology
to restrict my freedoms far beyond reasonable measures. The U.S.
government will have my full uncooperation and disobedience on any
serious threat to my liberties such as this, and I call on everyone
with an interest in a sensible government to resist and defy this
proposal. The administration does not seem to understand that they
are merely a subservient instrument to implement the will of the
public, and hence anyone involved in this proposal in this respect is
wholly negligent and remiss in performing their lawful duty.
It seems to me that U.S. Diplomatic communications should be
tappable by the U.N. whenever any countries produce a warrant to
the U.N. In fact, I think we should stop paying the NSA billions
of dollars a year to produce unbreakable codes for this reason.
These actions violate the sovereignity of international law. (I hope
Mr. Clinton is shrewd enough to recognize my sarcasm and satire here.
But if he isn't, it's a modest and reasonable proposal, so he should
find merit with it nevertheless.)
Cryptography is neutral technology. If everybody has strong
cryptography (including policemen, bureacrats, businessmen,
housewives, thugs and hoodlums), we have a sustainable
equilibrium. Anything less is an unworkable anti-egaltarian
arrangement, intrinsically antithetical to American freedoms, and
guaranteed to collapse under its own weight of inherent
impracticality. We don't need to compromise on issues of freedom.
For too long our government has demonstrated itself to be
increasingly hostile and a serious obstacle to economic vitality
and protecting Americans.
It is not possible for the Federal Government
to ``act quickly'' or develop ``consistent, comprehensive
policies'' PERIOD. And even if by some grandiose miracle such
a thing were possible, it would only be an efficient way to
deprive American citizens of fundamental and inalienable rights.
The administration has to be committed to leaving private
industries alone, esp. on this issue. The government has no
legitimate role in regulating the content of communications.
Law enforcement agencies must be prepared to forfeit their
surveillance bludgeon; they are soon and inevitably to be
disarmed of it.
No such laws can be constitutionally sound, and this is equivalent
to a veiled threat, which I don't appreciate. This kind of
extortion tends to agitate me and others into radicalism. I will
trade threats for threats, and violation for violation.
If the administration did say this, it would find itself
impeached for reckless and outrageous disregard of essential,
established, entrenched, and explicit constitutional privacy
guarantees. The administration would have no legal standing
whatsoever; such an action would be egregiously illegal and
criminal, and wholly untolerated and disregarded by vast
segments of the population.
The U.S., comprised of a vast majority of people fanatically
committed to preserving their privacy in the face of an
increasingly totalitarian government, is saying just that.
Take your chips and give them to NSA employees as Christmas bonuses.
We can run any algorithm on our computers we damn well please,
and we will make any chips we please, and we will send any bit
pattern over our data highways we please. And if you try to stop
us, you will be gradually or abruptly dissolved into nothingness.
[privacy vs. law enforcement]
This is an outright Dingaling Denning lie. The two aims of
privacy and surveillance are intrinsically and fundamentally
incompatible, and you have to work for the NSA to think otherwise.
Americans are about to discover ways, through the use of technology,
to preserve their inalienable but forgotten freedoms that have slowly
been eroded away by an increasingly distant and unresponsive and
*unrepresentative* government.
-- | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15223 | 11 | sci_crypt_15223 | [('quite', 'RB'), ('astonished', 'VBN'), ('shocked', 'VBN'), ('and', 'CC'), ('appalled', 'VBN'), ('at', 'IN'), ('this', 'DT'), ('serious', 'JJ'), ('frontal', 'JJ'), ('assault', 'NN'), ('on', 'IN'), ('emerging', 'VBG'), ('american', 'JJ'), ('freedoms', 'NNS'), ('the', 'DT'), ('clinton', 'NN'), ('administration', 'NN'), ('nor', 'CC'), ('any', 'DT'), ('other', 'JJ'), ('government', 'NN'), ('agency', 'NN'), ('has', 'VBZ'), ('any', 'DT'), ('legitimate', 'JJ'), ('role', 'NN'), ('whatsoever', 'NN'), ('in', 'IN'), ('regulating', 'VBG'), ('cryptography', 'NN'), ('to', 'TO'), ('do', 'VB'), ('so', 'RB'), ('is', 'VBZ'), ('tantamount', 'JJ'), ('to', 'TO'), ('regulating', 'VBG'), ('acceptable', 'JJ'), ('speech', 'NN'), ('and', 'CC'), ('is', 'VBZ'), ('blatantly', 'RB'), ('unconstitutional', 'JJ'), ('perhaps', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('rename', 'VB'), ('this', 'DT'), ('year', 'NN'), ('1984', 'CD'), ('in', 'IN'), ('honor', 'NN'), ('of', 'IN'), ('such', 'JJ'), ('an', 'DT'), ('illustrious', 'JJ'), ('proposal', 'NN'), ('let', 'VBD'), ('the', 'DT'), ('crappy', 'JJ'), ('chip', 'NN'), ('live', 'VBP'), ('in', 'IN'), ('infamy', 'NN'), ('and', 'CC'), ('the', 'DT'), ('adminstration', 'NN'), ('receive', 'VBP'), ('great', 'JJ'), ('shame', 'NN'), ('and', 'CC'), ('discredit', 'NN'), ('for', 'IN'), ('this', 'DT'), ('bizarre', 'JJ'), ('misadventure', 'NN'), ('am', 'VBP'), ('outraged', 'VBN'), ('that', 'IN'), ('my', 'PRP$'), ('tax', 'NN'), ('money', 'NN'), ('is', 'VBZ'), ('being', 'VBG'), ('used', 'VBN'), ('to', 'TO'), ('develop', 'VB'), ('technology', 'NN'), ('to', 'TO'), ('restrict', 'VB'), ('my', 'PRP$'), ('freedoms', 'NNS'), ('far', 'RB'), ('beyond', 'IN'), ('reasonable', 'JJ'), ('measures', 'NNS'), ('the', 'DT'), ('government', 'NN'), ('will', 'MD'), ('have', 'VB'), ('my', 'PRP$'), ('full', 'JJ'), ('uncooperation', 'NN'), ('and', 'CC'), ('disobedience', 'NN'), ('on', 'IN'), ('any', 'DT'), ('serious', 'JJ'), ('threat', 'NN'), ('to', 'TO'), ('my', 'PRP$'), ('liberties', 'NNS'), ('such', 'JJ'), ('as', 'IN'), ('this', 'DT'), ('and', 'CC'), ('call', 'VB'), ('on', 'IN'), ('everyone', 'NN'), ('with', 'IN'), ('an', 'DT'), ('interest', 'NN'), ('in', 'IN'), ('sensible', 'JJ'), ('government', 'NN'), ('to', 'TO'), ('resist', 'VB'), ('and', 'CC'), ('defy', 'VB'), ('this', 'DT'), ('proposal', 'NN'), ('the', 'DT'), ('administration', 'NN'), ('does', 'VBZ'), ('not', 'RB'), ('seem', 'VB'), ('to', 'TO'), ('understand', 'VB'), ('that', 'IN'), ('they', 'PRP'), ('are', 'VBP'), ('merely', 'RB'), ('subservient', 'JJ'), ('instrument', 'NN'), ('to', 'TO'), ('implement', 'VB'), ('the', 'DT'), ('will', 'MD'), ('of', 'IN'), ('the', 'DT'), ('public', 'NN'), ('and', 'CC'), ('hence', 'RB'), ('anyone', 'NN'), ('involved', 'VBN'), ('in', 'IN'), ('this', 'DT'), ('proposal', 'NN'), ('in', 'IN'), ('this', 'DT'), ('respect', 'NN'), ('is', 'VBZ'), ('wholly', 'RB'), ('negligent', 'JJ'), ('and', 'CC'), ('remiss', 'JJ'), ('in', 'IN'), ('performing', 'VBG'), ('their', 'PRP$'), ('lawful', 'JJ'), ('duty', 'NN'), ('it', 'PRP'), ('seems', 'VBZ'), ('to', 'TO'), ('me', 'PRP'), ('that', 'IN'), ('diplomatic', 'JJ'), ('communications', 'NNS'), ('should', 'MD'), ('be', 'VB'), ('tappable', 'JJ'), ('by', 'IN'), ('the', 'DT'), ('whenever', 'NN'), ('any', 'DT'), ('countries', 'NNS'), ('produce', 'VBP'), ('warrant', 'NN'), ('to', 'TO'), ('the', 'DT'), ('in', 'IN'), ('fact', 'NN'), ('think', 'VBP'), ('we', 'PRP'), ('should', 'MD'), ('stop', 'VB'), ('paying', 'VBG'), ('the', 'DT'), ('nsa', 'JJ'), ('billions', 'NNS'), ('of', 'IN'), ('dollars', 'NNS'), ('year', 'NN'), ('to', 'TO'), ('produce', 'VB'), ('unbreakable', 'JJ'), ('codes', 'NNS'), ('for', 'IN'), ('this', 'DT'), ('reason', 'NN'), ('these', 'DT'), ('actions', 'NNS'), ('violate', 'VBP'), ('the', 'DT'), ('sovereignity', 'NN'), ('of', 'IN'), ('international', 'JJ'), ('law', 'NN'), ('hope', 'NN'), ('mr', 'IN'), ('clinton', 'NN'), ('is', 'VBZ'), ('shrewd', 'JJ'), ('enough', 'RB'), ('to', 'TO'), ('recognize', 'VB'), ('my', 'PRP$'), ('sarcasm', 'NN'), ('and', 'CC'), ('satire', 'NN'), ('here', 'RB'), ('but', 'CC'), ('if', 'IN'), ('he', 'PRP'), ('isn', 'VBZ'), ('it', 'PRP'), ('modest', 'JJ'), ('and', 'CC'), ('reasonable', 'JJ'), ('proposal', 'NN'), ('so', 'IN'), ('he', 'PRP'), ('should', 'MD'), ('find', 'VB'), ('merit', 'NN'), ('with', 'IN'), ('it', 'PRP'), ('nevertheless', 'RB'), ('.)', 'NNP'), ('cryptography', 'NN'), ('is', 'VBZ'), ('neutral', 'JJ'), ('technology', 'NN'), ('if', 'IN'), ('everybody', 'NN'), ('has', 'VBZ'), ('strong', 'JJ'), ('cryptography', 'NN'), ('including', 'VBG'), ('policemen', 'NNS'), ('bureacrats', 'NNS'), ('businessmen', 'VBP'), ('housewives', 'NNS'), ('thugs', 'NNS'), ('and', 'CC'), ('hoodlums', 'NNS'), ('),', 'VBP'), ('we', 'PRP'), ('have', 'VBP'), ('sustainable', 'JJ'), ('equilibrium', 'NN'), ('anything', 'NN'), ('less', 'CC'), ('is', 'VBZ'), ('an', 'DT'), ('unworkable', 'JJ'), ('anti', 'NN'), ('egaltarian', 'JJ'), ('arrangement', 'NN'), ('intrinsically', 'RB'), ('antithetical', 'JJ'), ('to', 'TO'), ('american', 'JJ'), ('freedoms', 'NNS'), ('and', 'CC'), ('guaranteed', 'VBN'), ('to', 'TO'), ('collapse', 'VB'), ('under', 'IN'), ('its', 'PRP$'), ('own', 'JJ'), ('weight', 'NN'), ('of', 'IN'), ('inherent', 'JJ'), ('impracticality', 'NN'), ('we', 'PRP'), ('don', 'VBP'), ('need', 'VBP'), ('to', 'TO'), ('compromise', 'VB'), ('on', 'IN'), ('issues', 'NNS'), ('of', 'IN'), ('freedom', 'NN'), ('for', 'IN'), ('too', 'RB'), ('long', 'JJ'), ('our', 'PRP$'), ('government', 'NN'), ('has', 'VBZ'), ('demonstrated', 'VBN'), ('itself', 'PRP'), ('to', 'TO'), ('be', 'VB'), ('increasingly', 'RB'), ('hostile', 'JJ'), ('and', 'CC'), ('serious', 'JJ'), ('obstacle', 'NN'), ('to', 'TO'), ('economic', 'JJ'), ('vitality', 'NN'), ('and', 'CC'), ('protecting', 'VBG'), ('americans', 'NNS'), ('it', 'PRP'), ('is', 'VBZ'), ('not', 'RB'), ('possible', 'JJ'), ('for', 'IN'), ('the', 'DT'), ('federal', 'JJ'), ('government', 'NN'), ('to', 'TO'), ('``', '``'), ('act', 'VB'), ('quickly', 'RB'), ("''", "''"), ('or', 'CC'), ('develop', 'VB'), ('``', '``'), ('consistent', 'JJ'), ('comprehensive', 'JJ'), ('policies', 'NNS'), ("''", "''"), ('period', 'NN'), ('and', 'CC'), ('even', 'RB'), ('if', 'IN'), ('by', 'IN'), ('some', 'DT'), ('grandiose', 'JJ'), ('miracle', 'NNS'), ('such', 'JJ'), ('thing', 'NN'), ('were', 'VBD'), ('possible', 'JJ'), ('it', 'PRP'), ('would', 'MD'), ('only', 'RB'), ('be', 'VB'), ('an', 'DT'), ('efficient', 'JJ'), ('way', 'NN'), ('to', 'TO'), ('deprive', 'VB'), ('american', 'JJ'), ('citizens', 'NNS'), ('of', 'IN'), ('fundamental', 'JJ'), ('and', 'CC'), ('inalienable', 'JJ'), ('rights', 'NNS'), ('the', 'DT'), ('administration', 'NN'), ('has', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('committed', 'VBN'), ('to', 'TO'), ('leaving', 'VBG'), ('private', 'JJ'), ('industries', 'NNS'), ('alone', 'RB'), ('esp', 'VBP'), ('on', 'IN'), ('this', 'DT'), ('issue', 'NN'), ('the', 'DT'), ('government', 'NN'), ('has', 'VBZ'), ('no', 'DT'), ('legitimate', 'JJ'), ('role', 'NN'), ('in', 'IN'), ('regulating', 'VBG'), ('the', 'DT'), ('content', 'NN'), ('of', 'IN'), ('communications', 'NNS'), ('law', 'NN'), ('enforcement', 'NN'), ('agencies', 'NNS'), ('must', 'MD'), ('be', 'VB'), ('prepared', 'VBN'), ('to', 'TO'), ('forfeit', 'VB'), ('their', 'PRP$'), ('surveillance', 'NN'), ('bludgeon', 'NN'), ('they', 'PRP'), ('are', 'VBP'), ('soon', 'RB'), ('and', 'CC'), ('inevitably', 'RB'), ('to', 'TO'), ('be', 'VB'), ('disarmed', 'VBN'), ('of', 'IN'), ('it', 'PRP'), ('no', 'DT'), ('such', 'JJ'), ('laws', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('constitutionally', 'RB'), ('sound', 'JJ'), ('and', 'CC'), ('this', 'DT'), ('is', 'VBZ'), ('equivalent', 'JJ'), ('to', 'TO'), ('veiled', 'VB'), ('threat', 'NN'), ('which', 'WDT'), ('don', 'VBZ'), ('appreciate', 'NN'), ('this', 'DT'), ('kind', 'NN'), ('of', 'IN'), ('extortion', 'NN'), ('tends', 'NNS'), ('to', 'TO'), ('agitate', 'VB'), ('me', 'PRP'), ('and', 'CC'), ('others', 'NNS'), ('into', 'IN'), ('radicalism', 'NN'), ('will', 'MD'), ('trade', 'VB'), ('threats', 'NNS'), ('for', 'IN'), ('threats', 'NNS'), ('and', 'CC'), ('violation', 'NN'), ('for', 'IN'), ('violation', 'NN'), ('if', 'IN'), ('the', 'DT'), ('administration', 'NN'), ('did', 'VBD'), ('say', 'VB'), ('this', 'DT'), ('it', 'PRP'), ('would', 'MD'), ('find', 'VB'), ('itself', 'PRP'), ('impeached', 'VBN'), ('for', 'IN'), ('reckless', 'JJ'), ('and', 'CC'), ('outrageous', 'JJ'), ('disregard', 'NN'), ('of', 'IN'), ('essential', 'JJ'), ('established', 'VBN'), ('entrenched', 'JJ'), ('and', 'CC'), ('explicit', 'JJ'), ('constitutional', 'JJ'), ('privacy', 'NN'), ('guarantees', 'VBZ'), ('the', 'DT'), ('administration', 'NN'), ('would', 'MD'), ('have', 'VB'), ('no', 'DT'), ('legal', 'JJ'), ('standing', 'VBG'), ('whatsoever', 'NN'), ('such', 'PDT'), ('an', 'DT'), ('action', 'NN'), ('would', 'MD'), ('be', 'VB'), ('egregiously', 'RB'), ('illegal', 'JJ'), ('and', 'CC'), ('criminal', 'JJ'), ('and', 'CC'), ('wholly', 'RB'), ('untolerated', 'JJ'), ('and', 'CC'), ('disregarded', 'VBN'), ('by', 'IN'), ('vast', 'JJ'), ('segments', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('population', 'NN'), ('the', 'DT'), ('.,', 'NNP'), ('comprised', 'VBD'), ('of', 'IN'), ('vast', 'JJ'), ('majority', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('fanatically', 'RB'), ('committed', 'VBN'), ('to', 'TO'), ('preserving', 'VBG'), ('their', 'PRP$'), ('privacy', 'NN'), ('in', 'IN'), ('the', 'DT'), ('face', 'NN'), ('of', 'IN'), ('an', 'DT'), ('increasingly', 'RB'), ('totalitarian', 'JJ'), ('government', 'NN'), ('is', 'VBZ'), ('saying', 'VBG'), ('just', 'RB'), ('that', 'IN'), ('take', 'VB'), ('your', 'PRP$'), ('chips', 'NNS'), ('and', 'CC'), ('give', 'VB'), ('them', 'PRP'), ('to', 'TO'), ('nsa', 'VB'), ('employees', 'NNS'), ('as', 'IN'), ('christmas', 'JJ'), ('bonuses', 'IN'), ('we', 'PRP'), ('can', 'MD'), ('run', 'VB'), ('any', 'DT'), ('algorithm', 'NN'), ('on', 'IN'), ('our', 'PRP$'), ('computers', 'NNS'), ('we', 'PRP'), ('damn', 'VBP'), ('well', 'RB'), ('please', 'RB'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('make', 'VB'), ('any', 'DT'), ('chips', 'NNS'), ('we', 'PRP'), ('please', 'VBP'), ('and', 'CC'), ('we', 'PRP'), ('will', 'MD'), ('send', 'VB'), ('any', 'DT'), ('bit', 'NN'), ('pattern', 'NN'), ('over', 'IN'), ('our', 'PRP$'), ('data', 'NNS'), ('highways', 'VBZ'), ('we', 'PRP'), ('please', 'VB'), ('and', 'CC'), ('if', 'IN'), ('you', 'PRP'), ('try', 'VBP'), ('to', 'TO'), ('stop', 'VB'), ('us', 'PRP'), ('you', 'PRP'), ('will', 'MD'), ('be', 'VB'), ('gradually', 'RB'), ('or', 'CC'), ('abruptly', 'RB'), ('dissolved', 'VBN'), ('into', 'IN'), ('nothingness', 'JJ'), ('privacy', 'NN'), ('vs', 'JJ'), ('law', 'NN'), ('enforcement', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('an', 'DT'), ('outright', 'JJ'), ('dingaling', 'VBG'), ('denning', 'VBG'), ('lie', 'PDT'), ('the', 'DT'), ('two', 'CD'), ('aims', 'NNS'), ('of', 'IN'), ('privacy', 'NN'), ('and', 'CC'), ('surveillance', 'NN'), ('are', 'VBP'), ('intrinsically', 'RB'), ('and', 'CC'), ('fundamentally', 'RB'), ('incompatible', 'JJ'), ('and', 'CC'), ('you', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('work', 'VB'), ('for', 'IN'), ('the', 'DT'), ('nsa', 'NN'), ('to', 'TO'), ('think', 'VB'), ('otherwise', 'RB'), ('americans', 'NNS'), ('are', 'VBP'), ('about', 'IN'), ('to', 'TO'), ('discover', 'VB'), ('ways', 'NNS'), ('through', 'IN'), ('the', 'DT'), ('use', 'NN'), ('of', 'IN'), ('technology', 'NN'), ('to', 'TO'), ('preserve', 'VB'), ('their', 'PRP$'), ('inalienable', 'JJ'), ('but', 'CC'), ('forgotten', 'JJ'), ('freedoms', 'NNS'), ('that', 'WDT'), ('have', 'VBP'), ('slowly', 'RB'), ('been', 'VBN'), ('eroded', 'VBN'), ('away', 'RP'), ('by', 'IN'), ('an', 'DT'), ('increasingly', 'RB'), ('distant', 'JJ'), ('and', 'CC'), ('unresponsive', 'JJ'), ('and', 'CC'), ('unrepresentative', 'JJ'), ('government', 'NN'), ('--', ':')] | ['quite', 'astonish', 'shock', 'appal', 'serious', 'frontal', 'assault', 'emerge', 'american', 'freedom', 'clinton', 'administration', 'government', 'agency', 'legitimate', 'role', 'whatsoever', 'regulate', 'cryptography', 'tantamount', 'regulate', 'acceptable', 'speech', 'blatantly', 'unconstitutional', 'perhaps', 'rename', 'year', 'honor', 'illustrious', 'proposal', 'let', 'crappy', 'chip', 'live', 'infamy', 'adminstration', 'receive', 'great', 'shame', 'discredit', 'bizarre', 'misadventure', 'outrage', 'tax', 'money', 'use', 'develop', 'technology', 'restrict', 'freedom', 'far', 'beyond', 'reasonable', 'measure', 'government', 'full', 'uncooperation', 'disobedience', 'serious', 'threat', 'liberty', 'call', 'everyone', 'interest', 'sensible', 'government', 'resist', 'defy', 'proposal', 'administration', 'seem', 'understand', 'merely', 'subservient', 'instrument', 'implement', 'public', 'hence', 'anyone', 'involve', 'proposal', 'respect', 'wholly', 'negligent', 'remiss', 'perform', 'lawful', 'duty', 'seem', 'diplomatic', 'communication', 'tappable', 'whenever', 'country', 'produce', 'warrant', 'fact', 'think', 'stop', 'pay', 'nsa', 'billion', 'dollar', 'year', 'produce', 'unbreakable', 'code', 'reason', 'action', 'violate', 'sovereignity', 'international', 'law', 'hope', 'mr', 'clinton', 'shrewd', 'enough', 'recognize', 'sarcasm', 'satire', 'modest', 'reasonable', 'proposal', 'find', 'merit', 'nevertheless', 'cryptography', 'neutral', 'technology', 'everybody', 'strong', 'cryptography', 'include', 'policeman', 'bureacrats', 'businessmen', 'housewife', 'thug', 'hoodlum', 'sustainable', 'equilibrium', 'anything', 'le', 'unworkable', 'anti', 'egaltarian', 'arrangement', 'intrinsically', 'antithetical', 'american', 'freedom', 'guarantee', 'collapse', 'weight', 'inherent', 'impracticality', 'need', 'compromise', 'issue', 'freedom', 'long', 'government', 'demonstrate', 'increasingly', 'hostile', 'serious', 'obstacle', 'economic', 'vitality', 'protect', 'american', 'possible', 'federal', 'government', 'act', 'quickly', 'develop', 'consistent', 'comprehensive', 'policy', 'period', 'even', 'grandiose', 'miracle', 'thing', 'possible', 'would', 'efficient', 'way', 'deprive', 'american', 'citizen', 'fundamental', 'inalienable', 'right', 'administration', 'commit', 'leave', 'private', 'industry', 'alone', 'esp', 'issue', 'government', 'legitimate', 'role', 'regulate', 'content', 'communication', 'law', 'enforcement', 'agency', 'must', 'prepare', 'forfeit', 'surveillance', 'bludgeon', 'soon', 'inevitably', 'disarm', 'law', 'constitutionally', 'sound', 'equivalent', 'veil', 'threat', 'appreciate', 'kind', 'extortion', 'tends', 'agitate', 'others', 'radicalism', 'trade', 'threat', 'threat', 'violation', 'violation', 'administration', 'say', 'would', 'find', 'impeach', 'reckless', 'outrageous', 'disregard', 'essential', 'establish', 'entrenched', 'explicit', 'constitutional', 'privacy', 'guarantee', 'administration', 'would', 'legal', 'stand', 'whatsoever', 'action', 'would', 'egregiously', 'illegal', 'criminal', 'wholly', 'untolerated', 'disregard', 'vast', 'segment', 'population', 'comprise', 'vast', 'majority', 'people', 'fanatically', 'commit', 'preserve', 'privacy', 'face', 'increasingly', 'totalitarian', 'government', 'say', 'take', 'chip', 'give', 'nsa', 'employee', 'christmas', 'bonus', 'run', 'algorithm', 'computer', 'damn', 'well', 'please', 'make', 'chip', 'please', 'send', 'bit', 'pattern', 'data', 'highways', 'please', 'try', 'stop', 'u', 'gradually', 'abruptly', 'dissolve', 'nothingness', 'privacy', 'vs', 'law', 'enforcement', 'outright', 'dingaling', 'denning', 'lie', 'two', 'aim', 'privacy', 'surveillance', 'intrinsically', 'fundamentally', 'incompatible', 'work', 'nsa', 'think', 'otherwise', 'american', 'discover', 'way', 'use', 'technology', 'preserve', 'inalienable', 'forgotten', 'freedom', 'slowly', 'erode', 'away', 'increasingly', 'distant', 'unresponsive', 'unrepresentative', 'government'] | ['clinton_administration', 'government_agency', 'far_beyond', 'serious_threat', 'fact_think', 'billion_dollar', 'dollar_year', 'year_produce', 'international_law', 'mr_clinton', 'strong_cryptography', 'economic_vitality', 'protect_american', 'federal_government', 'act_quickly', 'quickly_develop', 'develop_consistent', 'consistent_comprehensive', 'comprehensive_policy', 'possible_would', 'american_citizen', 'fundamental_inalienable', 'administration_commit', 'private_industry', 'content_communication', 'law_enforcement', 'enforcement_agency', 'agency_must', 'administration_say', 'say_would', 'would_find', 'segment_population', 'vast_majority', 'majority_people', 'government_say', 'say_take', 'damn_well', 'well_please', 'please_make', 'make_chip', 'please_send', 'please_try', 'try_stop', 'stop_u', 'law_enforcement', 'way_use', 'use_technology', 'technology_preserve'] | sci_crypt_15223 |@lemmatized quite:1 astonish:1 shock:1 appal:1 serious:3 frontal:1 assault:1 emerge:1 american:5 freedom:5 clinton:2 administration:5 government:8 agency:2 legitimate:2 role:2 whatsoever:2 regulate:3 cryptography:3 tantamount:1 acceptable:1 speech:1 blatantly:1 unconstitutional:1 perhaps:1 rename:1 year:2 honor:1 illustrious:1 proposal:4 let:1 crappy:1 chip:3 live:1 infamy:1 adminstration:1 receive:1 great:1 shame:1 discredit:1 bizarre:1 misadventure:1 outrage:1 tax:1 money:1 use:2 develop:2 technology:3 restrict:1 far:1 beyond:1 reasonable:2 measure:1 full:1 uncooperation:1 disobedience:1 threat:4 liberty:1 call:1 everyone:1 interest:1 sensible:1 resist:1 defy:1 seem:2 understand:1 merely:1 subservient:1 instrument:1 implement:1 public:1 hence:1 anyone:1 involve:1 respect:1 wholly:2 negligent:1 remiss:1 perform:1 lawful:1 duty:1 diplomatic:1 communication:2 tappable:1 whenever:1 country:1 produce:2 warrant:1 fact:1 think:2 stop:2 pay:1 nsa:3 billion:1 dollar:1 unbreakable:1 code:1 reason:1 action:2 violate:1 sovereignity:1 international:1 law:4 hope:1 mr:1 shrewd:1 enough:1 recognize:1 sarcasm:1 satire:1 modest:1 find:2 merit:1 nevertheless:1 neutral:1 everybody:1 strong:1 include:1 policeman:1 bureacrats:1 businessmen:1 housewife:1 thug:1 hoodlum:1 sustainable:1 equilibrium:1 anything:1 le:1 unworkable:1 anti:1 egaltarian:1 arrangement:1 intrinsically:2 antithetical:1 guarantee:2 collapse:1 weight:1 inherent:1 impracticality:1 need:1 compromise:1 issue:2 long:1 demonstrate:1 increasingly:3 hostile:1 obstacle:1 economic:1 vitality:1 protect:1 possible:2 federal:1 act:1 quickly:1 consistent:1 comprehensive:1 policy:1 period:1 even:1 grandiose:1 miracle:1 thing:1 would:4 efficient:1 way:2 deprive:1 citizen:1 fundamental:1 inalienable:2 right:1 commit:2 leave:1 private:1 industry:1 alone:1 esp:1 content:1 enforcement:2 must:1 prepare:1 forfeit:1 surveillance:2 bludgeon:1 soon:1 inevitably:1 disarm:1 constitutionally:1 sound:1 equivalent:1 veil:1 appreciate:1 kind:1 extortion:1 tends:1 agitate:1 others:1 radicalism:1 trade:1 violation:2 say:2 impeach:1 reckless:1 outrageous:1 disregard:2 essential:1 establish:1 entrenched:1 explicit:1 constitutional:1 privacy:4 legal:1 stand:1 egregiously:1 illegal:1 criminal:1 untolerated:1 vast:2 segment:1 population:1 comprise:1 majority:1 people:1 fanatically:1 preserve:2 face:1 totalitarian:1 take:1 give:1 employee:1 christmas:1 bonus:1 run:1 algorithm:1 computer:1 damn:1 well:1 please:3 make:1 send:1 bit:1 pattern:1 data:1 highways:1 try:1 u:1 gradually:1 abruptly:1 dissolve:1 nothingness:1 vs:1 outright:1 dingaling:1 denning:1 lie:1 two:1 aim:1 fundamentally:1 incompatible:1 work:1 otherwise:1 discover:1 forgotten:1 slowly:1 erode:1 away:1 distant:1 unresponsive:1 unrepresentative:1 |@bigram clinton_administration:1 government_agency:1 far_beyond:1 serious_threat:1 fact_think:1 billion_dollar:1 dollar_year:1 year_produce:1 international_law:1 mr_clinton:1 strong_cryptography:1 economic_vitality:1 protect_american:1 federal_government:1 act_quickly:1 quickly_develop:1 develop_consistent:1 consistent_comprehensive:1 comprehensive_policy:1 possible_would:1 american_citizen:1 fundamental_inalienable:1 administration_commit:1 private_industry:1 content_communication:1 law_enforcement:2 enforcement_agency:1 agency_must:1 administration_say:1 say_would:1 would_find:1 segment_population:1 vast_majority:1 majority_people:1 government_say:1 say_take:1 damn_well:1 well_please:1 please_make:1 make_chip:1 please_send:1 please_try:1 try_stop:1 stop_u:1 way_use:1 use_technology:1 technology_preserve:1 |
2,158 | <stuff deleted>
<other stuff deleted>
Wouldn't it be cheaper to just buy a little fourteen inch colour tv? Just
curious...
-- | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51891 | 4 | comp_sys_mac_hardware_51891 | [('stuff', 'NN'), ('deleted', 'VBD'), ('other', 'JJ'), ('stuff', 'NN'), ('deleted', 'VBD'), ('wouldn', 'WP'), ('it', 'PRP'), ('be', 'VB'), ('cheaper', 'JJR'), ('to', 'TO'), ('just', 'RB'), ('buy', 'VB'), ('little', 'JJ'), ('fourteen', 'JJ'), ('inch', 'NN'), ('colour', 'JJ'), ('tv', 'NN'), ('just', 'RB'), ('curious', 'JJ'), ('...', ':'), ('--', ':')] | ['stuff', 'delete', 'stuff', 'delete', 'cheap', 'buy', 'little', 'fourteen', 'inch', 'colour', 'tv', 'curious'] | ['stuff_delete', 'stuff_delete'] | comp_sys_mac_hardware_51891 |@lemmatized stuff:2 delete:2 cheap:1 buy:1 little:1 fourteen:1 inch:1 colour:1 tv:1 curious:1 |@bigram stuff_delete:2 |
2,159 | Hi there,
We are running a 120 node Token ring with Windows 3.1 and Novell 3.11.
Every once in a while, we run into "The Black Screen of Death", a phrase
coined by Robert X. Cringely in a recent InfoWorld column.
Basically, sometimes when you quit Windows, the screen goes black and
you get a nice little flashing cursor in the top left corner of your
screen. Also, sometimes when you exit to DOS, the same effect occurs.
Cringely hints that Microsoft and/or Novell has a patch for Windows'
virtual interrupt controller that may solve this. Neither company
seems to know what I am talking about when I call them.
Has anyone else noticed this phenomenon?
Is there a fix for it?
Any response is welcome. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9726 | 2 | comp_os_ms-windows_misc_9726 | [('hi', 'NN'), ('there', 'EX'), ('we', 'PRP'), ('are', 'VBP'), ('running', 'VBG'), ('120', 'CD'), ('node', 'JJ'), ('token', 'NNS'), ('ring', 'VBG'), ('with', 'IN'), ('windows', 'NNS'), ('and', 'CC'), ('novell', 'RB'), ('11', 'CD'), ('every', 'DT'), ('once', 'RB'), ('in', 'IN'), ('while', 'IN'), ('we', 'PRP'), ('run', 'VBP'), ('into', 'IN'), ('the', 'DT'), ('black', 'JJ'), ('screen', 'NN'), ('of', 'IN'), ('death', 'NN'), ('",', 'NNP'), ('phrase', 'NN'), ('coined', 'VBN'), ('by', 'IN'), ('robert', 'NN'), ('cringely', 'RB'), ('in', 'IN'), ('recent', 'JJ'), ('infoworld', 'NN'), ('column', 'NN'), ('basically', 'RB'), ('sometimes', 'RB'), ('when', 'WRB'), ('you', 'PRP'), ('quit', 'VBP'), ('windows', 'VBZ'), ('the', 'DT'), ('screen', 'NN'), ('goes', 'VBZ'), ('black', 'JJ'), ('and', 'CC'), ('you', 'PRP'), ('get', 'VBP'), ('nice', 'JJ'), ('little', 'JJ'), ('flashing', 'VBG'), ('cursor', 'NN'), ('in', 'IN'), ('the', 'DT'), ('top', 'JJ'), ('left', 'NN'), ('corner', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('screen', 'NN'), ('also', 'RB'), ('sometimes', 'RB'), ('when', 'WRB'), ('you', 'PRP'), ('exit', 'VBP'), ('to', 'TO'), ('dos', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('effect', 'NN'), ('occurs', 'VBZ'), ('cringely', 'RB'), ('hints', 'NNS'), ('that', 'IN'), ('microsoft', 'JJ'), ('and', 'CC'), ('or', 'CC'), ('novell', 'NN'), ('has', 'VBZ'), ('patch', 'VBN'), ('for', 'IN'), ('windows', 'NNS'), ('virtual', 'JJ'), ('interrupt', 'JJ'), ('controller', 'NN'), ('that', 'WDT'), ('may', 'MD'), ('solve', 'VB'), ('this', 'DT'), ('neither', 'DT'), ('company', 'NN'), ('seems', 'VBZ'), ('to', 'TO'), ('know', 'VB'), ('what', 'WP'), ('am', 'VBP'), ('talking', 'VBG'), ('about', 'IN'), ('when', 'WRB'), ('call', 'VB'), ('them', 'PRP'), ('has', 'VBZ'), ('anyone', 'NN'), ('else', 'RB'), ('noticed', 'VBD'), ('this', 'DT'), ('phenomenon', 'NN'), ('is', 'VBZ'), ('there', 'EX'), ('fix', 'RB'), ('for', 'IN'), ('it', 'PRP'), ('any', 'DT'), ('response', 'NN'), ('is', 'VBZ'), ('welcome', 'JJ')] | ['hi', 'run', 'node', 'token', 'ring', 'window', 'novell', 'every', 'run', 'black', 'screen', 'death', 'phrase', 'coin', 'robert', 'cringely', 'recent', 'infoworld', 'column', 'basically', 'sometimes', 'quit', 'windows', 'screen', 'go', 'black', 'get', 'nice', 'little', 'flash', 'cursor', 'top', 'left', 'corner', 'screen', 'also', 'sometimes', 'exit', 'effect', 'occur', 'cringely', 'hint', 'microsoft', 'novell', 'patch', 'window', 'virtual', 'interrupt', 'controller', 'may', 'solve', 'neither', 'company', 'seem', 'know', 'talk', 'call', 'anyone', 'else', 'notice', 'phenomenon', 'fix', 'response', 'welcome'] | ['token_ring', 'screen_go', 'go_black', 'nice_little', 'top_left', 'left_corner', 'seem_know', 'know_talk', 'anyone_else', 'else_notice'] | comp_os_ms-windows_misc_9726 |@lemmatized hi:1 run:2 node:1 token:1 ring:1 window:2 novell:2 every:1 black:2 screen:3 death:1 phrase:1 coin:1 robert:1 cringely:2 recent:1 infoworld:1 column:1 basically:1 sometimes:2 quit:1 windows:1 go:1 get:1 nice:1 little:1 flash:1 cursor:1 top:1 left:1 corner:1 also:1 exit:1 effect:1 occur:1 hint:1 microsoft:1 patch:1 virtual:1 interrupt:1 controller:1 may:1 solve:1 neither:1 company:1 seem:1 know:1 talk:1 call:1 anyone:1 else:1 notice:1 phenomenon:1 fix:1 response:1 welcome:1 |@bigram token_ring:1 screen_go:1 go_black:1 nice_little:1 top_left:1 left_corner:1 seem_know:1 know_talk:1 anyone_else:1 else_notice:1 |
2,160 |
I was under the (possibly incorrect) assumption that most of the MSG on
our foods was made from processing sugar beets. Is this not true? Are
there other sources of MSG?
I am one of those folx who react, sometimes strongly, to MSG. However,
I also react strongly to sodium chloride (table salt) in excess. Each
causes different symptoms except for the common one of rapid heartbeat
and an uncomfortable feeling of pressure in my chest, upper left quadrant.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.med/59024 | 13 | sci_med_59024 | [('was', 'VBD'), ('under', 'IN'), ('the', 'DT'), ('possibly', 'RB'), ('incorrect', 'JJ'), ('assumption', 'NN'), ('that', 'IN'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('msg', 'NN'), ('on', 'IN'), ('our', 'PRP$'), ('foods', 'NNS'), ('was', 'VBD'), ('made', 'VBN'), ('from', 'IN'), ('processing', 'VBG'), ('sugar', 'NN'), ('beets', 'NNS'), ('is', 'VBZ'), ('this', 'DT'), ('not', 'RB'), ('true', 'JJ'), ('are', 'VBP'), ('there', 'RB'), ('other', 'JJ'), ('sources', 'NNS'), ('of', 'IN'), ('msg', 'NN'), ('am', 'VBP'), ('one', 'CD'), ('of', 'IN'), ('those', 'DT'), ('folx', 'NNS'), ('who', 'WP'), ('react', 'VBP'), ('sometimes', 'RB'), ('strongly', 'RB'), ('to', 'TO'), ('msg', 'VB'), ('however', 'RB'), ('also', 'RB'), ('react', 'VBP'), ('strongly', 'RB'), ('to', 'TO'), ('sodium', 'VB'), ('chloride', 'NN'), ('table', 'JJ'), ('salt', 'NN'), ('in', 'IN'), ('excess', 'JJ'), ('each', 'DT'), ('causes', 'VBZ'), ('different', 'JJ'), ('symptoms', 'NNS'), ('except', 'IN'), ('for', 'IN'), ('the', 'DT'), ('common', 'JJ'), ('one', 'CD'), ('of', 'IN'), ('rapid', 'JJ'), ('heartbeat', 'NN'), ('and', 'CC'), ('an', 'DT'), ('uncomfortable', 'JJ'), ('feeling', 'NN'), ('of', 'IN'), ('pressure', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('chest', 'JJS'), ('upper', 'JJ'), ('left', 'NN'), ('quadrant', 'NN')] | ['possibly', 'incorrect', 'assumption', 'msg', 'food', 'make', 'process', 'sugar', 'beet', 'true', 'source', 'msg', 'one', 'folx', 'react', 'sometimes', 'strongly', 'msg', 'however', 'also', 'react', 'strongly', 'sodium', 'chloride', 'table', 'salt', 'excess', 'cause', 'different', 'symptom', 'except', 'common', 'one', 'rapid', 'heartbeat', 'uncomfortable', 'feeling', 'pressure', 'chest', 'upper', 'left', 'quadrant'] | ['msg_food', 'food_make', 'however_also'] | sci_med_59024 |@lemmatized possibly:1 incorrect:1 assumption:1 msg:3 food:1 make:1 process:1 sugar:1 beet:1 true:1 source:1 one:2 folx:1 react:2 sometimes:1 strongly:2 however:1 also:1 sodium:1 chloride:1 table:1 salt:1 excess:1 cause:1 different:1 symptom:1 except:1 common:1 rapid:1 heartbeat:1 uncomfortable:1 feeling:1 pressure:1 chest:1 upper:1 left:1 quadrant:1 |@bigram msg_food:1 food_make:1 however_also:1 |
2,161 |
Don't just nab it, POUNCE on it. These are fairly rare bikes, and
they are MORE than adequate for putting a big brown stripe in your shorts.
Does a 50mph power wheelie appeal to you? I thought it would...
Only really bad things: the stock clutch isn't up to the task.
Barnett can take care of this. The back tire wears quickly (gee, wonder why?),
and the induction system is a bear to work on.
Later, | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/103205 | 8 | rec_motorcycles_103205 | [('don', 'NN'), ('just', 'RB'), ('nab', 'IN'), ('it', 'PRP'), ('pounce', 'NN'), ('on', 'IN'), ('it', 'PRP'), ('these', 'DT'), ('are', 'VBP'), ('fairly', 'RB'), ('rare', 'JJ'), ('bikes', 'NNS'), ('and', 'CC'), ('they', 'PRP'), ('are', 'VBP'), ('more', 'JJR'), ('than', 'IN'), ('adequate', 'NN'), ('for', 'IN'), ('putting', 'VBG'), ('big', 'JJ'), ('brown', 'NN'), ('stripe', 'NN'), ('in', 'IN'), ('your', 'PRP$'), ('shorts', 'NNS'), ('does', 'VBZ'), ('50mph', 'CD'), ('power', 'NN'), ('wheelie', 'NN'), ('appeal', 'NN'), ('to', 'TO'), ('you', 'PRP'), ('thought', 'VBD'), ('it', 'PRP'), ('would', 'MD'), ('...', ':'), ('only', 'RB'), ('really', 'RB'), ('bad', 'JJ'), ('things', 'NNS'), ('the', 'DT'), ('stock', 'NN'), ('clutch', 'NN'), ('isn', 'VBD'), ('up', 'RB'), ('to', 'TO'), ('the', 'DT'), ('task', 'NN'), ('barnett', 'NN'), ('can', 'MD'), ('take', 'VB'), ('care', 'NN'), ('of', 'IN'), ('this', 'DT'), ('the', 'DT'), ('back', 'JJ'), ('tire', 'NN'), ('wears', 'NNS'), ('quickly', 'RB'), ('gee', 'VBD'), ('wonder', 'JJR'), ('why', 'WRB'), ('?),', 'NN'), ('and', 'CC'), ('the', 'DT'), ('induction', 'NN'), ('system', 'NN'), ('is', 'VBZ'), ('bear', 'JJ'), ('to', 'TO'), ('work', 'VB'), ('on', 'IN'), ('later', 'RB')] | ['nab', 'pounce', 'fairly', 'rare', 'bike', 'adequate', 'put', 'big', 'brown', 'stripe', 'short', 'power', 'wheelie', 'appeal', 'think', 'would', 'really', 'bad', 'thing', 'stock', 'clutch', 'task', 'barnett', 'take', 'care', 'back', 'tire', 'wear', 'quickly', 'gee', 'wonder', 'induction', 'system', 'bear', 'work', 'later'] | ['think_would', 'would_really', 'really_bad', 'bad_thing', 'take_care'] | rec_motorcycles_103205 |@lemmatized nab:1 pounce:1 fairly:1 rare:1 bike:1 adequate:1 put:1 big:1 brown:1 stripe:1 short:1 power:1 wheelie:1 appeal:1 think:1 would:1 really:1 bad:1 thing:1 stock:1 clutch:1 task:1 barnett:1 take:1 care:1 back:1 tire:1 wear:1 quickly:1 gee:1 wonder:1 induction:1 system:1 bear:1 work:1 later:1 |@bigram think_would:1 would_really:1 really_bad:1 bad_thing:1 take_care:1 |
2,162 |
That will make it easy for a car thief.
Saves him/her the trouble of popping your ignition!
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.autos/102822 | 7 | rec_autos_102822 | [('that', 'DT'), ('will', 'MD'), ('make', 'VB'), ('it', 'PRP'), ('easy', 'VB'), ('for', 'IN'), ('car', 'NN'), ('thief', 'NN'), ('saves', 'VBZ'), ('him', 'PRP'), ('her', 'PRP$'), ('the', 'DT'), ('trouble', 'NN'), ('of', 'IN'), ('popping', 'VBG'), ('your', 'PRP$'), ('ignition', 'NN')] | ['make', 'easy', 'car', 'thief', 'save', 'trouble', 'pop', 'ignition'] | ['make_easy'] | rec_autos_102822 |@lemmatized make:1 easy:1 car:1 thief:1 save:1 trouble:1 pop:1 ignition:1 |@bigram make_easy:1 |
2,163 |
Cool - I conjure up this image of BD in Doonesbury...so Dean, how long
have you been sleeping with your helmet on??
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/103893 | 8 | rec_motorcycles_103893 | [('cool', 'NN'), ('conjure', 'NN'), ('up', 'RP'), ('this', 'DT'), ('image', 'NN'), ('of', 'IN'), ('bd', 'NN'), ('in', 'IN'), ('doonesbury', 'NN'), ('...', ':'), ('so', 'RB'), ('dean', 'VB'), ('how', 'WRB'), ('long', 'JJ'), ('have', 'VBP'), ('you', 'PRP'), ('been', 'VBN'), ('sleeping', 'VBG'), ('with', 'IN'), ('your', 'PRP$'), ('helmet', 'NN'), ('on', 'IN'), ('??', 'NN')] | ['cool', 'conjure', 'image', 'bd', 'doonesbury', 'dean', 'long', 'sleep', 'helmet'] | [] | rec_motorcycles_103893 |@lemmatized cool:1 conjure:1 image:1 bd:1 doonesbury:1 dean:1 long:1 sleep:1 helmet:1 |@bigram |
2,164 | Hi. I am trying to set up a Conner 3184 and a Quantum 80AT drive. I have
the conner set to the master, and the quantum set to the slave (doesn't work
the other way around). I am able to access both drives if I boot from a
floppy, but the drives will not boot themselves. I am running MSDOS 6, and
have the Conner partitioned as Primary Dos, and is formatted with system
files. I have tried all different types of setups, and even changed IDE
controller cards. If I boot from a floppy, everything works great (except
the booting part :)). The system doesn't report an error message or anything,
just hangs there. Does anyone have any suggestions, or has somebody else
run into a similar problem? I was thinking that I might have to update the bios
on one of the drives (is this possible?). Any suggestions/answers would be
greatly appreciated. Please reply to: | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.ibm.pc.hardware/60737 | 3 | comp_sys_ibm_pc_hardware_60737 | [('hi', 'NN'), ('am', 'VBP'), ('trying', 'VBG'), ('to', 'TO'), ('set', 'VB'), ('up', 'RP'), ('conner', 'NN'), ('3184', 'CD'), ('and', 'CC'), ('quantum', '$'), ('80at', 'CD'), ('drive', 'NN'), ('have', 'VBP'), ('the', 'DT'), ('conner', 'NN'), ('set', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('master', 'NN'), ('and', 'CC'), ('the', 'DT'), ('quantum', 'NN'), ('set', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('slave', 'NN'), ('doesn', 'NN'), ('work', 'NN'), ('the', 'DT'), ('other', 'JJ'), ('way', 'NN'), ('around', 'IN'), (').', 'NNP'), ('am', 'VBP'), ('able', 'JJ'), ('to', 'TO'), ('access', 'NN'), ('both', 'DT'), ('drives', 'NNS'), ('if', 'IN'), ('boot', 'NN'), ('from', 'IN'), ('floppy', 'JJ'), ('but', 'CC'), ('the', 'DT'), ('drives', 'NNS'), ('will', 'MD'), ('not', 'RB'), ('boot', 'VB'), ('themselves', 'PRP'), ('am', 'VBP'), ('running', 'VBG'), ('msdos', 'NN'), ('and', 'CC'), ('have', 'VBP'), ('the', 'DT'), ('conner', 'NN'), ('partitioned', 'VBD'), ('as', 'IN'), ('primary', 'JJ'), ('dos', 'NN'), ('and', 'CC'), ('is', 'VBZ'), ('formatted', 'VBN'), ('with', 'IN'), ('system', 'NN'), ('files', 'NNS'), ('have', 'VBP'), ('tried', 'VBN'), ('all', 'DT'), ('different', 'JJ'), ('types', 'NNS'), ('of', 'IN'), ('setups', 'NNS'), ('and', 'CC'), ('even', 'RB'), ('changed', 'VBD'), ('ide', 'JJ'), ('controller', 'NN'), ('cards', 'NNS'), ('if', 'IN'), ('boot', 'NN'), ('from', 'IN'), ('floppy', 'JJ'), ('everything', 'NN'), ('works', 'VBZ'), ('great', 'JJ'), ('except', 'IN'), ('the', 'DT'), ('booting', 'VBG'), ('part', 'NN'), (':)).', 'VBZ'), ('the', 'DT'), ('system', 'NN'), ('doesn', 'JJ'), ('report', 'NN'), ('an', 'DT'), ('error', 'JJ'), ('message', 'NN'), ('or', 'CC'), ('anything', 'NN'), ('just', 'RB'), ('hangs', 'NNS'), ('there', 'RB'), ('does', 'VBZ'), ('anyone', 'NN'), ('have', 'VB'), ('any', 'DT'), ('suggestions', 'NNS'), ('or', 'CC'), ('has', 'VBZ'), ('somebody', 'NN'), ('else', 'JJ'), ('run', 'NN'), ('into', 'IN'), ('similar', 'JJ'), ('problem', 'NN'), ('was', 'VBD'), ('thinking', 'VBG'), ('that', 'IN'), ('might', 'MD'), ('have', 'VB'), ('to', 'TO'), ('update', 'VB'), ('the', 'DT'), ('bios', 'NNS'), ('on', 'IN'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('drives', 'NNS'), ('is', 'VBZ'), ('this', 'DT'), ('possible', 'JJ'), ('?).', 'NN'), ('any', 'DT'), ('suggestions', 'NNS'), ('answers', 'NNS'), ('would', 'MD'), ('be', 'VB'), ('greatly', 'RB'), ('appreciated', 'JJ'), ('please', 'NN'), ('reply', 'NN'), ('to', 'TO')] | ['hi', 'try', 'set', 'conner', 'quantum', 'drive', 'conner', 'set', 'master', 'quantum', 'set', 'slave', 'work', 'way', 'around', 'able', 'access', 'drive', 'boot', 'floppy', 'drive', 'boot', 'run', 'msdos', 'conner', 'partition', 'primary', 'format', 'system', 'file', 'try', 'different', 'type', 'setup', 'even', 'change', 'ide', 'controller', 'card', 'boot', 'floppy', 'everything', 'work', 'great', 'except', 'boot', 'part', 'system', 'report', 'error', 'message', 'anything', 'hang', 'anyone', 'suggestion', 'somebody', 'else', 'run', 'similar', 'problem', 'think', 'might', 'update', 'bios', 'one', 'drive', 'possible', 'suggestion', 'answer', 'would', 'greatly', 'appreciated', 'please', 'reply'] | ['hi_try', 'try_set', 'quantum_drive', 'work_way', 'way_around', 'access_drive', 'drive_boot', 'floppy_drive', 'drive_boot', 'system_file', 'file_try', 'try_different', 'different_type', 'ide_controller', 'controller_card', 'everything_work', 'work_great', 'error_message', 'anyone_suggestion', 'somebody_else', 'similar_problem', 'problem_think', 'think_might', 'one_drive', 'answer_would', 'would_greatly', 'greatly_appreciated', 'appreciated_please', 'please_reply'] | comp_sys_ibm_pc_hardware_60737 |@lemmatized hi:1 try:2 set:3 conner:3 quantum:2 drive:4 master:1 slave:1 work:2 way:1 around:1 able:1 access:1 boot:4 floppy:2 run:2 msdos:1 partition:1 primary:1 format:1 system:2 file:1 different:1 type:1 setup:1 even:1 change:1 ide:1 controller:1 card:1 everything:1 great:1 except:1 part:1 report:1 error:1 message:1 anything:1 hang:1 anyone:1 suggestion:2 somebody:1 else:1 similar:1 problem:1 think:1 might:1 update:1 bios:1 one:1 possible:1 answer:1 would:1 greatly:1 appreciated:1 please:1 reply:1 |@bigram hi_try:1 try_set:1 quantum_drive:1 work_way:1 way_around:1 access_drive:1 drive_boot:2 floppy_drive:1 system_file:1 file_try:1 try_different:1 different_type:1 ide_controller:1 controller_card:1 everything_work:1 work_great:1 error_message:1 anyone_suggestion:1 somebody_else:1 similar_problem:1 problem_think:1 think_might:1 one_drive:1 answer_would:1 would_greatly:1 greatly_appreciated:1 appreciated_please:1 please_reply:1 |
2,165 |
This may be a safety issue; the CSA is more paranoid in certain areas than
UL and such. Two caps in series means that you don't have a short if one
of them shorts. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.electronics/53929 | 12 | sci_electronics_53929 | [('this', 'DT'), ('may', 'MD'), ('be', 'VB'), ('safety', 'NN'), ('issue', 'NN'), ('the', 'DT'), ('csa', 'NN'), ('is', 'VBZ'), ('more', 'RBR'), ('paranoid', 'JJ'), ('in', 'IN'), ('certain', 'JJ'), ('areas', 'NNS'), ('than', 'IN'), ('ul', 'JJ'), ('and', 'CC'), ('such', 'JJ'), ('two', 'CD'), ('caps', 'NNS'), ('in', 'IN'), ('series', 'NN'), ('means', 'VBZ'), ('that', 'IN'), ('you', 'PRP'), ('don', 'VBP'), ('have', 'VBP'), ('short', 'JJ'), ('if', 'IN'), ('one', 'CD'), ('of', 'IN'), ('them', 'PRP'), ('shorts', 'NNS')] | ['may', 'safety', 'issue', 'csa', 'paranoid', 'certain', 'area', 'ul', 'two', 'cap', 'series', 'mean', 'short', 'one', 'short'] | ['short_one'] | sci_electronics_53929 |@lemmatized may:1 safety:1 issue:1 csa:1 paranoid:1 certain:1 area:1 ul:1 two:1 cap:1 series:1 mean:1 short:2 one:1 |@bigram short_one:1 |
2,166 |
[blah blah blah]
let's create a new group: rec.autos.CR-is-right-no-its-not-yes-it-is-oh-yeah-
my-father-can-lick-your-father-.......
:-)
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.autos/101663 | 7 | rec_autos_101663 | [('blah', 'NN'), ('blah', 'NN'), ('blah', 'VBP'), ('let', 'VB'), ('create', 'VB'), ('new', 'JJ'), ('group', 'NN'), ('rec', 'VBZ'), ('autos', 'NNS'), ('cr', 'NN'), ('is', 'VBZ'), ('right', 'JJ'), ('no', 'DT'), ('its', 'PRP$'), ('not', 'RB'), ('yes', 'VB'), ('it', 'PRP'), ('is', 'VBZ'), ('oh', 'JJ'), ('yeah', 'NN'), ('my', 'PRP$'), ('father', 'NN'), ('can', 'MD'), ('lick', 'VB'), ('your', 'PRP$'), ('father', 'NN'), ('-.......', 'VBD'), (':-)', 'JJ')] | ['blah', 'blah', 'blah', 'let', 'create', 'new', 'group', 'rec', 'auto', 'cr', 'right', 'yes', 'oh', 'yeah', 'father', 'lick', 'father'] | ['blah_blah', 'blah_blah', 'create_new', 'new_group', 'rec_auto', 'oh_yeah'] | rec_autos_101663 |@lemmatized blah:3 let:1 create:1 new:1 group:1 rec:1 auto:1 cr:1 right:1 yes:1 oh:1 yeah:1 father:2 lick:1 |@bigram blah_blah:2 create_new:1 new_group:1 rec_auto:1 oh_yeah:1 |
2,167 |
And still we wonder why they stereotype us... | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.motorcycles/104658 | 8 | rec_motorcycles_104658 | [('and', 'CC'), ('still', 'RB'), ('we', 'PRP'), ('wonder', 'VBP'), ('why', 'WRB'), ('they', 'PRP'), ('stereotype', 'VBP'), ('us', 'PRP'), ('...', ':')] | ['still', 'wonder', 'stereotype', 'u'] | [] | rec_motorcycles_104658 |@lemmatized still:1 wonder:1 stereotype:1 u:1 |@bigram |
2,168 | I have attached a copy of an announcement I picked up during my trip to
Moscow last week. I have several friends at the Moscow Aviation
Institute who have asked me to post this announcement. (I have done
some editing, but the contents is unchanged from the original
announcement.)
For those of you not familiar with the Moscow Aviation Institute, it is
the leading Russian school of higher education dedicated to the training
of aircraft and spacecraft designers. It specializes in airframe
design, powerplant design, control systems, and power systems.
Virtually all of the major former Soviet airframe designers (Tupolev,
Su, Iluchine, Migoyan, etc.) were schooled at MAI.
I had the opportunity to tour the two museums that are maintained at
MAI. The aircraft include Mig23, Su 27, Yak 38, the cockpit of an
F-111(!), among others. It was a fascinating and eye opening
experience, expecially given the fact that the museum was, until a year
or so ago, closed to virtually everyone. I also had the opportunity to
see some of the experiments being conducted with plasma drive engines
for future space craft use.
If you have any questions about the Institute, or the program, I would
be glad to try and answer them. The institute, and most of it's faculty
have e-mail addresses. However, it takes about a day or so for the
receiver to get the message. They are still a bit antiquated - but they
are rapidly changing!
Steve Emmett
[email protected]
ps please send any questions you have for me via e-mail. George Mason
university has about a 2 week (!) delay in news feed delivery.
-------------------------------------------------------------------
MOSCOW INTERNATIONAL AVIATION SCHOOL
The aviation school "Poljot" (meaning Flight) is organized by the the
Moscow Aviation Institute, the prominent Russian Center of airspace
education and the foreign trade firm Poljot, well known in various
parts of the world for their quartz and mechanical wrist watches.
The course of studies will last only 50 days, but during this time
you will have the unique opportunity:
- to listen to intensive courses on the main aviation
disciplines, the history and theory of techniques, and design of
airplanes;
- to visit and get acquainted with the world known Russian
aviation firms - TU, MiG, Yak, Il and Su;
- to meet and have discussions with famous aviation
scientists, engineers and pilots;
- to visit the most interesting museums of unique aviation
techniques which were closed for many years to the public;
- to see the International Airspace Show which will take
place in Moscow from 31 August through 3 September 1993;
- to visit famous art museums, historical and architectural
monuments, theatres and concert halls;
- to take part in sport competitions and have a great time
with new friends.
The Director of the school is Mr. Oleg Samelovich, a well known
Russian scientist, professor, general designer and the Chief of the
Airplanes Design Department of the Moscow Aviation Institute. Mr.
Samelovich is one of the designers of the the Su-24, Su-25, and Su-27
The lectures are given in English, using a multi-media concept. The
students are provided with all the necessary text books and
literature. After the full course of studies are completed, the
student will receive a special certificate of graduation.
The cost of studies, including hotel, meals, excursions, theatres,
etc is $3500.
To apply for admission, send your application to:
109147 Moscow Marksistskaja 34
Foreign Trade Firm "Poljot"
274 00 13 (phone)
274 00 22 (FAX)
411989 POLEX SU (telex)
In your application, include your full name, address, date and place
of birth. In addition, include complete passport information, as well
as a description of your education.
Upon receipt of this information, "Poljot" will immediately forward
to you an official invitation for obtaining a Russian entrance visa
as well as details on payment.
Should you require additional information, please do not hesitate to
contact us.
(signed) O. Samelovich
------------------------------------------------------------------------
--
Steve Emmett [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/60834 | 14 | sci_space_60834 | [('have', 'VB'), ('attached', 'VBN'), ('copy', 'NN'), ('of', 'IN'), ('an', 'DT'), ('announcement', 'NN'), ('picked', 'VBD'), ('up', 'RP'), ('during', 'IN'), ('my', 'PRP$'), ('trip', 'NN'), ('to', 'TO'), ('moscow', 'VB'), ('last', 'JJ'), ('week', 'NN'), ('have', 'VBP'), ('several', 'JJ'), ('friends', 'NNS'), ('at', 'IN'), ('the', 'DT'), ('moscow', 'NN'), ('aviation', 'NN'), ('institute', 'NN'), ('who', 'WP'), ('have', 'VBP'), ('asked', 'VBN'), ('me', 'PRP'), ('to', 'TO'), ('post', 'VB'), ('this', 'DT'), ('announcement', 'NN'), ('have', 'VBP'), ('done', 'VBN'), ('some', 'DT'), ('editing', 'VBG'), ('but', 'CC'), ('the', 'DT'), ('contents', 'NNS'), ('is', 'VBZ'), ('unchanged', 'JJ'), ('from', 'IN'), ('the', 'DT'), ('original', 'JJ'), ('announcement', 'NN'), ('.)', 'NN'), ('for', 'IN'), ('those', 'DT'), ('of', 'IN'), ('you', 'PRP'), ('not', 'RB'), ('familiar', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('moscow', 'NN'), ('aviation', 'NN'), ('institute', 'NN'), ('it', 'PRP'), ('is', 'VBZ'), ('the', 'DT'), ('leading', 'VBG'), ('russian', 'JJ'), ('school', 'NN'), ('of', 'IN'), ('higher', 'JJR'), ('education', 'NN'), ('dedicated', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('training', 'NN'), ('of', 'IN'), ('aircraft', 'NN'), ('and', 'CC'), ('spacecraft', 'NN'), ('designers', 'NNS'), ('it', 'PRP'), ('specializes', 'VBZ'), ('in', 'IN'), ('airframe', 'JJ'), ('design', 'NN'), ('powerplant', 'JJ'), ('design', 'NN'), ('control', 'NN'), ('systems', 'NNS'), ('and', 'CC'), ('power', 'NN'), ('systems', 'NNS'), ('virtually', 'RB'), ('all', 'DT'), ('of', 'IN'), ('the', 'DT'), ('major', 'JJ'), ('former', 'JJ'), ('soviet', 'JJ'), ('airframe', 'NN'), ('designers', 'NNS'), ('tupolev', 'VBP'), ('su', 'JJ'), ('iluchine', 'NN'), ('migoyan', 'NN'), ('etc', 'FW'), ('.)', 'WDT'), ('were', 'VBD'), ('schooled', 'VBN'), ('at', 'IN'), ('mai', 'NN'), ('had', 'VBD'), ('the', 'DT'), ('opportunity', 'NN'), ('to', 'TO'), ('tour', 'VB'), ('the', 'DT'), ('two', 'CD'), ('museums', 'NNS'), ('that', 'WDT'), ('are', 'VBP'), ('maintained', 'VBN'), ('at', 'IN'), ('mai', 'PDT'), ('the', 'DT'), ('aircraft', 'NN'), ('include', 'VBP'), ('mig23', 'JJ'), ('su', 'JJ'), ('27', 'CD'), ('yak', 'RB'), ('38', 'CD'), ('the', 'DT'), ('cockpit', 'NN'), ('of', 'IN'), ('an', 'DT'), ('111', 'CD'), ('(!),', 'NN'), ('among', 'IN'), ('others', 'NNS'), ('it', 'PRP'), ('was', 'VBD'), ('fascinating', 'VBG'), ('and', 'CC'), ('eye', 'NN'), ('opening', 'NN'), ('experience', 'NN'), ('expecially', 'RB'), ('given', 'VBN'), ('the', 'DT'), ('fact', 'NN'), ('that', 'IN'), ('the', 'DT'), ('museum', 'NN'), ('was', 'VBD'), ('until', 'IN'), ('year', 'NN'), ('or', 'CC'), ('so', 'RB'), ('ago', 'RB'), ('closed', 'VBD'), ('to', 'TO'), ('virtually', 'RB'), ('everyone', 'NN'), ('also', 'RB'), ('had', 'VBD'), ('the', 'DT'), ('opportunity', 'NN'), ('to', 'TO'), ('see', 'VB'), ('some', 'DT'), ('of', 'IN'), ('the', 'DT'), ('experiments', 'NNS'), ('being', 'VBG'), ('conducted', 'VBN'), ('with', 'IN'), ('plasma', 'JJ'), ('drive', 'NN'), ('engines', 'NNS'), ('for', 'IN'), ('future', 'JJ'), ('space', 'NN'), ('craft', 'NN'), ('use', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('have', 'VBP'), ('any', 'DT'), ('questions', 'NNS'), ('about', 'IN'), ('the', 'DT'), ('institute', 'NN'), ('or', 'CC'), ('the', 'DT'), ('program', 'NN'), ('would', 'MD'), ('be', 'VB'), ('glad', 'VBN'), ('to', 'TO'), ('try', 'VB'), ('and', 'CC'), ('answer', 'VB'), ('them', 'PRP'), ('the', 'DT'), ('institute', 'NN'), ('and', 'CC'), ('most', 'JJS'), ('of', 'IN'), ('it', 'PRP'), ('faculty', 'NN'), ('have', 'VBP'), ('mail', 'NN'), ('addresses', 'NNS'), ('however', 'RB'), ('it', 'PRP'), ('takes', 'VBZ'), ('about', 'IN'), ('day', 'NN'), ('or', 'CC'), ('so', 'RB'), ('for', 'IN'), ('the', 'DT'), ('receiver', 'NN'), ('to', 'TO'), ('get', 'VB'), ('the', 'DT'), ('message', 'NN'), ('they', 'PRP'), ('are', 'VBP'), ('still', 'RB'), ('bit', 'RB'), ('antiquated', 'JJ'), ('but', 'CC'), ('they', 'PRP'), ('are', 'VBP'), ('rapidly', 'RB'), ('changing', 'VBG'), ('steve', 'NN'), ('emmett', 'NN'), ('ps', 'NN'), ('please', 'VB'), ('send', 'VB'), ('any', 'DT'), ('questions', 'NNS'), ('you', 'PRP'), ('have', 'VBP'), ('for', 'IN'), ('me', 'PRP'), ('via', 'IN'), ('mail', 'NN'), ('george', 'NN'), ('mason', 'NNP'), ('university', 'NN'), ('has', 'VBZ'), ('about', 'IN'), ('week', 'NN'), ('(!)', 'JJ'), ('delay', 'NN'), ('in', 'IN'), ('news', 'NN'), ('feed', 'NN'), ('delivery', 'NN'), ('-------------------------------------------------------------------', 'NN'), ('moscow', 'FW'), ('international', 'JJ'), ('aviation', 'NN'), ('school', 'NN'), ('the', 'DT'), ('aviation', 'NN'), ('school', 'NN'), ('poljot', 'IN'), ('meaning', 'VBG'), ('flight', 'NN'), ('is', 'VBZ'), ('organized', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('the', 'DT'), ('moscow', 'JJ'), ('aviation', 'NN'), ('institute', 'NN'), ('the', 'DT'), ('prominent', 'JJ'), ('russian', 'JJ'), ('center', 'NN'), ('of', 'IN'), ('airspace', 'NN'), ('education', 'NN'), ('and', 'CC'), ('the', 'DT'), ('foreign', 'JJ'), ('trade', 'NN'), ('firm', 'NN'), ('poljot', 'RB'), ('well', 'RB'), ('known', 'VBN'), ('in', 'IN'), ('various', 'JJ'), ('parts', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('world', 'NN'), ('for', 'IN'), ('their', 'PRP$'), ('quartz', 'NN'), ('and', 'CC'), ('mechanical', 'JJ'), ('wrist', 'NN'), ('watches', 'VBZ'), ('the', 'DT'), ('course', 'NN'), ('of', 'IN'), ('studies', 'NNS'), ('will', 'MD'), ('last', 'JJ'), ('only', 'RB'), ('50', 'CD'), ('days', 'NNS'), ('but', 'CC'), ('during', 'IN'), ('this', 'DT'), ('time', 'NN'), ('you', 'PRP'), ('will', 'MD'), ('have', 'VB'), ('the', 'DT'), ('unique', 'JJ'), ('opportunity', 'NN'), ('to', 'TO'), ('listen', 'VB'), ('to', 'TO'), ('intensive', 'JJ'), ('courses', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('main', 'JJ'), ('aviation', 'NN'), ('disciplines', 'VBZ'), ('the', 'DT'), ('history', 'NN'), ('and', 'CC'), ('theory', 'NN'), ('of', 'IN'), ('techniques', 'NNS'), ('and', 'CC'), ('design', 'NN'), ('of', 'IN'), ('airplanes', 'NNS'), ('to', 'TO'), ('visit', 'VB'), ('and', 'CC'), ('get', 'VB'), ('acquainted', 'VBN'), ('with', 'IN'), ('the', 'DT'), ('world', 'NN'), ('known', 'VBN'), ('russian', 'JJ'), ('aviation', 'NN'), ('firms', 'NNS'), ('tu', 'VBP'), ('mig', 'JJ'), ('yak', 'NN'), ('il', 'NN'), ('and', 'CC'), ('su', 'NN'), ('to', 'TO'), ('meet', 'VB'), ('and', 'CC'), ('have', 'VB'), ('discussions', 'NNS'), ('with', 'IN'), ('famous', 'JJ'), ('aviation', 'NN'), ('scientists', 'NNS'), ('engineers', 'NNS'), ('and', 'CC'), ('pilots', 'NNS'), ('to', 'TO'), ('visit', 'VB'), ('the', 'DT'), ('most', 'RBS'), ('interesting', 'JJ'), ('museums', 'NNS'), ('of', 'IN'), ('unique', 'JJ'), ('aviation', 'NN'), ('techniques', 'NNS'), ('which', 'WDT'), ('were', 'VBD'), ('closed', 'VBN'), ('for', 'IN'), ('many', 'JJ'), ('years', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('public', 'NN'), ('to', 'TO'), ('see', 'VB'), ('the', 'DT'), ('international', 'JJ'), ('airspace', 'NN'), ('show', 'NN'), ('which', 'WDT'), ('will', 'MD'), ('take', 'VB'), ('place', 'NN'), ('in', 'IN'), ('moscow', 'NN'), ('from', 'IN'), ('31', 'CD'), ('august', 'NN'), ('through', 'IN'), ('september', 'NN'), ('1993', 'CD'), ('to', 'TO'), ('visit', 'VB'), ('famous', 'JJ'), ('art', 'NN'), ('museums', 'NNS'), ('historical', 'JJ'), ('and', 'CC'), ('architectural', 'JJ'), ('monuments', 'NNS'), ('theatres', 'NNS'), ('and', 'CC'), ('concert', 'NN'), ('halls', 'NNS'), ('to', 'TO'), ('take', 'VB'), ('part', 'NN'), ('in', 'IN'), ('sport', 'NN'), ('competitions', 'NNS'), ('and', 'CC'), ('have', 'VBP'), ('great', 'JJ'), ('time', 'NN'), ('with', 'IN'), ('new', 'JJ'), ('friends', 'NNS'), ('the', 'DT'), ('director', 'NN'), ('of', 'IN'), ('the', 'DT'), ('school', 'NN'), ('is', 'VBZ'), ('mr', 'JJ'), ('oleg', 'NN'), ('samelovich', 'JJ'), ('well', 'RB'), ('known', 'VBN'), ('russian', 'JJ'), ('scientist', 'NN'), ('professor', 'IN'), ('general', 'JJ'), ('designer', 'NN'), ('and', 'CC'), ('the', 'DT'), ('chief', 'NN'), ('of', 'IN'), ('the', 'DT'), ('airplanes', 'NNS'), ('design', 'NN'), ('department', 'NN'), ('of', 'IN'), ('the', 'DT'), ('moscow', 'NN'), ('aviation', 'NN'), ('institute', 'NN'), ('mr', 'NN'), ('samelovich', 'NN'), ('is', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('designers', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('the', 'DT'), ('su', 'JJ'), ('24', 'CD'), ('su', 'NN'), ('25', 'CD'), ('and', 'CC'), ('su', 'VBD'), ('27', 'CD'), ('the', 'DT'), ('lectures', 'NNS'), ('are', 'VBP'), ('given', 'VBN'), ('in', 'IN'), ('english', 'JJ'), ('using', 'VBG'), ('multi', 'JJ'), ('media', 'NNS'), ('concept', 'VBD'), ('the', 'DT'), ('students', 'NNS'), ('are', 'VBP'), ('provided', 'VBN'), ('with', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('necessary', 'JJ'), ('text', 'NN'), ('books', 'NNS'), ('and', 'CC'), ('literature', 'NN'), ('after', 'IN'), ('the', 'DT'), ('full', 'JJ'), ('course', 'NN'), ('of', 'IN'), ('studies', 'NNS'), ('are', 'VBP'), ('completed', 'VBN'), ('the', 'DT'), ('student', 'NN'), ('will', 'MD'), ('receive', 'VB'), ('special', 'JJ'), ('certificate', 'NN'), ('of', 'IN'), ('graduation', 'NN'), ('the', 'DT'), ('cost', 'NN'), ('of', 'IN'), ('studies', 'NNS'), ('including', 'VBG'), ('hotel', 'NN'), ('meals', 'NNS'), ('excursions', 'NNS'), ('theatres', 'NNS'), ('etc', 'FW'), ('is', 'VBZ'), ('3500', 'CD'), ('to', 'TO'), ('apply', 'VB'), ('for', 'IN'), ('admission', 'NN'), ('send', 'VB'), ('your', 'PRP$'), ('application', 'NN'), ('to', 'TO'), ('109147', 'CD'), ('moscow', 'NNS'), ('marksistskaja', 'VBD'), ('34', 'CD'), ('foreign', 'JJ'), ('trade', 'NN'), ('firm', 'NN'), ('poljot', 'VBD'), ('274', 'CD'), ('00', 'CD'), ('13', 'CD'), ('phone', 'NN'), ('274', 'CD'), ('00', 'CD'), ('22', 'CD'), ('fax', 'NN'), ('411989', 'CD'), ('polex', 'JJ'), ('su', 'NN'), ('telex', 'NN'), ('in', 'IN'), ('your', 'PRP$'), ('application', 'NN'), ('include', 'VBP'), ('your', 'PRP$'), ('full', 'JJ'), ('name', 'NN'), ('address', 'NN'), ('date', 'NN'), ('and', 'CC'), ('place', 'NN'), ('of', 'IN'), ('birth', 'NN'), ('in', 'IN'), ('addition', 'NN'), ('include', 'VBP'), ('complete', 'JJ'), ('passport', 'NN'), ('information', 'NN'), ('as', 'RB'), ('well', 'RB'), ('as', 'IN'), ('description', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('education', 'NN'), ('upon', 'IN'), ('receipt', 'NN'), ('of', 'IN'), ('this', 'DT'), ('information', 'NN'), ('poljot', 'NN'), ('will', 'MD'), ('immediately', 'RB'), ('forward', 'VB'), ('to', 'TO'), ('you', 'PRP'), ('an', 'DT'), ('official', 'JJ'), ('invitation', 'NN'), ('for', 'IN'), ('obtaining', 'VBG'), ('russian', 'JJ'), ('entrance', 'NN'), ('visa', 'NN'), ('as', 'RB'), ('well', 'RB'), ('as', 'IN'), ('details', 'NNS'), ('on', 'IN'), ('payment', 'NN'), ('should', 'MD'), ('you', 'PRP'), ('require', 'VB'), ('additional', 'JJ'), ('information', 'NN'), ('please', 'NN'), ('do', 'VB'), ('not', 'RB'), ('hesitate', 'VB'), ('to', 'TO'), ('contact', 'VB'), ('us', 'PRP'), ('signed', 'VBN'), ('samelovich', 'JJ'), ('------------------------------------------------------------------------', 'NNP'), ('--', ':'), ('steve', 'VBP'), ('emmett', 'NN')] | ['attach', 'copy', 'announcement', 'pick', 'trip', 'moscow', 'last', 'week', 'several', 'friend', 'moscow', 'aviation', 'institute', 'ask', 'post', 'announcement', 'edit', 'content', 'unchanged', 'original', 'announcement', 'familiar', 'moscow', 'aviation', 'institute', 'lead', 'russian', 'school', 'high', 'education', 'dedicate', 'training', 'aircraft', 'spacecraft', 'designer', 'specialize', 'airframe', 'design', 'powerplant', 'design', 'control', 'system', 'power', 'system', 'virtually', 'major', 'former', 'soviet', 'airframe', 'designer', 'tupolev', 'su', 'iluchine', 'migoyan', 'etc', 'school', 'mai', 'opportunity', 'tour', 'two', 'museum', 'maintain', 'mai', 'aircraft', 'include', 'su', 'yak', 'cockpit', 'among', 'others', 'fascinate', 'eye', 'opening', 'experience', 'expecially', 'give', 'fact', 'museum', 'year', 'ago', 'close', 'virtually', 'everyone', 'also', 'opportunity', 'see', 'experiment', 'conduct', 'plasma', 'drive', 'engine', 'future', 'space', 'craft', 'use', 'question', 'institute', 'program', 'would', 'glad', 'try', 'answer', 'institute', 'faculty', 'mail', 'address', 'however', 'take', 'day', 'receiver', 'get', 'message', 'still', 'bit', 'antiquated', 'rapidly', 'change', 'steve', 'emmett', 'p', 'please', 'send', 'question', 'via', 'mail', 'george', 'mason', 'university', 'week', 'delay', 'news', 'feed', 'delivery', 'moscow', 'international', 'aviation', 'school', 'aviation', 'school', 'poljot', 'mean', 'flight', 'organize', 'moscow', 'aviation', 'institute', 'prominent', 'russian', 'center', 'airspace', 'education', 'foreign', 'trade', 'firm', 'poljot', 'well', 'know', 'various', 'part', 'world', 'quartz', 'mechanical', 'wrist', 'watch', 'course', 'study', 'last', 'day', 'time', 'unique', 'opportunity', 'listen', 'intensive', 'course', 'main', 'aviation', 'discipline', 'history', 'theory', 'technique', 'design', 'airplane', 'visit', 'get', 'acquaint', 'world', 'know', 'russian', 'aviation', 'firm', 'tu', 'mig', 'yak', 'il', 'su', 'meet', 'discussion', 'famous', 'aviation', 'scientist', 'engineer', 'pilot', 'visit', 'interesting', 'museum', 'unique', 'aviation', 'technique', 'close', 'many', 'year', 'public', 'see', 'international', 'airspace', 'show', 'take', 'place', 'moscow', 'august', 'september', 'visit', 'famous', 'art', 'museum', 'historical', 'architectural', 'monument', 'theatre', 'concert', 'hall', 'take', 'part', 'sport', 'competition', 'great', 'time', 'new', 'friend', 'director', 'school', 'mr', 'oleg', 'samelovich', 'well', 'know', 'russian', 'scientist', 'professor', 'general', 'designer', 'chief', 'airplane', 'design', 'department', 'moscow', 'aviation', 'institute', 'mr', 'samelovich', 'one', 'designer', 'su', 'su', 'su', 'lecture', 'give', 'english', 'use', 'multi', 'medium', 'concept', 'student', 'provide', 'necessary', 'text', 'book', 'literature', 'full', 'course', 'study', 'complete', 'student', 'receive', 'special', 'certificate', 'graduation', 'cost', 'study', 'include', 'hotel', 'meal', 'excursion', 'theatre', 'etc', 'apply', 'admission', 'send', 'application', 'moscow', 'marksistskaja', 'foreign', 'trade', 'firm', 'poljot', 'phone', 'fax', 'polex', 'su', 'telex', 'application', 'include', 'full', 'name', 'address', 'date', 'place', 'birth', 'addition', 'include', 'complete', 'passport', 'information', 'well', 'description', 'education', 'upon', 'receipt', 'information', 'poljot', 'immediately', 'forward', 'official', 'invitation', 'obtain', 'russian', 'entrance', 'visa', 'well', 'detail', 'payment', 'require', 'additional', 'information', 'please', 'hesitate', 'contact', 'u', 'sign', 'samelovich', 'steve', 'emmett'] | ['last_week', 'ask_post', 'design_control', 'control_system', 'system_power', 'power_system', 'former_soviet', 'among_others', 'year_ago', 'use_question', 'program_would', 'would_glad', 'try_answer', 'mail_address', 'however_take', 'take_day', 'get_message', 'please_send', 'send_question', 'via_mail', 'news_feed', 'well_know', 'various_part', 'part_world', 'last_day', 'day_time', 'world_know', 'scientist_engineer', 'many_year', 'take_place', 'take_part', 'time_new', 'well_know', 'use_multi', 'multi_medium', 'phone_fax', 'application_include', 'include_full', 'full_name', 'name_address', 'include_complete', 'information_well', 'additional_information', 'information_please'] | sci_space_60834 |@lemmatized attach:1 copy:1 announcement:3 pick:1 trip:1 moscow:8 last:2 week:2 several:1 friend:2 aviation:10 institute:6 ask:1 post:1 edit:1 content:1 unchanged:1 original:1 familiar:1 lead:1 russian:5 school:5 high:1 education:3 dedicate:1 training:1 aircraft:2 spacecraft:1 designer:4 specialize:1 airframe:2 design:4 powerplant:1 control:1 system:2 power:1 virtually:2 major:1 former:1 soviet:1 tupolev:1 su:7 iluchine:1 migoyan:1 etc:2 mai:2 opportunity:3 tour:1 two:1 museum:4 maintain:1 include:4 yak:2 cockpit:1 among:1 others:1 fascinate:1 eye:1 opening:1 experience:1 expecially:1 give:2 fact:1 year:2 ago:1 close:2 everyone:1 also:1 see:2 experiment:1 conduct:1 plasma:1 drive:1 engine:1 future:1 space:1 craft:1 use:2 question:2 program:1 would:1 glad:1 try:1 answer:1 faculty:1 mail:2 address:2 however:1 take:3 day:2 receiver:1 get:2 message:1 still:1 bit:1 antiquated:1 rapidly:1 change:1 steve:2 emmett:2 p:1 please:2 send:2 via:1 george:1 mason:1 university:1 delay:1 news:1 feed:1 delivery:1 international:2 poljot:4 mean:1 flight:1 organize:1 prominent:1 center:1 airspace:2 foreign:2 trade:2 firm:3 well:4 know:3 various:1 part:2 world:2 quartz:1 mechanical:1 wrist:1 watch:1 course:3 study:3 time:2 unique:2 listen:1 intensive:1 main:1 discipline:1 history:1 theory:1 technique:2 airplane:2 visit:3 acquaint:1 tu:1 mig:1 il:1 meet:1 discussion:1 famous:2 scientist:2 engineer:1 pilot:1 interesting:1 many:1 public:1 show:1 place:2 august:1 september:1 art:1 historical:1 architectural:1 monument:1 theatre:2 concert:1 hall:1 sport:1 competition:1 great:1 new:1 director:1 mr:2 oleg:1 samelovich:3 professor:1 general:1 chief:1 department:1 one:1 lecture:1 english:1 multi:1 medium:1 concept:1 student:2 provide:1 necessary:1 text:1 book:1 literature:1 full:2 complete:2 receive:1 special:1 certificate:1 graduation:1 cost:1 hotel:1 meal:1 excursion:1 apply:1 admission:1 application:2 marksistskaja:1 phone:1 fax:1 polex:1 telex:1 name:1 date:1 birth:1 addition:1 passport:1 information:3 description:1 upon:1 receipt:1 immediately:1 forward:1 official:1 invitation:1 obtain:1 entrance:1 visa:1 detail:1 payment:1 require:1 additional:1 hesitate:1 contact:1 u:1 sign:1 |@bigram last_week:1 ask_post:1 design_control:1 control_system:1 system_power:1 power_system:1 former_soviet:1 among_others:1 year_ago:1 use_question:1 program_would:1 would_glad:1 try_answer:1 mail_address:1 however_take:1 take_day:1 get_message:1 please_send:1 send_question:1 via_mail:1 news_feed:1 well_know:2 various_part:1 part_world:1 last_day:1 day_time:1 world_know:1 scientist_engineer:1 many_year:1 take_place:1 take_part:1 time_new:1 use_multi:1 multi_medium:1 phone_fax:1 application_include:1 include_full:1 full_name:1 name_address:1 include_complete:1 information_well:1 additional_information:1 information_please:1 |
2,169 | Here are my predictions (try not to laugh hysterically)
Somebody save this so I can laugh when I win my own pool.
I don't have prizes, but we all love BRAGGING RIGHTS, so winner takes them.
Also. If somebody has some sort of scoring system let me know.
I was thinking 1 for 1st round victories, 2 for second, 3 for 3rd, 4 for 4th
But we may get alot of ties. Any ideas?
1. BUFFALO
2. MONTREAL
3. PITTSBURGH
4. WASHINGTON
5. CHICAGO
6. TORONTO
7. WINNIPEG
8. LOS ANGELES
9. MONTREAL
10.PITTSBURGH
11.CHICAGO
12.WINNIPEG
13.MONTREAL
14.CHICAGO
15. MONTREAL | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.hockey/53668 | 10 | rec_sport_hockey_53668 | [('here', 'RB'), ('are', 'VBP'), ('my', 'PRP$'), ('predictions', 'NNS'), ('try', 'VBP'), ('not', 'RB'), ('to', 'TO'), ('laugh', 'VB'), ('hysterically', 'RB'), ('somebody', 'NN'), ('save', 'VB'), ('this', 'DT'), ('so', 'RB'), ('can', 'MD'), ('laugh', 'VB'), ('when', 'WRB'), ('win', 'VB'), ('my', 'PRP$'), ('own', 'JJ'), ('pool', 'NN'), ('don', 'NNS'), ('have', 'VBP'), ('prizes', 'NNS'), ('but', 'CC'), ('we', 'PRP'), ('all', 'DT'), ('love', 'VBP'), ('bragging', 'NN'), ('rights', 'NNS'), ('so', 'RB'), ('winner', 'JJ'), ('takes', 'VBZ'), ('them', 'PRP'), ('also', 'RB'), ('if', 'IN'), ('somebody', 'NN'), ('has', 'VBZ'), ('some', 'DT'), ('sort', 'NN'), ('of', 'IN'), ('scoring', 'VBG'), ('system', 'NN'), ('let', 'VB'), ('me', 'PRP'), ('know', 'VB'), ('was', 'VBD'), ('thinking', 'VBG'), ('for', 'IN'), ('1st', 'CD'), ('round', 'NN'), ('victories', 'NNS'), ('for', 'IN'), ('second', 'NN'), ('for', 'IN'), ('3rd', 'CD'), ('for', 'IN'), ('4th', 'CD'), ('but', 'CC'), ('we', 'PRP'), ('may', 'MD'), ('get', 'VB'), ('alot', 'NN'), ('of', 'IN'), ('ties', 'NNS'), ('any', 'DT'), ('ideas', 'NNS'), ('buffalo', 'VBP'), ('montreal', 'JJ'), ('pittsburgh', 'IN'), ('washington', 'NN'), ('chicago', 'NN'), ('toronto', 'NN'), ('winnipeg', 'NN'), ('los', 'NN'), ('angeles', 'NNS'), ('montreal', 'VBP'), ('10', 'CD'), ('pittsburgh', 'NNS'), ('11', 'CD'), ('chicago', 'RB'), ('12', 'CD'), ('winnipeg', 'VBD'), ('13', 'CD'), ('montreal', 'JJ'), ('14', 'CD'), ('chicago', 'RB'), ('15', 'CD'), ('montreal', 'NN')] | ['prediction', 'try', 'laugh', 'hysterically', 'somebody', 'save', 'laugh', 'win', 'pool', 'prize', 'love', 'bragging', 'right', 'winner', 'take', 'also', 'somebody', 'sort', 'score', 'system', 'let', 'know', 'think', 'round', 'victory', 'second', 'may', 'get', 'alot', 'tie', 'idea', 'buffalo', 'montreal', 'pittsburgh', 'washington', 'chicago', 'toronto', 'winnipeg', 'los', 'angeles', 'montreal', 'pittsburgh', 'chicago', 'winnipeg', 'montreal', 'chicago', 'montreal'] | ['system_let', 'let_know', 'know_think', 'may_get', 'chicago_toronto', 'los_angeles'] | rec_sport_hockey_53668 |@lemmatized prediction:1 try:1 laugh:2 hysterically:1 somebody:2 save:1 win:1 pool:1 prize:1 love:1 bragging:1 right:1 winner:1 take:1 also:1 sort:1 score:1 system:1 let:1 know:1 think:1 round:1 victory:1 second:1 may:1 get:1 alot:1 tie:1 idea:1 buffalo:1 montreal:4 pittsburgh:2 washington:1 chicago:3 toronto:1 winnipeg:2 los:1 angeles:1 |@bigram system_let:1 let_know:1 know_think:1 may_get:1 chicago_toronto:1 los_angeles:1 |
2,170 | Hi Everybody,
I am interested in the following topics.
1)BIOS programming on 286 and 386.
2)Memory management in 286 and 386.
3)Developing Visual Basic Custom Controls.
I would like to have your valuable opinion on the books
that are best in the above topics. Please send a mail to
[email protected] . I will post a summary of the
suggestions.
2**32-1 thanks in advance. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.os.ms-windows.misc/9832 | 2 | comp_os_ms-windows_misc_9832 | [('hi', 'NN'), ('everybody', 'NN'), ('am', 'VBP'), ('interested', 'JJ'), ('in', 'IN'), ('the', 'DT'), ('following', 'JJ'), ('topics', 'NNS'), ('bios', 'NNS'), ('programming', 'VBG'), ('on', 'IN'), ('286', 'CD'), ('and', 'CC'), ('386', 'CD'), ('memory', 'NN'), ('management', 'NN'), ('in', 'IN'), ('286', 'CD'), ('and', 'CC'), ('386', 'CD'), ('developing', 'VBG'), ('visual', 'JJ'), ('basic', 'JJ'), ('custom', 'NN'), ('controls', 'NNS'), ('would', 'MD'), ('like', 'VB'), ('to', 'TO'), ('have', 'VB'), ('your', 'PRP$'), ('valuable', 'JJ'), ('opinion', 'NN'), ('on', 'IN'), ('the', 'DT'), ('books', 'NNS'), ('that', 'WDT'), ('are', 'VBP'), ('best', 'RB'), ('in', 'IN'), ('the', 'DT'), ('above', 'JJ'), ('topics', 'NNS'), ('please', 'VBP'), ('send', 'JJ'), ('mail', 'NN'), ('to', 'TO'), ('will', 'MD'), ('post', 'VB'), ('summary', 'NN'), ('of', 'IN'), ('the', 'DT'), ('suggestions', 'NNS'), ('**', 'VBP'), ('32', 'CD'), ('thanks', 'NNS'), ('in', 'IN'), ('advance', 'NN')] | ['hi', 'everybody', 'interested', 'following', 'topic', 'bios', 'program', 'memory', 'management', 'develop', 'visual', 'basic', 'custom', 'control', 'would', 'like', 'valuable', 'opinion', 'book', 'best', 'topic', 'please', 'send', 'mail', 'post', 'summary', 'suggestion', 'thanks', 'advance'] | ['hi_everybody', 'interested_following', 'memory_management', 'visual_basic', 'control_would', 'would_like', 'please_send', 'send_mail', 'mail_post', 'post_summary', 'suggestion_thanks', 'thanks_advance'] | comp_os_ms-windows_misc_9832 |@lemmatized hi:1 everybody:1 interested:1 following:1 topic:2 bios:1 program:1 memory:1 management:1 develop:1 visual:1 basic:1 custom:1 control:1 would:1 like:1 valuable:1 opinion:1 book:1 best:1 please:1 send:1 mail:1 post:1 summary:1 suggestion:1 thanks:1 advance:1 |@bigram hi_everybody:1 interested_following:1 memory_management:1 visual_basic:1 control_would:1 would_like:1 please_send:1 send_mail:1 mail_post:1 post_summary:1 suggestion_thanks:1 thanks_advance:1 |
2,171 | I just wanted to let everyone know that I have lost what little respect I have
for Jim LeFebvre after seeing today's Cubs game. First of all how could he
start Maldonado over May. After the way May played at the end of last year and
the way he tore up the Cactus League how could you let him sit the bench? Not
to mention that a right hander (Maddux) started. I really blew my top when
Lefebvre pinch hit for Rick Wilkins with TOMMY SHIELDS! How can you do that
just because of the lefty-righty thing, too much is made of that. Wilkins is
twice the hitter that Shields is. Then the next batter was Jose Vizcaino, one
of the weakest hitters I have ever seen, and who had looked terrible at bat all
day, and Lefebre let him hit, while May still sat the bench. I think even Arnie
Harris was stunned by this because he showed May sitting in the dugout while
Vizcaino was batting. Face it Lefebvre has got to be the worst manager in
baseball.
A dishard Cub fan
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/102632 | 9 | rec_sport_baseball_102632 | [('just', 'RB'), ('wanted', 'VBN'), ('to', 'TO'), ('let', 'VB'), ('everyone', 'NN'), ('know', 'VB'), ('that', 'DT'), ('have', 'VBP'), ('lost', 'VBN'), ('what', 'WP'), ('little', 'JJ'), ('respect', 'NN'), ('have', 'VBP'), ('for', 'IN'), ('jim', 'NN'), ('lefebvre', 'NN'), ('after', 'IN'), ('seeing', 'VBG'), ('today', 'NN'), ('cubs', 'NNS'), ('game', 'NN'), ('first', 'RB'), ('of', 'IN'), ('all', 'DT'), ('how', 'WRB'), ('could', 'MD'), ('he', 'PRP'), ('start', 'VB'), ('maldonado', 'NN'), ('over', 'IN'), ('may', 'MD'), ('after', 'IN'), ('the', 'DT'), ('way', 'NN'), ('may', 'MD'), ('played', 'VB'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('last', 'JJ'), ('year', 'NN'), ('and', 'CC'), ('the', 'DT'), ('way', 'NN'), ('he', 'PRP'), ('tore', 'VBD'), ('up', 'RP'), ('the', 'DT'), ('cactus', 'NN'), ('league', 'NN'), ('how', 'WRB'), ('could', 'MD'), ('you', 'PRP'), ('let', 'VB'), ('him', 'PRP'), ('sit', 'VB'), ('the', 'DT'), ('bench', 'NN'), ('not', 'RB'), ('to', 'TO'), ('mention', 'VB'), ('that', 'IN'), ('right', 'JJ'), ('hander', 'NN'), ('maddux', 'NN'), ('started', 'VBD'), ('really', 'RB'), ('blew', 'JJ'), ('my', 'PRP$'), ('top', 'JJ'), ('when', 'WRB'), ('lefebvre', 'NN'), ('pinch', 'NN'), ('hit', 'VBD'), ('for', 'IN'), ('rick', 'NN'), ('wilkins', 'NNS'), ('with', 'IN'), ('tommy', 'JJ'), ('shields', 'NNS'), ('how', 'WRB'), ('can', 'MD'), ('you', 'PRP'), ('do', 'VB'), ('that', 'DT'), ('just', 'RB'), ('because', 'IN'), ('of', 'IN'), ('the', 'DT'), ('lefty', 'JJ'), ('righty', 'JJ'), ('thing', 'NN'), ('too', 'RB'), ('much', 'JJ'), ('is', 'VBZ'), ('made', 'VBN'), ('of', 'IN'), ('that', 'DT'), ('wilkins', 'VBZ'), ('is', 'VBZ'), ('twice', 'RB'), ('the', 'DT'), ('hitter', 'NN'), ('that', 'IN'), ('shields', 'NNS'), ('is', 'VBZ'), ('then', 'RB'), ('the', 'DT'), ('next', 'JJ'), ('batter', 'NN'), ('was', 'VBD'), ('jose', 'JJ'), ('vizcaino', 'NN'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('weakest', 'JJS'), ('hitters', 'NNS'), ('have', 'VBP'), ('ever', 'RB'), ('seen', 'VBN'), ('and', 'CC'), ('who', 'WP'), ('had', 'VBD'), ('looked', 'VBN'), ('terrible', 'JJ'), ('at', 'IN'), ('bat', 'NN'), ('all', 'DT'), ('day', 'NN'), ('and', 'CC'), ('lefebre', 'JJ'), ('let', 'NN'), ('him', 'PRP'), ('hit', 'VB'), ('while', 'NN'), ('may', 'MD'), ('still', 'RB'), ('sat', 'VB'), ('the', 'DT'), ('bench', 'NN'), ('think', 'VBP'), ('even', 'RB'), ('arnie', 'VBP'), ('harris', 'NN'), ('was', 'VBD'), ('stunned', 'VBN'), ('by', 'IN'), ('this', 'DT'), ('because', 'IN'), ('he', 'PRP'), ('showed', 'VBD'), ('may', 'MD'), ('sitting', 'VBG'), ('in', 'IN'), ('the', 'DT'), ('dugout', 'NN'), ('while', 'IN'), ('vizcaino', 'NN'), ('was', 'VBD'), ('batting', 'VBG'), ('face', 'NN'), ('it', 'PRP'), ('lefebvre', 'VBZ'), ('has', 'VBZ'), ('got', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('the', 'DT'), ('worst', 'JJS'), ('manager', 'NN'), ('in', 'IN'), ('baseball', 'NN'), ('dishard', 'NN'), ('cub', 'NN'), ('fan', 'NN')] | ['want', 'let', 'everyone', 'know', 'lose', 'little', 'respect', 'jim', 'lefebvre', 'see', 'today', 'cub', 'game', 'first', 'could', 'start', 'maldonado', 'may', 'way', 'may', 'play', 'end', 'last', 'year', 'way', 'tear', 'cactus', 'league', 'could', 'let', 'sit', 'bench', 'mention', 'right', 'hander', 'maddux', 'start', 'really', 'blew', 'top', 'lefebvre', 'pinch', 'hit', 'rick', 'wilkins', 'tommy', 'shield', 'lefty', 'righty', 'thing', 'much', 'make', 'wilkins', 'twice', 'hitter', 'shield', 'next', 'batter', 'jose', 'vizcaino', 'one', 'weak', 'hitter', 'ever', 'see', 'look', 'terrible', 'bat', 'day', 'lefebre', 'let', 'hit', 'may', 'still', 'sit', 'bench', 'think', 'even', 'arnie', 'harris', 'stun', 'show', 'may', 'sit', 'dugout', 'vizcaino', 'bat', 'face', 'lefebvre', 'get', 'bad', 'manager', 'baseball', 'dishard', 'cub', 'fan'] | ['want_let', 'let_everyone', 'everyone_know', 'little_respect', 'see_today', 'game_first', 'first_could', 'could_start', 'end_last', 'last_year', 'year_way', 'could_let', 'pinch_hit', 'thing_much', 'much_make', 'ever_see', 'see_look', 'may_still', 'think_even', 'get_bad', 'cub_fan'] | rec_sport_baseball_102632 |@lemmatized want:1 let:3 everyone:1 know:1 lose:1 little:1 respect:1 jim:1 lefebvre:3 see:2 today:1 cub:2 game:1 first:1 could:2 start:2 maldonado:1 may:4 way:2 play:1 end:1 last:1 year:1 tear:1 cactus:1 league:1 sit:3 bench:2 mention:1 right:1 hander:1 maddux:1 really:1 blew:1 top:1 pinch:1 hit:2 rick:1 wilkins:2 tommy:1 shield:2 lefty:1 righty:1 thing:1 much:1 make:1 twice:1 hitter:2 next:1 batter:1 jose:1 vizcaino:2 one:1 weak:1 ever:1 look:1 terrible:1 bat:2 day:1 lefebre:1 still:1 think:1 even:1 arnie:1 harris:1 stun:1 show:1 dugout:1 face:1 get:1 bad:1 manager:1 baseball:1 dishard:1 fan:1 |@bigram want_let:1 let_everyone:1 everyone_know:1 little_respect:1 see_today:1 game_first:1 first_could:1 could_start:1 end_last:1 last_year:1 year_way:1 could_let:1 pinch_hit:1 thing_much:1 much_make:1 ever_see:1 see_look:1 may_still:1 think_even:1 get_bad:1 cub_fan:1 |
2,172 | Other idea for old space crafts is as navigation beacons and such..
Why not??
Because to be any use as a nav point you need to know -exactly- where
it is, which means you either nail it to something that doesn't move
or you watch it all the time. Neither of which is possible on a
deactivated spacecraft. Then you have to know exactly how far away
from it you are; this may or may not be possible with the hardware on
board.
Apart from which, there is absolutely no need for navigation beacons. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/61107 | 14 | sci_space_61107 | [('other', 'JJ'), ('idea', 'NN'), ('for', 'IN'), ('old', 'JJ'), ('space', 'NN'), ('crafts', 'NN'), ('is', 'VBZ'), ('as', 'IN'), ('navigation', 'NN'), ('beacons', 'NNS'), ('and', 'CC'), ('such', 'JJ'), ('..', 'NNS'), ('why', 'WRB'), ('not', 'RB'), ('??', 'RB'), ('because', 'IN'), ('to', 'TO'), ('be', 'VB'), ('any', 'DT'), ('use', 'NN'), ('as', 'IN'), ('nav', 'JJ'), ('point', 'NN'), ('you', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('know', 'VB'), ('exactly', 'RB'), ('where', 'WRB'), ('it', 'PRP'), ('is', 'VBZ'), ('which', 'WDT'), ('means', 'VBZ'), ('you', 'PRP'), ('either', 'DT'), ('nail', 'VBP'), ('it', 'PRP'), ('to', 'TO'), ('something', 'NN'), ('that', 'WDT'), ('doesn', 'VBZ'), ('move', 'NN'), ('or', 'CC'), ('you', 'PRP'), ('watch', 'VBP'), ('it', 'PRP'), ('all', 'PDT'), ('the', 'DT'), ('time', 'NN'), ('neither', 'DT'), ('of', 'IN'), ('which', 'WDT'), ('is', 'VBZ'), ('possible', 'JJ'), ('on', 'IN'), ('deactivated', 'JJ'), ('spacecraft', 'NN'), ('then', 'RB'), ('you', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('know', 'VB'), ('exactly', 'RB'), ('how', 'WRB'), ('far', 'RB'), ('away', 'RB'), ('from', 'IN'), ('it', 'PRP'), ('you', 'PRP'), ('are', 'VBP'), ('this', 'DT'), ('may', 'MD'), ('or', 'CC'), ('may', 'MD'), ('not', 'RB'), ('be', 'VB'), ('possible', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('hardware', 'NN'), ('on', 'IN'), ('board', 'NN'), ('apart', 'NN'), ('from', 'IN'), ('which', 'WDT'), ('there', 'EX'), ('is', 'VBZ'), ('absolutely', 'RB'), ('no', 'DT'), ('need', 'NN'), ('for', 'IN'), ('navigation', 'NN'), ('beacons', 'NNS')] | ['idea', 'old', 'space', 'craft', 'navigation', 'beacon', 'use', 'nav', 'point', 'need', 'know', 'exactly', 'mean', 'either', 'nail', 'something', 'move', 'watch', 'time', 'neither', 'possible', 'deactivated', 'spacecraft', 'know', 'exactly', 'far', 'away', 'may', 'may', 'possible', 'hardware', 'board', 'apart', 'absolutely', 'need', 'navigation', 'beacon'] | ['need_know', 'know_exactly', 'exactly_mean', 'mean_either', 'know_exactly', 'far_away', 'may_may', 'may_possible'] | sci_space_61107 |@lemmatized idea:1 old:1 space:1 craft:1 navigation:2 beacon:2 use:1 nav:1 point:1 need:2 know:2 exactly:2 mean:1 either:1 nail:1 something:1 move:1 watch:1 time:1 neither:1 possible:2 deactivated:1 spacecraft:1 far:1 away:1 may:2 hardware:1 board:1 apart:1 absolutely:1 |@bigram need_know:1 know_exactly:2 exactly_mean:1 mean_either:1 far_away:1 may_may:1 may_possible:1 |
2,173 | The Phillies were picked to be in first.
Someone replied that the people who picked them were the same people who
picked the Mets last year.
My reply: Yeah, that may be true, but this IS the Phillies. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.sport.baseball/102642 | 9 | rec_sport_baseball_102642 | [('the', 'DT'), ('phillies', 'NNS'), ('were', 'VBD'), ('picked', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('in', 'IN'), ('first', 'JJ'), ('someone', 'NN'), ('replied', 'VBD'), ('that', 'IN'), ('the', 'DT'), ('people', 'NNS'), ('who', 'WP'), ('picked', 'VBD'), ('them', 'PRP'), ('were', 'VBD'), ('the', 'DT'), ('same', 'JJ'), ('people', 'NNS'), ('who', 'WP'), ('picked', 'VBD'), ('the', 'DT'), ('mets', 'NNS'), ('last', 'JJ'), ('year', 'NN'), ('my', 'PRP$'), ('reply', 'NN'), ('yeah', 'NN'), ('that', 'WDT'), ('may', 'MD'), ('be', 'VB'), ('true', 'JJ'), ('but', 'CC'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('phillies', 'NNS')] | ['phillies', 'pick', 'first', 'someone', 'reply', 'people', 'pick', 'people', 'pick', 'mets', 'last', 'year', 'reply', 'yeah', 'may', 'true', 'phillies'] | ['pick_first', 'last_year', 'may_true'] | rec_sport_baseball_102642 |@lemmatized phillies:2 pick:3 first:1 someone:1 reply:2 people:2 mets:1 last:1 year:1 yeah:1 may:1 true:1 |@bigram pick_first:1 last_year:1 may_true:1 |
2,174 | > [A very nice article on the DSS, which I thought answered
> David Cruz-Uribe's original queries quite well]
Here are some books I have read recently that helped me not only
prepare for a 5 week series I taught in Sunday School, but greatly
increased my knowledge of the Qumran scrolls. [...]
One other recent book I would heartily recommend is Joseph Fitzmyer's
_Response to 101 Questions about the Dead Sea Scrolls_ (Paulist,
1992).
Fitzmyer is one of the preeminent modern NT scholars. He was also one
of the early workers on the DSS. His book is written in a
straightforward Q&A that allows it to serve as a source for a great
wealth of clearly presented basic, up-to-the-moment information about
the DSS.
(This book is something of a companion volume to Raymond Brown's
_Response to 101 Questions about the Dead Sea Scrolls_.)
Nichael | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20489 | 15 | soc_religion_christian_20489 | [('very', 'RB'), ('nice', 'JJ'), ('article', 'NN'), ('on', 'IN'), ('the', 'DT'), ('dss', 'NN'), ('which', 'WDT'), ('thought', 'VBD'), ('answered', 'VBN'), ('david', 'JJ'), ('cruz', 'NN'), ('uribe', 'JJ'), ('original', 'JJ'), ('queries', 'NNS'), ('quite', 'RB'), ('well', 'RB'), ('here', 'RB'), ('are', 'VBP'), ('some', 'DT'), ('books', 'NNS'), ('have', 'VBP'), ('read', 'VBN'), ('recently', 'RB'), ('that', 'IN'), ('helped', 'VBD'), ('me', 'PRP'), ('not', 'RB'), ('only', 'RB'), ('prepare', 'VB'), ('for', 'IN'), ('week', 'NN'), ('series', 'NN'), ('taught', 'NN'), ('in', 'IN'), ('sunday', 'JJ'), ('school', 'NN'), ('but', 'CC'), ('greatly', 'RB'), ('increased', 'VBD'), ('my', 'PRP$'), ('knowledge', 'NN'), ('of', 'IN'), ('the', 'DT'), ('qumran', 'NN'), ('scrolls', 'VBZ'), ('[...]', 'VBP'), ('one', 'CD'), ('other', 'JJ'), ('recent', 'JJ'), ('book', 'NN'), ('would', 'MD'), ('heartily', 'VB'), ('recommend', 'VB'), ('is', 'VBZ'), ('joseph', 'JJ'), ('fitzmyer', 'NN'), ('_response', 'NN'), ('to', 'TO'), ('101', 'CD'), ('questions', 'NNS'), ('about', 'IN'), ('the', 'DT'), ('dead', 'JJ'), ('sea', 'NN'), ('scrolls_', 'NN'), ('paulist', 'NN'), ('1992', 'CD'), (').', 'NNP'), ('fitzmyer', 'NN'), ('is', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('preeminent', 'NN'), ('modern', 'JJ'), ('nt', 'JJ'), ('scholars', 'NNS'), ('he', 'PRP'), ('was', 'VBD'), ('also', 'RB'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('early', 'JJ'), ('workers', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('dss', 'NN'), ('his', 'PRP$'), ('book', 'NN'), ('is', 'VBZ'), ('written', 'VBN'), ('in', 'IN'), ('straightforward', 'NN'), ('that', 'WDT'), ('allows', 'VBZ'), ('it', 'PRP'), ('to', 'TO'), ('serve', 'VB'), ('as', 'IN'), ('source', 'NN'), ('for', 'IN'), ('great', 'JJ'), ('wealth', 'NN'), ('of', 'IN'), ('clearly', 'RB'), ('presented', 'VBN'), ('basic', 'JJ'), ('up', 'RB'), ('to', 'TO'), ('the', 'DT'), ('moment', 'NN'), ('information', 'NN'), ('about', 'IN'), ('the', 'DT'), ('dss', 'NN'), ('this', 'DT'), ('book', 'NN'), ('is', 'VBZ'), ('something', 'NN'), ('of', 'IN'), ('companion', 'NN'), ('volume', 'NN'), ('to', 'TO'), ('raymond', 'VB'), ('brown', 'JJ'), ('_response', 'NN'), ('to', 'TO'), ('101', 'CD'), ('questions', 'NNS'), ('about', 'IN'), ('the', 'DT'), ('dead', 'JJ'), ('sea', 'NN'), ('scrolls_', 'NN'), ('.)', 'CD'), ('nichael', 'NN')] | ['nice', 'article', 'ds', 'think', 'answer', 'david', 'cruz', 'uribe', 'original', 'query', 'quite', 'well', 'book', 'read', 'recently', 'help', 'prepare', 'week', 'series', 'taught', 'sunday', 'school', 'greatly', 'increase', 'knowledge', 'qumran', 'scroll', 'one', 'recent', 'book', 'would', 'heartily', 'recommend', 'joseph', 'fitzmyer', 'question', 'dead', 'sea', 'paulist', 'fitzmyer', 'one', 'preeminent', 'modern', 'nt', 'scholar', 'also', 'one', 'early', 'worker', 'ds', 'book', 'write', 'straightforward', 'allow', 'serve', 'source', 'great', 'wealth', 'clearly', 'present', 'basic', 'moment', 'information', 'ds', 'book', 'something', 'companion', 'volume', 'raymond', 'brown', 'question', 'dead', 'sea', 'nichael'] | ['think_answer', 'quite_well', 'book_read', 'greatly_increase', 'book_would', 'dead_sea', 'also_one', 'one_early', 'book_write', 'dead_sea'] | soc_religion_christian_20489 |@lemmatized nice:1 article:1 ds:3 think:1 answer:1 david:1 cruz:1 uribe:1 original:1 query:1 quite:1 well:1 book:4 read:1 recently:1 help:1 prepare:1 week:1 series:1 taught:1 sunday:1 school:1 greatly:1 increase:1 knowledge:1 qumran:1 scroll:1 one:3 recent:1 would:1 heartily:1 recommend:1 joseph:1 fitzmyer:2 question:2 dead:2 sea:2 paulist:1 preeminent:1 modern:1 nt:1 scholar:1 also:1 early:1 worker:1 write:1 straightforward:1 allow:1 serve:1 source:1 great:1 wealth:1 clearly:1 present:1 basic:1 moment:1 information:1 something:1 companion:1 volume:1 raymond:1 brown:1 nichael:1 |@bigram think_answer:1 quite_well:1 book_read:1 greatly_increase:1 book_would:1 dead_sea:2 also_one:1 one_early:1 book_write:1 |
2,175 | Having read the various "Clipper" announcements on the net over the last few
days and a LOT of uninformed speculation about the chip, its uses,
government plots, etc, I have the following questions.
1) What does the "Clipper chip" actually implement? Just the Skipjack
cryptographic algorithm? Or does it also implement a "chip to chip"
communications protocol? If it does implement a communications
protocol, can it be used as just a "crypt chip" also.
2) Where can the chip specifications and spec sheets be obtained?
3) Who may purchase them and under what conditions?
4) Are there restrictions as to how the chip may be used in a system?
5) The security of the algorithm and the encrypted communications does
not appear to require that the "Family key" be a secret. Why is
it a secret? What happens when the "family key" becomes well known?
If it's a secret to make traffic analysis more difficult, does
the "Law enforcement message" contain any random information?
How much and how random is it?
6) Can the chip be programmed to reveal the "Unit key"? The chip "serial
number"? Any of the programming parameters?
-----------------------------------------------------------------------------
Raymond S. Brand [email protected] | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15658 | 11 | sci_crypt_15658 | [('having', 'VBG'), ('read', 'VBN'), ('the', 'DT'), ('various', 'JJ'), ('clipper', 'JJ'), ('announcements', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('net', 'NN'), ('over', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('few', 'JJ'), ('days', 'NNS'), ('and', 'CC'), ('lot', 'NN'), ('of', 'IN'), ('uninformed', 'JJ'), ('speculation', 'NN'), ('about', 'IN'), ('the', 'DT'), ('chip', 'NN'), ('its', 'PRP$'), ('uses', 'JJ'), ('government', 'NN'), ('plots', 'NNS'), ('etc', 'VBP'), ('have', 'VBP'), ('the', 'DT'), ('following', 'JJ'), ('questions', 'NNS'), ('what', 'WP'), ('does', 'VBZ'), ('the', 'DT'), ('clipper', 'NN'), ('chip', 'NN'), ('actually', 'RB'), ('implement', 'JJ'), ('just', 'RB'), ('the', 'DT'), ('skipjack', 'NN'), ('cryptographic', 'JJ'), ('algorithm', 'NN'), ('or', 'CC'), ('does', 'VBZ'), ('it', 'PRP'), ('also', 'RB'), ('implement', 'VBD'), ('chip', 'NN'), ('to', 'TO'), ('chip', 'NN'), ('communications', 'NNS'), ('protocol', 'VBP'), ('if', 'IN'), ('it', 'PRP'), ('does', 'VBZ'), ('implement', 'JJ'), ('communications', 'NNS'), ('protocol', 'NN'), ('can', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('used', 'VBN'), ('as', 'IN'), ('just', 'RB'), ('crypt', 'NN'), ('chip', 'NN'), ('also', 'RB'), ('where', 'WRB'), ('can', 'MD'), ('the', 'DT'), ('chip', 'NN'), ('specifications', 'NNS'), ('and', 'CC'), ('spec', 'JJ'), ('sheets', 'NNS'), ('be', 'VB'), ('obtained', 'VBN'), ('who', 'WP'), ('may', 'MD'), ('purchase', 'VB'), ('them', 'PRP'), ('and', 'CC'), ('under', 'IN'), ('what', 'WP'), ('conditions', 'NNS'), ('are', 'VBP'), ('there', 'RB'), ('restrictions', 'NNS'), ('as', 'IN'), ('to', 'TO'), ('how', 'WRB'), ('the', 'DT'), ('chip', 'NN'), ('may', 'MD'), ('be', 'VB'), ('used', 'VBN'), ('in', 'IN'), ('system', 'NN'), ('the', 'DT'), ('security', 'NN'), ('of', 'IN'), ('the', 'DT'), ('algorithm', 'NN'), ('and', 'CC'), ('the', 'DT'), ('encrypted', 'JJ'), ('communications', 'NNS'), ('does', 'VBZ'), ('not', 'RB'), ('appear', 'VB'), ('to', 'TO'), ('require', 'VB'), ('that', 'IN'), ('the', 'DT'), ('family', 'NN'), ('key', 'NN'), ('be', 'VB'), ('secret', 'JJ'), ('why', 'WRB'), ('is', 'VBZ'), ('it', 'PRP'), ('secret', 'JJ'), ('what', 'WP'), ('happens', 'VBZ'), ('when', 'WRB'), ('the', 'DT'), ('family', 'NN'), ('key', 'NN'), ('becomes', 'RB'), ('well', 'RB'), ('known', 'VBN'), ('if', 'IN'), ('it', 'PRP'), ('secret', 'VBZ'), ('to', 'TO'), ('make', 'VB'), ('traffic', 'NN'), ('analysis', 'NN'), ('more', 'RBR'), ('difficult', 'JJ'), ('does', 'VBZ'), ('the', 'DT'), ('law', 'NN'), ('enforcement', 'NN'), ('message', 'NN'), ('contain', 'VBP'), ('any', 'DT'), ('random', 'JJ'), ('information', 'NN'), ('how', 'WRB'), ('much', 'RB'), ('and', 'CC'), ('how', 'WRB'), ('random', 'NN'), ('is', 'VBZ'), ('it', 'PRP'), ('can', 'MD'), ('the', 'DT'), ('chip', 'NN'), ('be', 'VB'), ('programmed', 'VBN'), ('to', 'TO'), ('reveal', 'VB'), ('the', 'DT'), ('unit', 'NN'), ('key', 'JJ'), ('"?', 'VBZ'), ('the', 'DT'), ('chip', 'NN'), ('serial', 'JJ'), ('number', 'NN'), ('"?', 'NNP'), ('any', 'DT'), ('of', 'IN'), ('the', 'DT'), ('programming', 'NN'), ('parameters', 'NNS'), ('-----------------------------------------------------------------------------', 'VBP'), ('raymond', 'NN'), ('brand', 'NN')] | ['read', 'various', 'clipper', 'announcement', 'net', 'last', 'day', 'lot', 'uninformed', 'speculation', 'chip', 'uses', 'government', 'plot', 'etc', 'following', 'question', 'clipper', 'chip', 'actually', 'implement', 'skipjack', 'cryptographic', 'algorithm', 'also', 'implement', 'chip', 'chip', 'communication', 'protocol', 'implement', 'communication', 'protocol', 'use', 'crypt', 'chip', 'also', 'chip', 'specification', 'spec', 'sheet', 'obtain', 'may', 'purchase', 'condition', 'restriction', 'chip', 'may', 'use', 'system', 'security', 'algorithm', 'encrypted', 'communication', 'appear', 'require', 'family', 'key', 'secret', 'secret', 'happen', 'family', 'key', 'becomes', 'well', 'know', 'secret', 'make', 'traffic', 'analysis', 'difficult', 'law', 'enforcement', 'message', 'contain', 'random', 'information', 'much', 'random', 'chip', 'program', 'reveal', 'unit', 'key', 'chip', 'serial', 'number', 'programming', 'parameter', 'raymond', 'brand'] | ['net_last', 'last_day', 'following_question', 'clipper_chip', 'chip_chip', 'chip_communication', 'communication_protocol', 'communication_protocol', 'chip_also', 'spec_sheet', 'chip_may', 'may_use', 'use_system', 'system_security', 'family_key', 'key_secret', 'family_key', 'well_know', 'law_enforcement', 'message_contain', 'chip_program', 'unit_key', 'key_chip', 'chip_serial', 'serial_number'] | sci_crypt_15658 |@lemmatized read:1 various:1 clipper:2 announcement:1 net:1 last:1 day:1 lot:1 uninformed:1 speculation:1 chip:9 uses:1 government:1 plot:1 etc:1 following:1 question:1 actually:1 implement:3 skipjack:1 cryptographic:1 algorithm:2 also:2 communication:3 protocol:2 use:2 crypt:1 specification:1 spec:1 sheet:1 obtain:1 may:2 purchase:1 condition:1 restriction:1 system:1 security:1 encrypted:1 appear:1 require:1 family:2 key:3 secret:3 happen:1 becomes:1 well:1 know:1 make:1 traffic:1 analysis:1 difficult:1 law:1 enforcement:1 message:1 contain:1 random:2 information:1 much:1 program:1 reveal:1 unit:1 serial:1 number:1 programming:1 parameter:1 raymond:1 brand:1 |@bigram net_last:1 last_day:1 following_question:1 clipper_chip:1 chip_chip:1 chip_communication:1 communication_protocol:2 chip_also:1 spec_sheet:1 chip_may:1 may_use:1 use_system:1 system_security:1 family_key:2 key_secret:1 well_know:1 law_enforcement:1 message_contain:1 chip_program:1 unit_key:1 key_chip:1 chip_serial:1 serial_number:1 |
2,176 |
Thanks for the information!
I assume p is the semi-major axis and e the eccentricity. The peri-
helion and aphelion are then given by p(1-e) and p(1+e), i.e., about
2.90 and 3.95 AU respectively. For Jupiter, they are 4.95 and 5.45 AU.
If 1977 was after the temporary capture, this means that the comet
ended up in an orbit that comes no closer than 1 AU to Jupiter's --
which I take to be a rough indication of how far from Jupiter it could
get under Jupiter's influence.
Where 1 Jupiter radius = 71,000 km = 44,000 mi = 0.0005 AU. So the
1970 figure seems unlikely to actually be anything but a perijove.
Is that the case for the 1973 figure as well?
--
Mark Brader, SoftQuad Inc., Toronto "Remember the Golgafrinchans"
utzoo!sq!msb, [email protected] -- Pete Granger | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/60883 | 14 | sci_space_60883 | [('thanks', 'NNS'), ('for', 'IN'), ('the', 'DT'), ('information', 'NN'), ('assume', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('semi', 'JJ'), ('major', 'JJ'), ('axis', 'NN'), ('and', 'CC'), ('the', 'DT'), ('eccentricity', 'NN'), ('the', 'DT'), ('peri', 'NN'), ('helion', 'NN'), ('and', 'CC'), ('aphelion', 'NN'), ('are', 'VBP'), ('then', 'RB'), ('given', 'VBN'), ('by', 'IN'), ('and', 'CC'), ('),', 'NNP'), ('.,', 'VBP'), ('about', 'IN'), ('90', 'CD'), ('and', 'CC'), ('95', 'CD'), ('au', 'NNS'), ('respectively', 'RB'), ('for', 'IN'), ('jupiter', 'NN'), ('they', 'PRP'), ('are', 'VBP'), ('95', 'CD'), ('and', 'CC'), ('45', 'CD'), ('au', 'NN'), ('if', 'IN'), ('1977', 'CD'), ('was', 'VBD'), ('after', 'IN'), ('the', 'DT'), ('temporary', 'JJ'), ('capture', 'NN'), ('this', 'DT'), ('means', 'VBZ'), ('that', 'IN'), ('the', 'DT'), ('comet', 'NN'), ('ended', 'VBD'), ('up', 'RP'), ('in', 'IN'), ('an', 'DT'), ('orbit', 'NN'), ('that', 'WDT'), ('comes', 'VBZ'), ('no', 'DT'), ('closer', 'JJR'), ('than', 'IN'), ('au', 'NN'), ('to', 'TO'), ('jupiter', 'NN'), ('--', ':'), ('which', 'WDT'), ('take', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('rough', 'JJ'), ('indication', 'NN'), ('of', 'IN'), ('how', 'WRB'), ('far', 'RB'), ('from', 'IN'), ('jupiter', 'NN'), ('it', 'PRP'), ('could', 'MD'), ('get', 'VB'), ('under', 'IN'), ('jupiter', 'NN'), ('influence', 'NN'), ('where', 'WRB'), ('jupiter', 'NN'), ('radius', 'VBD'), ('71', 'CD'), ('000', 'CD'), ('km', 'NN'), ('44', 'CD'), ('000', 'CD'), ('mi', 'NN'), ('0005', 'CD'), ('au', 'NN'), ('so', 'IN'), ('the', 'DT'), ('1970', 'CD'), ('figure', 'NN'), ('seems', 'VBZ'), ('unlikely', 'JJ'), ('to', 'TO'), ('actually', 'RB'), ('be', 'VB'), ('anything', 'NN'), ('but', 'CC'), ('perijove', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('the', 'DT'), ('case', 'NN'), ('for', 'IN'), ('the', 'DT'), ('1973', 'CD'), ('figure', 'NN'), ('as', 'RB'), ('well', 'RB'), ('--', ':'), ('mark', 'NN'), ('brader', 'NN'), ('softquad', 'NN'), ('inc', 'NN'), ('.,', 'NNP'), ('toronto', 'IN'), ('remember', 'VB'), ('the', 'DT'), ('golgafrinchans', 'NNS'), ('utzoo', 'JJ'), ('sq', 'JJ'), ('msb', 'NN'), ('--', ':'), ('pete', 'JJ'), ('granger', 'NN')] | ['thanks', 'information', 'assume', 'semi', 'major', 'axis', 'eccentricity', 'peri', 'helion', 'aphelion', 'give', 'au', 'respectively', 'jupiter', 'au', 'temporary', 'capture', 'mean', 'comet', 'end', 'orbit', 'come', 'close', 'au', 'jupiter', 'take', 'rough', 'indication', 'far', 'jupiter', 'could', 'get', 'jupiter', 'influence', 'jupiter', 'radius', 'km', 'mi', 'au', 'figure', 'seem', 'unlikely', 'actually', 'anything', 'perijove', 'case', 'figure', 'well', 'mark', 'brader', 'softquad', 'inc', 'toronto', 'remember', 'golgafrinchans', 'utzoo', 'sq', 'msb', 'pete', 'granger'] | ['thanks_information', 'come_close', 'could_get', 'figure_seem', 'seem_unlikely', 'mark_brader'] | sci_space_60883 |@lemmatized thanks:1 information:1 assume:1 semi:1 major:1 axis:1 eccentricity:1 peri:1 helion:1 aphelion:1 give:1 au:4 respectively:1 jupiter:5 temporary:1 capture:1 mean:1 comet:1 end:1 orbit:1 come:1 close:1 take:1 rough:1 indication:1 far:1 could:1 get:1 influence:1 radius:1 km:1 mi:1 figure:2 seem:1 unlikely:1 actually:1 anything:1 perijove:1 case:1 well:1 mark:1 brader:1 softquad:1 inc:1 toronto:1 remember:1 golgafrinchans:1 utzoo:1 sq:1 msb:1 pete:1 granger:1 |@bigram thanks_information:1 come_close:1 could_get:1 figure_seem:1 seem_unlikely:1 mark_brader:1 |
2,177 | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76301 | 17 | talk_politics_mideast_76301 | [] | [] | [] | talk_politics_mideast_76301 |@lemmatized |@bigram |
|
2,178 | I have heard that epileptic patients go into seizures if they
eat anything with MSG added. This may have something to do with
the excitotoxicity of neurons. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.med/58992 | 13 | sci_med_58992 | [('have', 'VB'), ('heard', 'VBN'), ('that', 'IN'), ('epileptic', 'JJ'), ('patients', 'NNS'), ('go', 'VBP'), ('into', 'IN'), ('seizures', 'NNS'), ('if', 'IN'), ('they', 'PRP'), ('eat', 'VBP'), ('anything', 'NN'), ('with', 'IN'), ('msg', 'NN'), ('added', 'VBD'), ('this', 'DT'), ('may', 'MD'), ('have', 'VB'), ('something', 'NN'), ('to', 'TO'), ('do', 'VB'), ('with', 'IN'), ('the', 'DT'), ('excitotoxicity', 'NN'), ('of', 'IN'), ('neurons', 'NNS')] | ['hear', 'epileptic', 'patient', 'go', 'seizure', 'eat', 'anything', 'msg', 'add', 'may', 'something', 'excitotoxicity', 'neuron'] | ['may_something'] | sci_med_58992 |@lemmatized hear:1 epileptic:1 patient:1 go:1 seizure:1 eat:1 anything:1 msg:1 add:1 may:1 something:1 excitotoxicity:1 neuron:1 |@bigram may_something:1 |
2,179 | He doesn't contradict himself. The church is to last for all time.
However, there are those who use the church to bolster themselves. This
is evident in many letters. For instance, Paul talks about the
"super-apostles" to the Corinthians (2 Corinthians 11-12), he mentions
how people will be led away by miracles, signs, and wonders (2
Thessalonians 2:9-12), he tells Timothy that it is clear that some will
abandon the faith and teach lies (1 Timothy 4:1-3) and that some will
search for teachers to suit what they want to hear (2 Timothy 4:3-4).
Such passages go throughout the letters and Jesus does warn about them
(Matthew 24:4-14). But look at the promise in this last part. Verse
14: "And this gospel of the kingdom will be preached in the whole world
as a testimony to all nations, and then the end will come." Even today,
there are false teachings. I can name two which I am well familiar
with: the non-need of baptism and the "praying of Jesus into your life
for salvation". Both are taught. Both are DEAD wrong. They have been
taken out of context from some verses, interpreted from others, and just
plain made up. The ONLY way Jesus taught is given in Luke 9:23-26 and
Luke 14:25-33. He then commands baptism in Matthew 28:18-20. The
church Jesus founded, though, is alive and well. It's not being
persecuted as much as back then (the laws won't allow it yet), but it is
being persecuted.
Joe Fisher | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20537 | 15 | soc_religion_christian_20537 | [('he', 'PRP'), ('doesn', 'VBZ'), ('contradict', 'NN'), ('himself', 'PRP'), ('the', 'DT'), ('church', 'NN'), ('is', 'VBZ'), ('to', 'TO'), ('last', 'JJ'), ('for', 'IN'), ('all', 'DT'), ('time', 'NN'), ('however', 'RB'), ('there', 'EX'), ('are', 'VBP'), ('those', 'DT'), ('who', 'WP'), ('use', 'VBP'), ('the', 'DT'), ('church', 'NN'), ('to', 'TO'), ('bolster', 'VB'), ('themselves', 'PRP'), ('this', 'DT'), ('is', 'VBZ'), ('evident', 'JJ'), ('in', 'IN'), ('many', 'JJ'), ('letters', 'NNS'), ('for', 'IN'), ('instance', 'NN'), ('paul', 'NN'), ('talks', 'NNS'), ('about', 'IN'), ('the', 'DT'), ('super', 'JJ'), ('apostles', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('corinthians', 'NNS'), ('corinthians', 'VBZ'), ('11', 'CD'), ('12', 'CD'), ('),', 'NN'), ('he', 'PRP'), ('mentions', 'VBZ'), ('how', 'WRB'), ('people', 'NNS'), ('will', 'MD'), ('be', 'VB'), ('led', 'VBN'), ('away', 'RB'), ('by', 'IN'), ('miracles', 'NNS'), ('signs', 'NNS'), ('and', 'CC'), ('wonders', 'NNS'), ('thessalonians', 'NNS'), ('12', 'CD'), ('),', 'NN'), ('he', 'PRP'), ('tells', 'VBZ'), ('timothy', 'JJ'), ('that', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('clear', 'JJ'), ('that', 'IN'), ('some', 'DT'), ('will', 'MD'), ('abandon', 'VB'), ('the', 'DT'), ('faith', 'NN'), ('and', 'CC'), ('teach', 'NN'), ('lies', 'VBZ'), ('timothy', 'JJ'), ('and', 'CC'), ('that', 'DT'), ('some', 'DT'), ('will', 'MD'), ('search', 'VB'), ('for', 'IN'), ('teachers', 'NNS'), ('to', 'TO'), ('suit', 'VB'), ('what', 'WP'), ('they', 'PRP'), ('want', 'VBP'), ('to', 'TO'), ('hear', 'VB'), ('timothy', 'JJ'), (').', 'NNS'), ('such', 'JJ'), ('passages', 'NNS'), ('go', 'VBP'), ('throughout', 'IN'), ('the', 'DT'), ('letters', 'NNS'), ('and', 'CC'), ('jesus', 'NN'), ('does', 'VBZ'), ('warn', 'VB'), ('about', 'IN'), ('them', 'PRP'), ('matthew', 'VBP'), ('24', 'CD'), ('14', 'CD'), (').', 'NNS'), ('but', 'CC'), ('look', 'VBP'), ('at', 'IN'), ('the', 'DT'), ('promise', 'NN'), ('in', 'IN'), ('this', 'DT'), ('last', 'JJ'), ('part', 'NN'), ('verse', 'VBD'), ('14', 'CD'), ('and', 'CC'), ('this', 'DT'), ('gospel', 'NN'), ('of', 'IN'), ('the', 'DT'), ('kingdom', 'NN'), ('will', 'MD'), ('be', 'VB'), ('preached', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('whole', 'JJ'), ('world', 'NN'), ('as', 'IN'), ('testimony', 'NN'), ('to', 'TO'), ('all', 'DT'), ('nations', 'NNS'), ('and', 'CC'), ('then', 'RB'), ('the', 'DT'), ('end', 'NN'), ('will', 'MD'), ('come', 'VB'), ('."', 'NNP'), ('even', 'RB'), ('today', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('false', 'JJ'), ('teachings', 'NNS'), ('can', 'MD'), ('name', 'VB'), ('two', 'CD'), ('which', 'WDT'), ('am', 'VBP'), ('well', 'RB'), ('familiar', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('non', 'JJ'), ('need', 'NN'), ('of', 'IN'), ('baptism', 'NN'), ('and', 'CC'), ('the', 'DT'), ('praying', 'NN'), ('of', 'IN'), ('jesus', 'NN'), ('into', 'IN'), ('your', 'PRP$'), ('life', 'NN'), ('for', 'IN'), ('salvation', 'NN'), ('".', 'NNP'), ('both', 'DT'), ('are', 'VBP'), ('taught', 'VBN'), ('both', 'DT'), ('are', 'VBP'), ('dead', 'JJ'), ('wrong', 'IN'), ('they', 'PRP'), ('have', 'VBP'), ('been', 'VBN'), ('taken', 'VBN'), ('out', 'IN'), ('of', 'IN'), ('context', 'NN'), ('from', 'IN'), ('some', 'DT'), ('verses', 'NNS'), ('interpreted', 'VBN'), ('from', 'IN'), ('others', 'NNS'), ('and', 'CC'), ('just', 'RB'), ('plain', 'NN'), ('made', 'VBD'), ('up', 'RP'), ('the', 'DT'), ('only', 'JJ'), ('way', 'NN'), ('jesus', 'NN'), ('taught', 'NN'), ('is', 'VBZ'), ('given', 'VBN'), ('in', 'IN'), ('luke', 'JJ'), ('23', 'CD'), ('26', 'CD'), ('and', 'CC'), ('luke', 'VBD'), ('14', 'CD'), ('25', 'CD'), ('33', 'CD'), ('he', 'PRP'), ('then', 'RB'), ('commands', 'VBZ'), ('baptism', 'NN'), ('in', 'IN'), ('matthew', 'NN'), ('28', 'CD'), ('18', 'CD'), ('20', 'CD'), ('the', 'DT'), ('church', 'NN'), ('jesus', 'NN'), ('founded', 'VBN'), ('though', 'IN'), ('is', 'VBZ'), ('alive', 'JJ'), ('and', 'CC'), ('well', 'VB'), ('it', 'PRP'), ('not', 'RB'), ('being', 'VBG'), ('persecuted', 'VBN'), ('as', 'RB'), ('much', 'JJ'), ('as', 'IN'), ('back', 'RB'), ('then', 'RB'), ('the', 'DT'), ('laws', 'NNS'), ('won', 'VBD'), ('allow', 'IN'), ('it', 'PRP'), ('yet', 'RB'), ('),', 'VBZ'), ('but', 'CC'), ('it', 'PRP'), ('is', 'VBZ'), ('being', 'VBG'), ('persecuted', 'VBN'), ('joe', 'NN'), ('fisher', 'NN')] | ['contradict', 'church', 'last', 'time', 'however', 'use', 'church', 'bolster', 'evident', 'many', 'letter', 'instance', 'paul', 'talk', 'super', 'apostle', 'corinthian', 'corinthians', 'mention', 'people', 'lead', 'away', 'miracle', 'sign', 'wonder', 'thessalonian', 'tell', 'timothy', 'clear', 'abandon', 'faith', 'teach', 'lie', 'timothy', 'search', 'teacher', 'suit', 'want', 'hear', 'timothy', 'passage', 'go', 'throughout', 'letter', 'jesus', 'warn', 'matthew', 'look', 'promise', 'last', 'part', 'verse', 'gospel', 'kingdom', 'preach', 'whole', 'world', 'testimony', 'nation', 'end', 'come', 'even', 'today', 'false', 'teaching', 'name', 'two', 'well', 'familiar', 'non', 'need', 'baptism', 'praying', 'jesus', 'life', 'salvation', 'teach', 'dead', 'wrong', 'take', 'context', 'verse', 'interpret', 'others', 'plain', 'make', 'way', 'jesus', 'taught', 'give', 'luke', 'luke', 'command', 'baptism', 'matthew', 'church', 'jesus', 'found', 'though', 'alive', 'well', 'persecute', 'much', 'back', 'law', 'win', 'allow', 'yet', 'persecute', 'joe', 'fisher'] | ['last_time', 'time_however', 'however_use', 'paul_talk', 'want_hear', 'last_part', 'whole_world', 'end_come', 'come_even', 'even_today', 'jesus_life', 'take_context', 'make_way', 'alive_well', 'win_allow', 'joe_fisher'] | soc_religion_christian_20537 |@lemmatized contradict:1 church:3 last:2 time:1 however:1 use:1 bolster:1 evident:1 many:1 letter:2 instance:1 paul:1 talk:1 super:1 apostle:1 corinthian:1 corinthians:1 mention:1 people:1 lead:1 away:1 miracle:1 sign:1 wonder:1 thessalonian:1 tell:1 timothy:3 clear:1 abandon:1 faith:1 teach:2 lie:1 search:1 teacher:1 suit:1 want:1 hear:1 passage:1 go:1 throughout:1 jesus:4 warn:1 matthew:2 look:1 promise:1 part:1 verse:2 gospel:1 kingdom:1 preach:1 whole:1 world:1 testimony:1 nation:1 end:1 come:1 even:1 today:1 false:1 teaching:1 name:1 two:1 well:2 familiar:1 non:1 need:1 baptism:2 praying:1 life:1 salvation:1 dead:1 wrong:1 take:1 context:1 interpret:1 others:1 plain:1 make:1 way:1 taught:1 give:1 luke:2 command:1 found:1 though:1 alive:1 persecute:2 much:1 back:1 law:1 win:1 allow:1 yet:1 joe:1 fisher:1 |@bigram last_time:1 time_however:1 however_use:1 paul_talk:1 want_hear:1 last_part:1 whole_world:1 end_come:1 come_even:1 even_today:1 jesus_life:1 take_context:1 make_way:1 alive_well:1 win_allow:1 joe_fisher:1 |
2,180 | : > Last year the US suffered almost 10,000 wrongful or accidental
: > deaths by handguns alone (FBI statistics). In the same year, the UK
: > suffered 35 such deaths (Scotland Yard statistics). The population
: > of the UK is about 1/5 that of the US (10,000 / (35 * 5)). Weighted
: > for population, the US has 57x as many handgun-related deaths as the
: > UK. And, no, the Brits don't make up for this by murdering 57x as
: > many people with baseball bats.
: You just can't compare this way! All homicides must be shown, per capita, not
: just handguns. The availability of them in the USA makes them the preferred
: murder weapon, but ban them, and some other weapon will step in as the
: favorite.
As a "favorite", sure. As lethal, not likely. A study of violence in
Chicago produced this table:
Percentage of Reported Gun and Knife Attacks
Resulting in Death
Weapon Deaths As Percentage of Attacks
---------------------------------------------------------------
Knives (16,518 total attacks) 2.4
Guns (6,350 total attacks) 12.2
Source: Firearms and Violence in American Life
It might be contended that if gun murderers were deprived of guns
that they would find a way to kill as often with knives. If this were
so, knife attacks in cities where guns were widely used in homicide
would be expected to show a low fatality rate, and knife attacks in
cities where guns were not so widely used (like Vancouver) would show
a higher fatality rate. But the Nat'l Commission on the Causes and
Prevention of Violence Task Force analyzed the data and found this
not to be the case. It appeared to them that as the number of knife
attacks increased in relation to the number of firearms attacks
(which presumably happened where guns were less available to assailants),
the proportion of FATAL knife attacks did NOT increase relative to the
proportion of gun attacks. In fact, the reverse was true.
What was found was that most homicides did not show a determination on
the part of the assailant to kill. Fatalities caused by knife tended
to show a single-mindedness on the part of the assailant to do grave
physical injury: multiple stabs wounds, wounds concentrated about the
head neck and chest, etc. Most gun homicides did not show this
pattern. Rather, more fatal attacks were committed during a moment of
rage and not the focused intent to kill the victim.
Source: Report on Firearms and Violence
: Then, since England != USA (my ancestors left because of the oppression) you
: must compare England before strict gun laws to England after strict gun laws to
: be able to draw any meaning at all. England has essentially legalized drugs,
: so there are no drug gangs battling for turf, etc., there. If you drop out the
: drug related killings here, the USA would look a whole lot more peaceful.
There are a lot of factors which make a difference. Actually, I'm not
fond of making ANY kind of social parallels between Europeans and
Americans. There are more cultural, beahvioral and economic
differences between us than similarities. I just sort of found
myself backed into that corner over the last couple of weeks. I
don't think we could ever attain the low levels of European violent
crime here in the US, whether we banned guns or required every
law-abiding citizen to carry a loaded Uzi.
On the other hand, we can draw lessons from neighbors who are more
culturally similar, namely the Canadians. In fact, an exhaustive,
seven-year study has already been done of the respective crime rates
of Vancouver, British Columbia and Seattle, Washington... cities
with roughly the same population, urban economy, geography
and crime but with decidedly different approaches to gun control.
In Seattle, handguns may be purchased legally for self-defense. After
a 30-day waiting period, a permit can be obtained to carry a concealed
weapon. The recreational use of handguns is minimally restricted.
In Vancouver, self-defense is not considered a valid or legal reason
to purchase a handgun. Concealed weapons are not permitted.
Recreational uses of handguns (target shooting, collecting) are
regulated by the province. Purchase of a handgun requires a
restricted-weapons permit. A permit to carry may be obtained in
order to transport the weapon to licensed shooting clubs. Handguns
transported by vehicle must be stored in the trunk in a locked box.
In short, gun control but not unreasonably so.
Both cities aggressively enforce their gun laws. Convictions for
gun-related offenses carry similar penalties. The researchers
studied all cases of robbery, assault (simple and aggravated),
burglary and homicides occurring in Seattle and Vancouver from
1/1/80 to 12/31/86. In defining the cases, they used the same
standard: the FBI's Unified Crime Report.
Results: during the seven-year study the annual rate of robbery in
Seattle was found to be only slightly higher than that in Vancouver
(1.09 / 1.11). Burglaries occurred at nearly identical rates (.99).
18,925 assaults were recorded in Seattle versus 12,034 in
Vancouver. The risk of being a victim of a simple assault in
Seattle was found to be only slightly higher than Vancouver (1.18 /
1.15) and the risk of aggravated assault was also slightly higher
(1.16 / 1.12). However, when aggravated assaults were subdivided by
weapon and the mechanism of assault, a clear pattern emerged.
Although both cities reported nearly identical rates of aggravated
assault involving knives and other dangerous weapons, firearms were
far more likely to be used in Seattle. In fact, 7.7 times as often.
Over the seven-year study, 388 homicides occurred in Seattle
(11.3 per 100,000) vs. 204 homicides in Vancouver (6.9 per 100,000).
After adjustment for differences in age and sex among the populations,
the relative risk of being a victim of homicide in Seattle, as
compared to Vancouver, was found to be 1.63.
When homicides were subdivided by the mechanism of death, the rate
of homicide by knives and other weapons (excluding firearms) in
Seattle was found to be almost identical to that in Vancouver.
Virtually ALL of the increased risk of death in Seattle was due to
a more than fivefold higher rate of homicide by firearms. Handguns
accounted for roughly 85% of homicides involving firearms. Handguns
were 4.8 times more likely to be used in homicides in Seattle than
in Vancouver.
The authors of the report also investigated "legally justifiable"
homicides (self-defense). Only 32 such homicides occurred during
the seven-year study, 11 of which were committed by police. Only
21 cases of civilians acting in self-defense occurrred: 17 in
Seattle and 4 in Vancouver. Only 13 involved firearms. After
excluding these cases, there was virtually no impact on these
earlier findings.
-------
This is, I feel, a very fair report. One might even make the
argument that it is biased against Canada as a whole because
Vancouver reports annual rates of homicide two to three times
that of Ottawa, Calgary and Toronto while Seattle reports
annual homicide rates only half to two-thirds that of NYC,
Chicago, Los Angeles and Houston.
Critics of handgun control always argue that limited legal access
to handguns will have little effect on the rates of homicide because
persons intent on killing others will only try harder to acquire a
gun or will kill by other means. This report shows differently.
If the rate of homicide in a community were influenced more by
the strength of intent than by the availability of weapons, we
could expect the rate of homicides by weapons other than guns to
be higher in Vancouver than in Seattle. However, during the study
interval, Vancouver's rate of homicide by weapons other than guns
was not significantly higher than that in Seattle, suggesting that
few would-be assailants switched to homicide by other methods.
As well, ready access to handguns for self-defense by law-abiding
citizens was not endorsed in this report. Although Seattle did
experience a higher rate of firearm death for self-defense, these
cases accounted for less than 4% of the homicides in both cities
during the course of the study period. And, as was reported,
Seattle apparently didn't enjoy relief from any crime category
over Vancouver because citizens may legally arm themselves for
self-defense.
Heavily quoted source: Handgun Regulation, Crime,
Assaults, and Homicide: A Tale of Two Cities.
John H. Sloan, Arthur L. Kellerman, Donald T. Reay,
James A. Ferris, Thomas Koepsall, Frederick P. Rivara,
Charles Rice, Laurel Gray and James LoGerfo | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.guns/53294 | 16 | talk_politics_guns_53294 | [('last', 'JJ'), ('year', 'NN'), ('the', 'DT'), ('us', 'PRP'), ('suffered', 'VBD'), ('almost', 'RB'), ('10', 'CD'), ('000', 'CD'), ('wrongful', 'NN'), ('or', 'CC'), ('accidental', 'JJ'), ('deaths', 'NNS'), ('by', 'IN'), ('handguns', 'NNS'), ('alone', 'RB'), ('fbi', 'VBP'), ('statistics', 'NNS'), (').', 'VBP'), ('in', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('year', 'NN'), ('the', 'DT'), ('uk', 'NN'), ('suffered', 'VBD'), ('35', 'CD'), ('such', 'JJ'), ('deaths', 'NNS'), ('scotland', 'VBP'), ('yard', 'RB'), ('statistics', 'NNS'), (').', 'VBP'), ('the', 'DT'), ('population', 'NN'), ('of', 'IN'), ('the', 'DT'), ('uk', 'NN'), ('is', 'VBZ'), ('about', 'IN'), ('that', 'DT'), ('of', 'IN'), ('the', 'DT'), ('us', 'PRP'), ('10', 'CD'), ('000', 'CD'), ('35', 'CD'), (')).', 'NN'), ('weighted', 'VBD'), ('for', 'IN'), ('population', 'NN'), ('the', 'DT'), ('us', 'PRP'), ('has', 'VBZ'), ('57x', 'CD'), ('as', 'IN'), ('many', 'JJ'), ('handgun', 'NN'), ('related', 'JJ'), ('deaths', 'NNS'), ('as', 'IN'), ('the', 'DT'), ('uk', 'NN'), ('and', 'CC'), ('no', 'DT'), ('the', 'DT'), ('brits', 'NNS'), ('don', 'NNS'), ('make', 'VBP'), ('up', 'RP'), ('for', 'IN'), ('this', 'DT'), ('by', 'IN'), ('murdering', 'VBG'), ('57x', 'CD'), ('as', 'IN'), ('many', 'JJ'), ('people', 'NNS'), ('with', 'IN'), ('baseball', 'NN'), ('bats', 'NNS'), ('you', 'PRP'), ('just', 'RB'), ('can', 'MD'), ('compare', 'VB'), ('this', 'DT'), ('way', 'NN'), ('all', 'DT'), ('homicides', 'NNS'), ('must', 'MD'), ('be', 'VB'), ('shown', 'VBN'), ('per', 'IN'), ('capita', 'NN'), ('not', 'RB'), ('just', 'RB'), ('handguns', 'VB'), ('the', 'DT'), ('availability', 'NN'), ('of', 'IN'), ('them', 'PRP'), ('in', 'IN'), ('the', 'DT'), ('usa', 'JJ'), ('makes', 'VBZ'), ('them', 'PRP'), ('the', 'DT'), ('preferred', 'JJ'), ('murder', 'NN'), ('weapon', 'NN'), ('but', 'CC'), ('ban', 'VBP'), ('them', 'PRP'), ('and', 'CC'), ('some', 'DT'), ('other', 'JJ'), ('weapon', 'NN'), ('will', 'MD'), ('step', 'VB'), ('in', 'IN'), ('as', 'IN'), ('the', 'DT'), ('favorite', 'NN'), ('as', 'IN'), ('favorite', 'JJ'), ('",', 'JJ'), ('sure', 'NN'), ('as', 'IN'), ('lethal', 'NN'), ('not', 'RB'), ('likely', 'JJ'), ('study', 'NN'), ('of', 'IN'), ('violence', 'NN'), ('in', 'IN'), ('chicago', 'NN'), ('produced', 'VBD'), ('this', 'DT'), ('table', 'JJ'), ('percentage', 'NN'), ('of', 'IN'), ('reported', 'VBN'), ('gun', 'NN'), ('and', 'CC'), ('knife', 'NN'), ('attacks', 'NNS'), ('resulting', 'VBG'), ('in', 'IN'), ('death', 'NN'), ('weapon', 'NN'), ('deaths', 'NNS'), ('as', 'IN'), ('percentage', 'NN'), ('of', 'IN'), ('attacks', 'NNS'), ('---------------------------------------------------------------', 'VBP'), ('knives', 'VBZ'), ('16', 'CD'), ('518', 'CD'), ('total', 'JJ'), ('attacks', 'NNS'), ('guns', 'VBD'), ('350', 'CD'), ('total', 'JJ'), ('attacks', 'NNS'), ('12', 'CD'), ('source', 'NN'), ('firearms', 'NNS'), ('and', 'CC'), ('violence', 'NN'), ('in', 'IN'), ('american', 'JJ'), ('life', 'NN'), ('it', 'PRP'), ('might', 'MD'), ('be', 'VB'), ('contended', 'VBN'), ('that', 'IN'), ('if', 'IN'), ('gun', 'JJ'), ('murderers', 'NNS'), ('were', 'VBD'), ('deprived', 'VBN'), ('of', 'IN'), ('guns', 'NNS'), ('that', 'IN'), ('they', 'PRP'), ('would', 'MD'), ('find', 'VB'), ('way', 'NN'), ('to', 'TO'), ('kill', 'VB'), ('as', 'RB'), ('often', 'RB'), ('with', 'IN'), ('knives', 'NNS'), ('if', 'IN'), ('this', 'DT'), ('were', 'VBD'), ('so', 'RB'), ('knife', 'JJ'), ('attacks', 'NNS'), ('in', 'IN'), ('cities', 'NNS'), ('where', 'WRB'), ('guns', 'NNS'), ('were', 'VBD'), ('widely', 'RB'), ('used', 'VBN'), ('in', 'IN'), ('homicide', 'NN'), ('would', 'MD'), ('be', 'VB'), ('expected', 'VBN'), ('to', 'TO'), ('show', 'VB'), ('low', 'JJ'), ('fatality', 'NN'), ('rate', 'NN'), ('and', 'CC'), ('knife', 'NN'), ('attacks', 'NNS'), ('in', 'IN'), ('cities', 'NNS'), ('where', 'WRB'), ('guns', 'NNS'), ('were', 'VBD'), ('not', 'RB'), ('so', 'RB'), ('widely', 'RB'), ('used', 'VBN'), ('like', 'IN'), ('vancouver', 'NN'), ('would', 'MD'), ('show', 'VB'), ('higher', 'JJR'), ('fatality', 'NN'), ('rate', 'NN'), ('but', 'CC'), ('the', 'DT'), ('nat', 'JJ'), ('commission', 'NN'), ('on', 'IN'), ('the', 'DT'), ('causes', 'NNS'), ('and', 'CC'), ('prevention', 'NN'), ('of', 'IN'), ('violence', 'NN'), ('task', 'NN'), ('force', 'NN'), ('analyzed', 'VBD'), ('the', 'DT'), ('data', 'NNS'), ('and', 'CC'), ('found', 'VBD'), ('this', 'DT'), ('not', 'RB'), ('to', 'TO'), ('be', 'VB'), ('the', 'DT'), ('case', 'NN'), ('it', 'PRP'), ('appeared', 'VBD'), ('to', 'TO'), ('them', 'PRP'), ('that', 'IN'), ('as', 'IN'), ('the', 'DT'), ('number', 'NN'), ('of', 'IN'), ('knife', 'JJ'), ('attacks', 'NNS'), ('increased', 'VBD'), ('in', 'IN'), ('relation', 'NN'), ('to', 'TO'), ('the', 'DT'), ('number', 'NN'), ('of', 'IN'), ('firearms', 'NNS'), ('attacks', 'NNS'), ('which', 'WDT'), ('presumably', 'RB'), ('happened', 'VBD'), ('where', 'WRB'), ('guns', 'NNS'), ('were', 'VBD'), ('less', 'RBR'), ('available', 'JJ'), ('to', 'TO'), ('assailants', 'NNS'), ('),', 'VB'), ('the', 'DT'), ('proportion', 'NN'), ('of', 'IN'), ('fatal', 'JJ'), ('knife', 'NN'), ('attacks', 'NNS'), ('did', 'VBD'), ('not', 'RB'), ('increase', 'VB'), ('relative', 'NN'), ('to', 'TO'), ('the', 'DT'), ('proportion', 'NN'), ('of', 'IN'), ('gun', 'NN'), ('attacks', 'NNS'), ('in', 'IN'), ('fact', 'NN'), ('the', 'DT'), ('reverse', 'NN'), ('was', 'VBD'), ('true', 'JJ'), ('what', 'WP'), ('was', 'VBD'), ('found', 'VBN'), ('was', 'VBD'), ('that', 'IN'), ('most', 'JJS'), ('homicides', 'NNS'), ('did', 'VBD'), ('not', 'RB'), ('show', 'VB'), ('determination', 'NN'), ('on', 'IN'), ('the', 'DT'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('assailant', 'NN'), ('to', 'TO'), ('kill', 'VB'), ('fatalities', 'NNS'), ('caused', 'VBN'), ('by', 'IN'), ('knife', 'NN'), ('tended', 'VBD'), ('to', 'TO'), ('show', 'VB'), ('single', 'JJ'), ('mindedness', 'NN'), ('on', 'IN'), ('the', 'DT'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('assailant', 'NN'), ('to', 'TO'), ('do', 'VB'), ('grave', 'VB'), ('physical', 'JJ'), ('injury', 'NN'), ('multiple', 'NN'), ('stabs', 'NN'), ('wounds', 'VBZ'), ('wounds', 'NNS'), ('concentrated', 'VBN'), ('about', 'IN'), ('the', 'DT'), ('head', 'NN'), ('neck', 'NN'), ('and', 'CC'), ('chest', 'JJS'), ('etc', 'NN'), ('most', 'RBS'), ('gun', 'JJ'), ('homicides', 'NNS'), ('did', 'VBD'), ('not', 'RB'), ('show', 'VB'), ('this', 'DT'), ('pattern', 'NN'), ('rather', 'RB'), ('more', 'RBR'), ('fatal', 'JJ'), ('attacks', 'NNS'), ('were', 'VBD'), ('committed', 'VBN'), ('during', 'IN'), ('moment', 'NN'), ('of', 'IN'), ('rage', 'NN'), ('and', 'CC'), ('not', 'RB'), ('the', 'DT'), ('focused', 'JJ'), ('intent', 'NN'), ('to', 'TO'), ('kill', 'VB'), ('the', 'DT'), ('victim', 'NN'), ('source', 'NN'), ('report', 'NN'), ('on', 'IN'), ('firearms', 'NNS'), ('and', 'CC'), ('violence', 'NN'), ('then', 'RB'), ('since', 'IN'), ('england', 'NN'), ('!=', 'NNP'), ('usa', 'JJ'), ('my', 'PRP$'), ('ancestors', 'NNS'), ('left', 'VBD'), ('because', 'IN'), ('of', 'IN'), ('the', 'DT'), ('oppression', 'NN'), ('you', 'PRP'), ('must', 'MD'), ('compare', 'VB'), ('england', 'NN'), ('before', 'IN'), ('strict', 'JJ'), ('gun', 'NN'), ('laws', 'NNS'), ('to', 'TO'), ('england', 'VB'), ('after', 'IN'), ('strict', 'JJ'), ('gun', 'NN'), ('laws', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('draw', 'VB'), ('any', 'DT'), ('meaning', 'NN'), ('at', 'IN'), ('all', 'DT'), ('england', 'NN'), ('has', 'VBZ'), ('essentially', 'RB'), ('legalized', 'VBN'), ('drugs', 'NNS'), ('so', 'IN'), ('there', 'EX'), ('are', 'VBP'), ('no', 'DT'), ('drug', 'NN'), ('gangs', 'NNS'), ('battling', 'VBG'), ('for', 'IN'), ('turf', 'NN'), ('etc', 'FW'), ('.,', 'NN'), ('there', 'RB'), ('if', 'IN'), ('you', 'PRP'), ('drop', 'VBP'), ('out', 'RP'), ('the', 'DT'), ('drug', 'NN'), ('related', 'VBN'), ('killings', 'NNS'), ('here', 'RB'), ('the', 'DT'), ('usa', 'NN'), ('would', 'MD'), ('look', 'VB'), ('whole', 'JJ'), ('lot', 'NN'), ('more', 'RBR'), ('peaceful', 'JJ'), ('there', 'EX'), ('are', 'VBP'), ('lot', 'NN'), ('of', 'IN'), ('factors', 'NNS'), ('which', 'WDT'), ('make', 'VBP'), ('difference', 'NN'), ('actually', 'RB'), ('not', 'RB'), ('fond', 'NN'), ('of', 'IN'), ('making', 'VBG'), ('any', 'DT'), ('kind', 'NN'), ('of', 'IN'), ('social', 'JJ'), ('parallels', 'NNS'), ('between', 'IN'), ('europeans', 'NNS'), ('and', 'CC'), ('americans', 'NNS'), ('there', 'EX'), ('are', 'VBP'), ('more', 'JJR'), ('cultural', 'JJ'), ('beahvioral', 'NN'), ('and', 'CC'), ('economic', 'JJ'), ('differences', 'NNS'), ('between', 'IN'), ('us', 'PRP'), ('than', 'IN'), ('similarities', 'NNS'), ('just', 'RB'), ('sort', 'NN'), ('of', 'IN'), ('found', 'VBN'), ('myself', 'PRP'), ('backed', 'VBD'), ('into', 'IN'), ('that', 'DT'), ('corner', 'NN'), ('over', 'IN'), ('the', 'DT'), ('last', 'JJ'), ('couple', 'NN'), ('of', 'IN'), ('weeks', 'NNS'), ('don', 'JJ'), ('think', 'VBP'), ('we', 'PRP'), ('could', 'MD'), ('ever', 'RB'), ('attain', 'VB'), ('the', 'DT'), ('low', 'JJ'), ('levels', 'NNS'), ('of', 'IN'), ('european', 'JJ'), ('violent', 'NN'), ('crime', 'NN'), ('here', 'RB'), ('in', 'IN'), ('the', 'DT'), ('us', 'PRP'), ('whether', 'IN'), ('we', 'PRP'), ('banned', 'VBD'), ('guns', 'NNS'), ('or', 'CC'), ('required', 'VBN'), ('every', 'DT'), ('law', 'NN'), ('abiding', 'VBG'), ('citizen', 'NNS'), ('to', 'TO'), ('carry', 'VB'), ('loaded', 'JJ'), ('uzi', 'NN'), ('on', 'IN'), ('the', 'DT'), ('other', 'JJ'), ('hand', 'NN'), ('we', 'PRP'), ('can', 'MD'), ('draw', 'VB'), ('lessons', 'NNS'), ('from', 'IN'), ('neighbors', 'NNS'), ('who', 'WP'), ('are', 'VBP'), ('more', 'RBR'), ('culturally', 'RB'), ('similar', 'JJ'), ('namely', 'RB'), ('the', 'DT'), ('canadians', 'NNS'), ('in', 'IN'), ('fact', 'NN'), ('an', 'DT'), ('exhaustive', 'JJ'), ('seven', 'CD'), ('year', 'NN'), ('study', 'NN'), ('has', 'VBZ'), ('already', 'RB'), ('been', 'VBN'), ('done', 'VBN'), ('of', 'IN'), ('the', 'DT'), ('respective', 'JJ'), ('crime', 'NN'), ('rates', 'NNS'), ('of', 'IN'), ('vancouver', 'JJ'), ('british', 'JJ'), ('columbia', 'NN'), ('and', 'CC'), ('seattle', 'JJ'), ('washington', 'NN'), ('...', ':'), ('cities', 'NNS'), ('with', 'IN'), ('roughly', 'RB'), ('the', 'DT'), ('same', 'JJ'), ('population', 'NN'), ('urban', 'JJ'), ('economy', 'NN'), ('geography', 'NN'), ('and', 'CC'), ('crime', 'NN'), ('but', 'CC'), ('with', 'IN'), ('decidedly', 'RB'), ('different', 'JJ'), ('approaches', 'NNS'), ('to', 'TO'), ('gun', 'VB'), ('control', 'NN'), ('in', 'IN'), ('seattle', 'JJ'), ('handguns', 'NNS'), ('may', 'MD'), ('be', 'VB'), ('purchased', 'VBN'), ('legally', 'RB'), ('for', 'IN'), ('self', 'NN'), ('defense', 'NN'), ('after', 'IN'), ('30', 'CD'), ('day', 'NN'), ('waiting', 'VBG'), ('period', 'NN'), ('permit', 'NN'), ('can', 'MD'), ('be', 'VB'), ('obtained', 'VBN'), ('to', 'TO'), ('carry', 'VB'), ('concealed', 'VBN'), ('weapon', 'IN'), ('the', 'DT'), ('recreational', 'JJ'), ('use', 'NN'), ('of', 'IN'), ('handguns', 'NN'), ('is', 'VBZ'), ('minimally', 'RB'), ('restricted', 'VBN'), ('in', 'IN'), ('vancouver', 'NN'), ('self', 'NN'), ('defense', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('considered', 'VBN'), ('valid', 'JJ'), ('or', 'CC'), ('legal', 'JJ'), ('reason', 'NN'), ('to', 'TO'), ('purchase', 'VB'), ('handgun', 'NN'), ('concealed', 'VBN'), ('weapons', 'NNS'), ('are', 'VBP'), ('not', 'RB'), ('permitted', 'VBN'), ('recreational', 'JJ'), ('uses', 'NNS'), ('of', 'IN'), ('handguns', 'NNS'), ('target', 'VBP'), ('shooting', 'VBG'), ('collecting', 'VBG'), ('are', 'VBP'), ('regulated', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('province', 'NN'), ('purchase', 'NN'), ('of', 'IN'), ('handgun', 'NN'), ('requires', 'VBZ'), ('restricted', 'JJ'), ('weapons', 'NNS'), ('permit', 'VBP'), ('permit', 'NN'), ('to', 'TO'), ('carry', 'VB'), ('may', 'MD'), ('be', 'VB'), ('obtained', 'VBN'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('transport', 'VB'), ('the', 'DT'), ('weapon', 'NN'), ('to', 'TO'), ('licensed', 'VBN'), ('shooting', 'VBG'), ('clubs', 'NNS'), ('handguns', 'NNS'), ('transported', 'VBN'), ('by', 'IN'), ('vehicle', 'NN'), ('must', 'MD'), ('be', 'VB'), ('stored', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('trunk', 'NN'), ('in', 'IN'), ('locked', 'JJ'), ('box', 'NN'), ('in', 'IN'), ('short', 'JJ'), ('gun', 'NN'), ('control', 'NN'), ('but', 'CC'), ('not', 'RB'), ('unreasonably', 'RB'), ('so', 'IN'), ('both', 'CC'), ('cities', 'NNS'), ('aggressively', 'RB'), ('enforce', 'VBP'), ('their', 'PRP$'), ('gun', 'NN'), ('laws', 'NNS'), ('convictions', 'NNS'), ('for', 'IN'), ('gun', 'NN'), ('related', 'VBN'), ('offenses', 'NNS'), ('carry', 'VBP'), ('similar', 'JJ'), ('penalties', 'NNS'), ('the', 'DT'), ('researchers', 'NNS'), ('studied', 'VBD'), ('all', 'DT'), ('cases', 'NNS'), ('of', 'IN'), ('robbery', 'NN'), ('assault', 'NN'), ('simple', 'NN'), ('and', 'CC'), ('aggravated', 'VBD'), ('),', 'NNP'), ('burglary', 'NN'), ('and', 'CC'), ('homicides', 'NNS'), ('occurring', 'VBG'), ('in', 'IN'), ('seattle', 'NN'), ('and', 'CC'), ('vancouver', 'NN'), ('from', 'IN'), ('80', 'CD'), ('to', 'TO'), ('12', 'CD'), ('31', 'CD'), ('86', 'CD'), ('in', 'IN'), ('defining', 'VBG'), ('the', 'DT'), ('cases', 'NNS'), ('they', 'PRP'), ('used', 'VBD'), ('the', 'DT'), ('same', 'JJ'), ('standard', 'NN'), ('the', 'DT'), ('fbi', 'NN'), ('unified', 'VBD'), ('crime', 'NN'), ('report', 'NN'), ('results', 'NNS'), ('during', 'IN'), ('the', 'DT'), ('seven', 'CD'), ('year', 'NN'), ('study', 'VBD'), ('the', 'DT'), ('annual', 'JJ'), ('rate', 'NN'), ('of', 'IN'), ('robbery', 'NN'), ('in', 'IN'), ('seattle', 'NN'), ('was', 'VBD'), ('found', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('only', 'RB'), ('slightly', 'RB'), ('higher', 'JJR'), ('than', 'IN'), ('that', 'DT'), ('in', 'IN'), ('vancouver', 'RB'), ('09', 'CD'), ('11', 'CD'), (').', 'NN'), ('burglaries', 'NNS'), ('occurred', 'VBD'), ('at', 'IN'), ('nearly', 'RB'), ('identical', 'JJ'), ('rates', 'NNS'), ('(.', 'VBP'), ('99', 'CD'), (').', 'JJ'), ('18', 'CD'), ('925', 'CD'), ('assaults', 'NNS'), ('were', 'VBD'), ('recorded', 'VBN'), ('in', 'IN'), ('seattle', 'JJ'), ('versus', 'NN'), ('12', 'CD'), ('034', 'CD'), ('in', 'IN'), ('vancouver', 'NN'), ('the', 'DT'), ('risk', 'NN'), ('of', 'IN'), ('being', 'VBG'), ('victim', 'NN'), ('of', 'IN'), ('simple', 'JJ'), ('assault', 'NN'), ('in', 'IN'), ('seattle', 'NN'), ('was', 'VBD'), ('found', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('only', 'RB'), ('slightly', 'RB'), ('higher', 'JJR'), ('than', 'IN'), ('vancouver', 'RB'), ('18', 'CD'), ('15', 'CD'), ('and', 'CC'), ('the', 'DT'), ('risk', 'NN'), ('of', 'IN'), ('aggravated', 'JJ'), ('assault', 'NN'), ('was', 'VBD'), ('also', 'RB'), ('slightly', 'RB'), ('higher', 'JJR'), ('16', 'CD'), ('12', 'CD'), (').', 'NNS'), ('however', 'RB'), ('when', 'WRB'), ('aggravated', 'VBN'), ('assaults', 'NNS'), ('were', 'VBD'), ('subdivided', 'VBN'), ('by', 'IN'), ('weapon', 'NN'), ('and', 'CC'), ('the', 'DT'), ('mechanism', 'NN'), ('of', 'IN'), ('assault', 'NN'), ('clear', 'JJ'), ('pattern', 'NN'), ('emerged', 'VBN'), ('although', 'IN'), ('both', 'DT'), ('cities', 'NNS'), ('reported', 'VBD'), ('nearly', 'RB'), ('identical', 'JJ'), ('rates', 'NNS'), ('of', 'IN'), ('aggravated', 'JJ'), ('assault', 'NN'), ('involving', 'VBG'), ('knives', 'NNS'), ('and', 'CC'), ('other', 'JJ'), ('dangerous', 'JJ'), ('weapons', 'NNS'), ('firearms', 'NNS'), ('were', 'VBD'), ('far', 'RB'), ('more', 'RBR'), ('likely', 'JJ'), ('to', 'TO'), ('be', 'VB'), ('used', 'VBN'), ('in', 'IN'), ('seattle', 'NN'), ('in', 'IN'), ('fact', 'NN'), ('times', 'NNS'), ('as', 'RB'), ('often', 'RB'), ('over', 'IN'), ('the', 'DT'), ('seven', 'CD'), ('year', 'NN'), ('study', 'NN'), ('388', 'CD'), ('homicides', 'NNS'), ('occurred', 'VBD'), ('in', 'IN'), ('seattle', 'JJ'), ('11', 'CD'), ('per', 'IN'), ('100', 'CD'), ('000', 'CD'), ('vs', 'NN'), ('204', 'CD'), ('homicides', 'NNS'), ('in', 'IN'), ('vancouver', 'NN'), ('per', 'IN'), ('100', 'CD'), ('000', 'CD'), (').', 'NN'), ('after', 'IN'), ('adjustment', 'NN'), ('for', 'IN'), ('differences', 'NNS'), ('in', 'IN'), ('age', 'NN'), ('and', 'CC'), ('sex', 'NN'), ('among', 'IN'), ('the', 'DT'), ('populations', 'NNS'), ('the', 'DT'), ('relative', 'JJ'), ('risk', 'NN'), ('of', 'IN'), ('being', 'VBG'), ('victim', 'NN'), ('of', 'IN'), ('homicide', 'NN'), ('in', 'IN'), ('seattle', 'NN'), ('as', 'IN'), ('compared', 'VBN'), ('to', 'TO'), ('vancouver', 'VB'), ('was', 'VBD'), ('found', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('63', 'CD'), ('when', 'WRB'), ('homicides', 'NNS'), ('were', 'VBD'), ('subdivided', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('mechanism', 'NN'), ('of', 'IN'), ('death', 'NN'), ('the', 'DT'), ('rate', 'NN'), ('of', 'IN'), ('homicide', 'NN'), ('by', 'IN'), ('knives', 'NNS'), ('and', 'CC'), ('other', 'JJ'), ('weapons', 'NNS'), ('excluding', 'VBG'), ('firearms', 'NNS'), ('in', 'IN'), ('seattle', 'NN'), ('was', 'VBD'), ('found', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('almost', 'RB'), ('identical', 'JJ'), ('to', 'TO'), ('that', 'DT'), ('in', 'IN'), ('vancouver', 'NN'), ('virtually', 'RB'), ('all', 'DT'), ('of', 'IN'), ('the', 'DT'), ('increased', 'VBN'), ('risk', 'NN'), ('of', 'IN'), ('death', 'NN'), ('in', 'IN'), ('seattle', 'NN'), ('was', 'VBD'), ('due', 'JJ'), ('to', 'TO'), ('more', 'JJR'), ('than', 'IN'), ('fivefold', 'RB'), ('higher', 'JJR'), ('rate', 'NN'), ('of', 'IN'), ('homicide', 'NN'), ('by', 'IN'), ('firearms', 'NNS'), ('handguns', 'NNS'), ('accounted', 'VBD'), ('for', 'IN'), ('roughly', 'RB'), ('85', 'CD'), ('of', 'IN'), ('homicides', 'NNS'), ('involving', 'VBG'), ('firearms', 'NNS'), ('handguns', 'NNS'), ('were', 'VBD'), ('times', 'NNS'), ('more', 'RBR'), ('likely', 'JJ'), ('to', 'TO'), ('be', 'VB'), ('used', 'VBN'), ('in', 'IN'), ('homicides', 'NNS'), ('in', 'IN'), ('seattle', 'NN'), ('than', 'IN'), ('in', 'IN'), ('vancouver', 'NN'), ('the', 'DT'), ('authors', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('report', 'NN'), ('also', 'RB'), ('investigated', 'VBN'), ('legally', 'RB'), ('justifiable', 'JJ'), ('homicides', 'NNS'), ('self', 'VBP'), ('defense', 'NN'), (').', 'NN'), ('only', 'RB'), ('32', 'CD'), ('such', 'JJ'), ('homicides', 'NNS'), ('occurred', 'VBD'), ('during', 'IN'), ('the', 'DT'), ('seven', 'CD'), ('year', 'NN'), ('study', 'VBD'), ('11', 'CD'), ('of', 'IN'), ('which', 'WDT'), ('were', 'VBD'), ('committed', 'VBN'), ('by', 'IN'), ('police', 'NNS'), ('only', 'RB'), ('21', 'CD'), ('cases', 'NNS'), ('of', 'IN'), ('civilians', 'NNS'), ('acting', 'VBG'), ('in', 'IN'), ('self', 'NN'), ('defense', 'NN'), ('occurrred', 'VBD'), ('17', 'CD'), ('in', 'IN'), ('seattle', 'NN'), ('and', 'CC'), ('in', 'IN'), ('vancouver', 'NN'), ('only', 'RB'), ('13', 'CD'), ('involved', 'VBD'), ('firearms', 'NNS'), ('after', 'IN'), ('excluding', 'VBG'), ('these', 'DT'), ('cases', 'NNS'), ('there', 'RB'), ('was', 'VBD'), ('virtually', 'RB'), ('no', 'DT'), ('impact', 'NN'), ('on', 'IN'), ('these', 'DT'), ('earlier', 'JJR'), ('findings', 'NNS'), ('-------', 'RBR'), ('this', 'DT'), ('is', 'VBZ'), ('feel', 'JJ'), ('very', 'RB'), ('fair', 'JJ'), ('report', 'NN'), ('one', 'NN'), ('might', 'MD'), ('even', 'RB'), ('make', 'VB'), ('the', 'DT'), ('argument', 'NN'), ('that', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('biased', 'VBN'), ('against', 'IN'), ('canada', 'NN'), ('as', 'IN'), ('whole', 'JJ'), ('because', 'IN'), ('vancouver', 'NN'), ('reports', 'NNS'), ('annual', 'JJ'), ('rates', 'NNS'), ('of', 'IN'), ('homicide', 'JJ'), ('two', 'CD'), ('to', 'TO'), ('three', 'CD'), ('times', 'NNS'), ('that', 'IN'), ('of', 'IN'), ('ottawa', 'JJ'), ('calgary', 'JJ'), ('and', 'CC'), ('toronto', 'NN'), ('while', 'IN'), ('seattle', 'JJ'), ('reports', 'NNS'), ('annual', 'JJ'), ('homicide', 'NN'), ('rates', 'NNS'), ('only', 'RB'), ('half', 'RB'), ('to', 'TO'), ('two', 'CD'), ('thirds', 'NNS'), ('that', 'IN'), ('of', 'IN'), ('nyc', 'JJ'), ('chicago', 'NNS'), ('los', 'VBD'), ('angeles', 'NNS'), ('and', 'CC'), ('houston', 'NN'), ('critics', 'NNS'), ('of', 'IN'), ('handgun', 'NN'), ('control', 'NN'), ('always', 'RB'), ('argue', 'VBP'), ('that', 'IN'), ('limited', 'JJ'), ('legal', 'JJ'), ('access', 'NN'), ('to', 'TO'), ('handguns', 'VB'), ('will', 'MD'), ('have', 'VB'), ('little', 'JJ'), ('effect', 'NN'), ('on', 'IN'), ('the', 'DT'), ('rates', 'NNS'), ('of', 'IN'), ('homicide', 'NN'), ('because', 'IN'), ('persons', 'NNS'), ('intent', 'NN'), ('on', 'IN'), ('killing', 'VBG'), ('others', 'NNS'), ('will', 'MD'), ('only', 'RB'), ('try', 'VB'), ('harder', 'JJR'), ('to', 'TO'), ('acquire', 'VB'), ('gun', 'NN'), ('or', 'CC'), ('will', 'MD'), ('kill', 'VB'), ('by', 'IN'), ('other', 'JJ'), ('means', 'NNS'), ('this', 'DT'), ('report', 'NN'), ('shows', 'VBZ'), ('differently', 'RB'), ('if', 'IN'), ('the', 'DT'), ('rate', 'NN'), ('of', 'IN'), ('homicide', 'NN'), ('in', 'IN'), ('community', 'NN'), ('were', 'VBD'), ('influenced', 'VBN'), ('more', 'JJR'), ('by', 'IN'), ('the', 'DT'), ('strength', 'NN'), ('of', 'IN'), ('intent', 'NN'), ('than', 'IN'), ('by', 'IN'), ('the', 'DT'), ('availability', 'NN'), ('of', 'IN'), ('weapons', 'NNS'), ('we', 'PRP'), ('could', 'MD'), ('expect', 'VB'), ('the', 'DT'), ('rate', 'NN'), ('of', 'IN'), ('homicides', 'NNS'), ('by', 'IN'), ('weapons', 'NNS'), ('other', 'JJ'), ('than', 'IN'), ('guns', 'NNS'), ('to', 'TO'), ('be', 'VB'), ('higher', 'JJR'), ('in', 'IN'), ('vancouver', 'NN'), ('than', 'IN'), ('in', 'IN'), ('seattle', 'JJ'), ('however', 'RB'), ('during', 'IN'), ('the', 'DT'), ('study', 'NN'), ('interval', 'JJ'), ('vancouver', 'NN'), ('rate', 'NN'), ('of', 'IN'), ('homicide', 'NN'), ('by', 'IN'), ('weapons', 'NNS'), ('other', 'JJ'), ('than', 'IN'), ('guns', 'NNS'), ('was', 'VBD'), ('not', 'RB'), ('significantly', 'RB'), ('higher', 'JJR'), ('than', 'IN'), ('that', 'DT'), ('in', 'IN'), ('seattle', 'JJ'), ('suggesting', 'NN'), ('that', 'IN'), ('few', 'JJ'), ('would', 'MD'), ('be', 'VB'), ('assailants', 'NNS'), ('switched', 'VBN'), ('to', 'TO'), ('homicide', 'VB'), ('by', 'IN'), ('other', 'JJ'), ('methods', 'NNS'), ('as', 'IN'), ('well', 'RB'), ('ready', 'JJ'), ('access', 'NN'), ('to', 'TO'), ('handguns', 'VB'), ('for', 'IN'), ('self', 'NN'), ('defense', 'NN'), ('by', 'IN'), ('law', 'NN'), ('abiding', 'VBG'), ('citizens', 'NNS'), ('was', 'VBD'), ('not', 'RB'), ('endorsed', 'VBN'), ('in', 'IN'), ('this', 'DT'), ('report', 'NN'), ('although', 'IN'), ('seattle', 'JJ'), ('did', 'VBD'), ('experience', 'VB'), ('higher', 'JJR'), ('rate', 'NN'), ('of', 'IN'), ('firearm', 'NN'), ('death', 'NN'), ('for', 'IN'), ('self', 'NN'), ('defense', 'NN'), ('these', 'DT'), ('cases', 'NNS'), ('accounted', 'VBD'), ('for', 'IN'), ('less', 'JJR'), ('than', 'IN'), ('of', 'IN'), ('the', 'DT'), ('homicides', 'NNS'), ('in', 'IN'), ('both', 'DT'), ('cities', 'NNS'), ('during', 'IN'), ('the', 'DT'), ('course', 'NN'), ('of', 'IN'), ('the', 'DT'), ('study', 'NN'), ('period', 'NN'), ('and', 'CC'), ('as', 'IN'), ('was', 'VBD'), ('reported', 'VBN'), ('seattle', 'RB'), ('apparently', 'RB'), ('didn', 'JJ'), ('enjoy', 'JJ'), ('relief', 'NN'), ('from', 'IN'), ('any', 'DT'), ('crime', 'NN'), ('category', 'NN'), ('over', 'IN'), ('vancouver', 'NN'), ('because', 'IN'), ('citizens', 'NNS'), ('may', 'MD'), ('legally', 'RB'), ('arm', 'VB'), ('themselves', 'PRP'), ('for', 'IN'), ('self', 'NN'), ('defense', 'NN'), ('heavily', 'RB'), ('quoted', 'VBN'), ('source', 'NN'), ('handgun', 'NN'), ('regulation', 'NN'), ('crime', 'NN'), ('assaults', 'NNS'), ('and', 'CC'), ('homicide', 'JJ'), ('tale', 'NN'), ('of', 'IN'), ('two', 'CD'), ('cities', 'NNS'), ('john', 'VBP'), ('sloan', 'NN'), ('arthur', 'NN'), ('kellerman', 'NN'), ('donald', 'VBZ'), ('reay', 'JJ'), ('james', 'NNS'), ('ferris', 'VBP'), ('thomas', 'JJ'), ('koepsall', 'NN'), ('frederick', 'NN'), ('rivara', 'NN'), ('charles', 'NNS'), ('rice', 'VBP'), ('laurel', 'JJ'), ('gray', 'JJ'), ('and', 'CC'), ('james', 'NNS'), ('logerfo', 'VBP')] | ['last', 'year', 'u', 'suffer', 'almost', 'wrongful', 'accidental', 'death', 'handgun', 'alone', 'fbi', 'statistic', 'year', 'uk', 'suffer', 'death', 'scotland', 'yard', 'statistic', 'population', 'uk', 'u', 'weight', 'population', 'u', 'many', 'handgun', 'related', 'death', 'uk', 'brit', 'make', 'murder', 'many', 'people', 'baseball', 'bat', 'compare', 'way', 'homicide', 'must', 'show', 'per', 'caput', 'handguns', 'availability', 'usa', 'make', 'preferred', 'murder', 'weapon', 'ban', 'weapon', 'step', 'favorite', 'favorite', 'sure', 'lethal', 'likely', 'study', 'violence', 'chicago', 'produce', 'table', 'percentage', 'report', 'gun', 'knife', 'attack', 'result', 'death', 'weapon', 'death', 'percentage', 'attack', 'knives', 'total', 'attack', 'gun', 'total', 'attack', 'source', 'firearm', 'violence', 'american', 'life', 'might', 'contend', 'gun', 'murderer', 'deprive', 'gun', 'would', 'find', 'way', 'kill', 'often', 'knife', 'knife', 'attack', 'city', 'gun', 'widely', 'use', 'homicide', 'would', 'expect', 'show', 'low', 'fatality', 'rate', 'knife', 'attack', 'city', 'gun', 'widely', 'use', 'like', 'vancouver', 'would', 'show', 'high', 'fatality', 'rate', 'nat', 'commission', 'cause', 'prevention', 'violence', 'task', 'force', 'analyze', 'data', 'find', 'case', 'appear', 'number', 'knife', 'attack', 'increase', 'relation', 'number', 'firearm', 'attack', 'presumably', 'happen', 'gun', 'less', 'available', 'assailant', 'proportion', 'fatal', 'knife', 'attack', 'increase', 'relative', 'proportion', 'gun', 'attack', 'fact', 'reverse', 'true', 'find', 'homicide', 'show', 'determination', 'part', 'assailant', 'kill', 'fatality', 'cause', 'knife', 'tend', 'show', 'single', 'mindedness', 'part', 'assailant', 'grave', 'physical', 'injury', 'multiple', 'stab', 'wound', 'wound', 'concentrate', 'head', 'neck', 'chest', 'etc', 'gun', 'homicide', 'show', 'pattern', 'rather', 'fatal', 'attack', 'commit', 'moment', 'rage', 'focused', 'intent', 'kill', 'victim', 'source', 'report', 'firearm', 'violence', 'since', 'england', 'usa', 'ancestor', 'leave', 'oppression', 'must', 'compare', 'england', 'strict', 'gun', 'law', 'england', 'strict', 'gun', 'law', 'able', 'draw', 'meaning', 'england', 'essentially', 'legalize', 'drug', 'drug', 'gang', 'battle', 'turf', 'etc', 'drop', 'drug', 'relate', 'killing', 'usa', 'would', 'look', 'whole', 'lot', 'peaceful', 'lot', 'factor', 'make', 'difference', 'actually', 'fond', 'make', 'kind', 'social', 'parallel', 'european', 'american', 'cultural', 'beahvioral', 'economic', 'difference', 'u', 'similarity', 'sort', 'find', 'back', 'corner', 'last', 'couple', 'week', 'think', 'could', 'ever', 'attain', 'low', 'level', 'european', 'violent', 'crime', 'u', 'whether', 'ban', 'gun', 'require', 'every', 'law', 'abide', 'citizen', 'carry', 'loaded', 'uzi', 'hand', 'draw', 'lesson', 'neighbor', 'culturally', 'similar', 'namely', 'canadian', 'fact', 'exhaustive', 'seven', 'year', 'study', 'already', 'respective', 'crime', 'rate', 'vancouver', 'british', 'columbia', 'seattle', 'washington', 'city', 'roughly', 'population', 'urban', 'economy', 'geography', 'crime', 'decidedly', 'different', 'approach', 'gun', 'control', 'seattle', 'handgun', 'may', 'purchase', 'legally', 'self', 'defense', 'day', 'wait', 'period', 'permit', 'obtain', 'carry', 'conceal', 'weapon', 'recreational', 'use', 'handgun', 'minimally', 'restrict', 'vancouver', 'self', 'defense', 'consider', 'valid', 'legal', 'reason', 'purchase', 'handgun', 'conceal', 'weapon', 'permit', 'recreational', 'us', 'handgun', 'target', 'shoot', 'collect', 'regulate', 'province', 'purchase', 'handgun', 'require', 'restricted', 'weapon', 'permit', 'permit', 'carry', 'may', 'obtain', 'order', 'transport', 'weapon', 'license', 'shoot', 'club', 'handgun', 'transport', 'vehicle', 'must', 'store', 'trunk', 'locked', 'box', 'short', 'gun', 'control', 'unreasonably', 'city', 'aggressively', 'enforce', 'gun', 'law', 'conviction', 'gun', 'relate', 'offense', 'carry', 'similar', 'penalty', 'researcher', 'study', 'case', 'robbery', 'assault', 'simple', 'aggravate', 'burglary', 'homicide', 'occur', 'seattle', 'vancouver', 'define', 'case', 'use', 'standard', 'fbi', 'unify', 'crime', 'report', 'result', 'seven', 'year', 'study', 'annual', 'rate', 'robbery', 'seattle', 'find', 'slightly', 'high', 'vancouver', 'burglary', 'occur', 'nearly', 'identical', 'rate', 'assault', 'record', 'seattle', 'versus', 'vancouver', 'risk', 'victim', 'simple', 'assault', 'seattle', 'find', 'slightly', 'high', 'vancouver', 'risk', 'aggravated', 'assault', 'also', 'slightly', 'high', 'however', 'aggravate', 'assault', 'subdivide', 'weapon', 'mechanism', 'assault', 'clear', 'pattern', 'emerge', 'although', 'city', 'report', 'nearly', 'identical', 'rate', 'aggravated', 'assault', 'involve', 'knife', 'dangerous', 'weapon', 'firearm', 'far', 'likely', 'use', 'seattle', 'fact', 'time', 'often', 'seven', 'year', 'study', 'homicide', 'occur', 'seattle', 'per', 'v', 'homicide', 'vancouver', 'per', 'adjustment', 'difference', 'age', 'sex', 'among', 'population', 'relative', 'risk', 'victim', 'homicide', 'seattle', 'compare', 'vancouver', 'find', 'homicide', 'subdivide', 'mechanism', 'death', 'rate', 'homicide', 'knife', 'weapon', 'exclude', 'firearm', 'seattle', 'find', 'almost', 'identical', 'vancouver', 'virtually', 'increase', 'risk', 'death', 'seattle', 'due', 'fivefold', 'high', 'rate', 'homicide', 'firearm', 'handgun', 'account', 'roughly', 'homicide', 'involve', 'firearm', 'handgun', 'time', 'likely', 'use', 'homicide', 'seattle', 'vancouver', 'author', 'report', 'also', 'investigate', 'legally', 'justifiable', 'homicide', 'self', 'defense', 'homicide', 'occur', 'seven', 'year', 'study', 'commit', 'police', 'case', 'civilian', 'act', 'self', 'defense', 'occurrred', 'seattle', 'vancouver', 'involve', 'firearm', 'exclude', 'case', 'virtually', 'impact', 'early', 'finding', 'feel', 'fair', 'report', 'one', 'might', 'even', 'make', 'argument', 'bias', 'canada', 'whole', 'vancouver', 'report', 'annual', 'rate', 'homicide', 'two', 'three', 'time', 'ottawa', 'calgary', 'toronto', 'seattle', 'report', 'annual', 'homicide', 'rate', 'half', 'two', 'third', 'nyc', 'chicago', 'los', 'angeles', 'houston', 'critic', 'handgun', 'control', 'always', 'argue', 'limited', 'legal', 'access', 'handguns', 'little', 'effect', 'rate', 'homicide', 'person', 'intent', 'kill', 'others', 'try', 'hard', 'acquire', 'gun', 'kill', 'mean', 'report', 'show', 'differently', 'rate', 'homicide', 'community', 'influence', 'strength', 'intent', 'availability', 'weapon', 'could', 'expect', 'rate', 'homicide', 'weapon', 'gun', 'high', 'vancouver', 'seattle', 'however', 'study', 'interval', 'vancouver', 'rate', 'homicide', 'weapon', 'gun', 'significantly', 'high', 'seattle', 'suggesting', 'would', 'assailant', 'switch', 'homicide', 'method', 'well', 'ready', 'access', 'handguns', 'self', 'defense', 'law', 'abide', 'citizen', 'endorse', 'report', 'although', 'seattle', 'experience', 'high', 'rate', 'firearm', 'death', 'self', 'defense', 'case', 'account', 'less', 'homicide', 'city', 'course', 'study', 'period', 'report', 'seattle', 'apparently', 'enjoy', 'relief', 'crime', 'category', 'vancouver', 'citizen', 'may', 'legally', 'arm', 'self', 'defense', 'heavily', 'quote', 'source', 'handgun', 'regulation', 'crime', 'assault', 'homicide', 'tale', 'two', 'city', 'john', 'sloan', 'arthur', 'kellerman', 'donald', 'reay', 'james', 'ferris', 'thomas', 'koepsall', 'frederick', 'rivara', 'charles', 'rice', 'laurel', 'gray', 'james', 'logerfo'] | ['last_year', 'year_u', 'accidental_death', 'u_many', 'many_people', 'baseball_bat', 'per_caput', 'weapon_ban', 'knife_attack', 'result_death', 'gun_would', 'would_find', 'find_way', 'knife_attack', 'widely_use', 'would_expect', 'show_low', 'knife_attack', 'widely_use', 'use_like', 'would_show', 'task_force', 'data_find', 'find_case', 'knife_attack', 'gun_less', 'knife_attack', 'gun_homicide', 'strict_gun', 'gun_law', 'strict_gun', 'gun_law', 'would_look', 'whole_lot', 'make_difference', 'make_kind', 'last_couple', 'couple_week', 'week_think', 'think_could', 'could_ever', 'low_level', 'violent_crime', 'u_whether', 'law_abide', 'abide_citizen', 'seven_year', 'year_study', 'crime_rate', 'vancouver_british', 'british_columbia', 'gun_control', 'self_defense', 'day_wait', 'wait_period', 'carry_conceal', 'conceal_weapon', 'self_defense', 'purchase_handgun', 'conceal_weapon', 'weapon_permit', 'purchase_handgun', 'weapon_permit', 'permit_carry', 'may_obtain', 'gun_control', 'gun_law', 'seattle_vancouver', 'case_use', 'use_standard', 'crime_report', 'seven_year', 'year_study', 'slightly_high', 'slightly_high', 'aggravated_assault', 'slightly_high', 'aggravated_assault', 'far_likely', 'likely_use', 'seven_year', 'year_study', 'death_rate', 'rate_homicide', 'almost_identical', 'increase_risk', 'high_rate', 'rate_homicide', 'firearm_handgun', 'firearm_handgun', 'time_likely', 'likely_use', 'seattle_vancouver', 'self_defense', 'seven_year', 'year_study', 'self_defense', 'seattle_vancouver', 'one_might', 'might_even', 'even_make', 'make_argument', 'rate_homicide', 'two_three', 'three_time', 'homicide_rate', 'two_third', 'los_angeles', 'handgun_control', 'rate_homicide', 'kill_others', 'try_hard', 'rate_homicide', 'weapon_could', 'could_expect', 'rate_homicide', 'rate_homicide', 'significantly_high', 'self_defense', 'law_abide', 'abide_citizen', 'high_rate', 'self_defense', 'arm_self', 'self_defense', 'quote_source', 'handgun_regulation', 'regulation_crime', 'crime_assault', 'assault_homicide', 'homicide_tale', 'tale_two', 'two_city', 'john_sloan'] | talk_politics_guns_53294 |@lemmatized last:2 year:6 u:5 suffer:2 almost:2 wrongful:1 accidental:1 death:8 handgun:12 alone:1 fbi:2 statistic:2 uk:3 scotland:1 yard:1 population:4 weight:1 many:2 related:1 brit:1 make:5 murder:2 people:1 baseball:1 bat:1 compare:3 way:2 homicide:24 must:3 show:7 per:3 caput:1 handguns:3 availability:2 usa:3 preferred:1 weapon:13 ban:2 step:1 favorite:2 sure:1 lethal:1 likely:3 study:8 violence:4 chicago:2 produce:1 table:1 percentage:2 report:11 gun:19 knife:9 attack:11 result:2 knives:1 total:2 source:3 firearm:9 american:2 life:1 might:2 contend:1 murderer:1 deprive:1 would:5 find:8 kill:5 often:2 city:7 widely:2 use:6 expect:2 low:2 fatality:3 rate:15 like:1 vancouver:16 high:8 nat:1 commission:1 cause:2 prevention:1 task:1 force:1 analyze:1 data:1 case:6 appear:1 number:2 increase:3 relation:1 presumably:1 happen:1 less:2 available:1 assailant:4 proportion:2 fatal:2 relative:2 fact:3 reverse:1 true:1 determination:1 part:2 tend:1 single:1 mindedness:1 grave:1 physical:1 injury:1 multiple:1 stab:1 wound:2 concentrate:1 head:1 neck:1 chest:1 etc:2 pattern:2 rather:1 commit:2 moment:1 rage:1 focused:1 intent:3 victim:3 since:1 england:4 ancestor:1 leave:1 oppression:1 strict:2 law:5 able:1 draw:2 meaning:1 essentially:1 legalize:1 drug:3 gang:1 battle:1 turf:1 drop:1 relate:2 killing:1 look:1 whole:2 lot:2 peaceful:1 factor:1 difference:3 actually:1 fond:1 kind:1 social:1 parallel:1 european:2 cultural:1 beahvioral:1 economic:1 similarity:1 sort:1 back:1 corner:1 couple:1 week:1 think:1 could:2 ever:1 attain:1 level:1 violent:1 crime:6 whether:1 require:2 every:1 abide:2 citizen:3 carry:4 loaded:1 uzi:1 hand:1 lesson:1 neighbor:1 culturally:1 similar:2 namely:1 canadian:1 exhaustive:1 seven:4 already:1 respective:1 british:1 columbia:1 seattle:18 washington:1 roughly:2 urban:1 economy:1 geography:1 decidedly:1 different:1 approach:1 control:3 may:3 purchase:3 legally:3 self:7 defense:7 day:1 wait:1 period:2 permit:4 obtain:2 conceal:2 recreational:2 minimally:1 restrict:1 consider:1 valid:1 legal:2 reason:1 us:1 target:1 shoot:2 collect:1 regulate:1 province:1 restricted:1 order:1 transport:2 license:1 club:1 vehicle:1 store:1 trunk:1 locked:1 box:1 short:1 unreasonably:1 aggressively:1 enforce:1 conviction:1 offense:1 penalty:1 researcher:1 robbery:2 assault:8 simple:2 aggravate:2 burglary:2 occur:4 define:1 standard:1 unify:1 annual:3 slightly:3 nearly:2 identical:3 record:1 versus:1 risk:4 aggravated:2 also:2 however:2 subdivide:2 mechanism:2 clear:1 emerge:1 although:2 involve:3 dangerous:1 far:1 time:3 v:1 adjustment:1 age:1 sex:1 among:1 exclude:2 virtually:2 due:1 fivefold:1 account:2 author:1 investigate:1 justifiable:1 police:1 civilian:1 act:1 occurrred:1 impact:1 early:1 finding:1 feel:1 fair:1 one:1 even:1 argument:1 bias:1 canada:1 two:3 three:1 ottawa:1 calgary:1 toronto:1 half:1 third:1 nyc:1 los:1 angeles:1 houston:1 critic:1 always:1 argue:1 limited:1 access:2 little:1 effect:1 person:1 others:1 try:1 hard:1 acquire:1 mean:1 differently:1 community:1 influence:1 strength:1 interval:1 significantly:1 suggesting:1 switch:1 method:1 well:1 ready:1 endorse:1 experience:1 course:1 apparently:1 enjoy:1 relief:1 category:1 arm:1 heavily:1 quote:1 regulation:1 tale:1 john:1 sloan:1 arthur:1 kellerman:1 donald:1 reay:1 james:2 ferris:1 thomas:1 koepsall:1 frederick:1 rivara:1 charles:1 rice:1 laurel:1 gray:1 logerfo:1 |@bigram last_year:1 year_u:1 accidental_death:1 u_many:1 many_people:1 baseball_bat:1 per_caput:1 weapon_ban:1 knife_attack:5 result_death:1 gun_would:1 would_find:1 find_way:1 widely_use:2 would_expect:1 show_low:1 use_like:1 would_show:1 task_force:1 data_find:1 find_case:1 gun_less:1 gun_homicide:1 strict_gun:2 gun_law:3 would_look:1 whole_lot:1 make_difference:1 make_kind:1 last_couple:1 couple_week:1 week_think:1 think_could:1 could_ever:1 low_level:1 violent_crime:1 u_whether:1 law_abide:2 abide_citizen:2 seven_year:4 year_study:4 crime_rate:1 vancouver_british:1 british_columbia:1 gun_control:2 self_defense:7 day_wait:1 wait_period:1 carry_conceal:1 conceal_weapon:2 purchase_handgun:2 weapon_permit:2 permit_carry:1 may_obtain:1 seattle_vancouver:3 case_use:1 use_standard:1 crime_report:1 slightly_high:3 aggravated_assault:2 far_likely:1 likely_use:2 death_rate:1 rate_homicide:7 almost_identical:1 increase_risk:1 high_rate:2 firearm_handgun:2 time_likely:1 one_might:1 might_even:1 even_make:1 make_argument:1 two_three:1 three_time:1 homicide_rate:1 two_third:1 los_angeles:1 handgun_control:1 kill_others:1 try_hard:1 weapon_could:1 could_expect:1 significantly_high:1 arm_self:1 quote_source:1 handgun_regulation:1 regulation_crime:1 crime_assault:1 assault_homicide:1 homicide_tale:1 tale_two:1 two_city:1 john_sloan:1 |
2,181 | Avoiding mistakes is certainly highly desirable. However it is also
widely acknowledged that perfectionism is inimicable to creativity.
And in ordinary life, perfectionism carried beyond a certain point is
indicative of a psychological disorder. In the extreme case, a
perfectionist becomes so paralyzed by all the possible mistakes he might
make that he is unable to even leave the house.
In science, we want to discover as much truth about the world as possible
and we also want to have as much certainty as possible about these
discoveries. Usually there is some trade-off between these two desiderata
--- the search for scope and the search for certainty.
If 18th century mathematicians had demanded total rigor from Newton and
Leibniz then there would probably be no calculus today, because neither
of the two could explain calculus in a way that really made sense, since
they lacked the concept of a limit. And in fact, because of the lack of
a rigorous foundation, they made a number of errors in their use of calculus.
It was only a hundred years later that Weistrass was able to give a solid
grounding for the ideas of Newton and Leibniz. Nonetheless, what Newton
and Leibniz did was undoubtedly science and mathematics gained a great
deal more from the application of their important ideas than it lost
through the mistakes they made.
These are not the rules according to many who post to sci.med and
sci.psychology. According to these posters "If it's not supported by
carefully designed controlled studies then it's not science."
Taken to the extreme, I believe that the attitude that empirical studies
are everything and ideas are nothing results in a complete stultification
of science.
For one thing, an insistence on an elaborate and expensive methodology
results in a sort of scientific trade-unionism, where those outside
the establishment and lacking institutional or corporate support have
no chance to obtain a hearing. (I don't in the least believe that this
is the intention of the arbiters of scientific methodology. Nonetheless,
it is one of the results.) And although institutional science has
certainly produced many wonderful results, I think it is a foolish
arrogance for scientists to believe that no one outside the establishment
--- and using less than perfect empirical methodology --- will ever come
with anything worthwhile.
Furthermore, the big bucks approach to science promotes what I think is
one of the most significant errors in science: choosing to investigate
questions because they can be readily handled by the currently
fashionable methodology (or because one can readily get institutional
or corporate sponsorship for them) instead of directing attention to
those questions which seem to have fundamental significance.
For instance, certain questions cannot be easily investigated with
statistical methods because the relevant factors are not quantitative.
(One could argue that this is the case for almost all questions in many
areas of psychology. In my opinion, a perusal of many of the papers
resulting from the attempt by psychologists to force these questions
into a statistical framework gives the lie to Russell Turpin's
assertion that current scientific methods "avoid all known errors.")
I think that asking the wrong question is probably the most fundamental
error in science. (Ignoring potentially valuable ideas is one of the
others.) And I think that scientific journals are full of all
too many studies done with impeccable empirical methods but which are
worthless because the wrong question was asked in the first place.
--
In the arguments between behaviorists and cognitivists, psychology seems
less like a science than a collection of competing religious sects. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.med/58792 | 13 | sci_med_58792 | [('avoiding', 'VBG'), ('mistakes', 'NNS'), ('is', 'VBZ'), ('certainly', 'RB'), ('highly', 'RB'), ('desirable', 'JJ'), ('however', 'RB'), ('it', 'PRP'), ('is', 'VBZ'), ('also', 'RB'), ('widely', 'RB'), ('acknowledged', 'VBD'), ('that', 'IN'), ('perfectionism', 'NN'), ('is', 'VBZ'), ('inimicable', 'JJ'), ('to', 'TO'), ('creativity', 'NN'), ('and', 'CC'), ('in', 'IN'), ('ordinary', 'JJ'), ('life', 'NN'), ('perfectionism', 'NN'), ('carried', 'VBN'), ('beyond', 'IN'), ('certain', 'JJ'), ('point', 'NN'), ('is', 'VBZ'), ('indicative', 'JJ'), ('of', 'IN'), ('psychological', 'JJ'), ('disorder', 'NN'), ('in', 'IN'), ('the', 'DT'), ('extreme', 'JJ'), ('case', 'NN'), ('perfectionist', 'NN'), ('becomes', 'NNS'), ('so', 'RB'), ('paralyzed', 'VBN'), ('by', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('possible', 'JJ'), ('mistakes', 'NNS'), ('he', 'PRP'), ('might', 'MD'), ('make', 'VB'), ('that', 'IN'), ('he', 'PRP'), ('is', 'VBZ'), ('unable', 'JJ'), ('to', 'TO'), ('even', 'RB'), ('leave', 'VB'), ('the', 'DT'), ('house', 'NN'), ('in', 'IN'), ('science', 'NN'), ('we', 'PRP'), ('want', 'VBP'), ('to', 'TO'), ('discover', 'VB'), ('as', 'RB'), ('much', 'JJ'), ('truth', 'NN'), ('about', 'IN'), ('the', 'DT'), ('world', 'NN'), ('as', 'IN'), ('possible', 'JJ'), ('and', 'CC'), ('we', 'PRP'), ('also', 'RB'), ('want', 'VBP'), ('to', 'TO'), ('have', 'VB'), ('as', 'RB'), ('much', 'JJ'), ('certainty', 'NN'), ('as', 'IN'), ('possible', 'JJ'), ('about', 'IN'), ('these', 'DT'), ('discoveries', 'NNS'), ('usually', 'RB'), ('there', 'EX'), ('is', 'VBZ'), ('some', 'DT'), ('trade', 'NN'), ('off', 'RP'), ('between', 'IN'), ('these', 'DT'), ('two', 'CD'), ('desiderata', 'NNS'), ('---', 'VBP'), ('the', 'DT'), ('search', 'NN'), ('for', 'IN'), ('scope', 'NN'), ('and', 'CC'), ('the', 'DT'), ('search', 'NN'), ('for', 'IN'), ('certainty', 'NN'), ('if', 'IN'), ('18th', 'JJ'), ('century', 'NN'), ('mathematicians', 'NNS'), ('had', 'VBD'), ('demanded', 'VBN'), ('total', 'JJ'), ('rigor', 'NN'), ('from', 'IN'), ('newton', 'NN'), ('and', 'CC'), ('leibniz', 'NN'), ('then', 'RB'), ('there', 'EX'), ('would', 'MD'), ('probably', 'RB'), ('be', 'VB'), ('no', 'DT'), ('calculus', 'NN'), ('today', 'NN'), ('because', 'IN'), ('neither', 'DT'), ('of', 'IN'), ('the', 'DT'), ('two', 'CD'), ('could', 'MD'), ('explain', 'VB'), ('calculus', 'NNS'), ('in', 'IN'), ('way', 'NN'), ('that', 'IN'), ('really', 'RB'), ('made', 'VBN'), ('sense', 'NN'), ('since', 'IN'), ('they', 'PRP'), ('lacked', 'VBD'), ('the', 'DT'), ('concept', 'NN'), ('of', 'IN'), ('limit', 'NN'), ('and', 'CC'), ('in', 'IN'), ('fact', 'NN'), ('because', 'IN'), ('of', 'IN'), ('the', 'DT'), ('lack', 'NN'), ('of', 'IN'), ('rigorous', 'JJ'), ('foundation', 'NN'), ('they', 'PRP'), ('made', 'VBD'), ('number', 'NN'), ('of', 'IN'), ('errors', 'NNS'), ('in', 'IN'), ('their', 'PRP$'), ('use', 'NN'), ('of', 'IN'), ('calculus', 'NN'), ('it', 'PRP'), ('was', 'VBD'), ('only', 'RB'), ('hundred', 'CD'), ('years', 'NNS'), ('later', 'RB'), ('that', 'IN'), ('weistrass', 'NN'), ('was', 'VBD'), ('able', 'JJ'), ('to', 'TO'), ('give', 'VB'), ('solid', 'JJ'), ('grounding', 'NN'), ('for', 'IN'), ('the', 'DT'), ('ideas', 'NNS'), ('of', 'IN'), ('newton', 'NN'), ('and', 'CC'), ('leibniz', 'NN'), ('nonetheless', 'RB'), ('what', 'WP'), ('newton', 'NN'), ('and', 'CC'), ('leibniz', 'NN'), ('did', 'VBD'), ('was', 'VBD'), ('undoubtedly', 'RB'), ('science', 'JJ'), ('and', 'CC'), ('mathematics', 'NNS'), ('gained', 'VBD'), ('great', 'JJ'), ('deal', 'NN'), ('more', 'RBR'), ('from', 'IN'), ('the', 'DT'), ('application', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('important', 'JJ'), ('ideas', 'NNS'), ('than', 'IN'), ('it', 'PRP'), ('lost', 'VBD'), ('through', 'IN'), ('the', 'DT'), ('mistakes', 'NNS'), ('they', 'PRP'), ('made', 'VBD'), ('these', 'DT'), ('are', 'VBP'), ('not', 'RB'), ('the', 'DT'), ('rules', 'NNS'), ('according', 'VBG'), ('to', 'TO'), ('many', 'JJ'), ('who', 'WP'), ('post', 'VBP'), ('to', 'TO'), ('sci', 'VB'), ('med', 'VBN'), ('and', 'CC'), ('sci', 'JJ'), ('psychology', 'NN'), ('according', 'VBG'), ('to', 'TO'), ('these', 'DT'), ('posters', 'NNS'), ('if', 'IN'), ('it', 'PRP'), ('not', 'RB'), ('supported', 'VBN'), ('by', 'IN'), ('carefully', 'RB'), ('designed', 'VBN'), ('controlled', 'VBN'), ('studies', 'NNS'), ('then', 'RB'), ('it', 'PRP'), ('not', 'RB'), ('science', 'VB'), ('."', 'RB'), ('taken', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('extreme', 'JJ'), ('believe', 'VBP'), ('that', 'IN'), ('the', 'DT'), ('attitude', 'NN'), ('that', 'WDT'), ('empirical', 'JJ'), ('studies', 'NNS'), ('are', 'VBP'), ('everything', 'NN'), ('and', 'CC'), ('ideas', 'NNS'), ('are', 'VBP'), ('nothing', 'NN'), ('results', 'NNS'), ('in', 'IN'), ('complete', 'JJ'), ('stultification', 'NN'), ('of', 'IN'), ('science', 'NN'), ('for', 'IN'), ('one', 'CD'), ('thing', 'NN'), ('an', 'DT'), ('insistence', 'NN'), ('on', 'IN'), ('an', 'DT'), ('elaborate', 'NN'), ('and', 'CC'), ('expensive', 'JJ'), ('methodology', 'NN'), ('results', 'NNS'), ('in', 'IN'), ('sort', 'NN'), ('of', 'IN'), ('scientific', 'JJ'), ('trade', 'NN'), ('unionism', 'NN'), ('where', 'WRB'), ('those', 'DT'), ('outside', 'IN'), ('the', 'DT'), ('establishment', 'NN'), ('and', 'CC'), ('lacking', 'VBG'), ('institutional', 'JJ'), ('or', 'CC'), ('corporate', 'JJ'), ('support', 'NN'), ('have', 'VBP'), ('no', 'DT'), ('chance', 'NN'), ('to', 'TO'), ('obtain', 'VB'), ('hearing', 'JJ'), ('don', 'NN'), ('in', 'IN'), ('the', 'DT'), ('least', 'JJS'), ('believe', 'VBP'), ('that', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('intention', 'NN'), ('of', 'IN'), ('the', 'DT'), ('arbiters', 'NNS'), ('of', 'IN'), ('scientific', 'JJ'), ('methodology', 'NN'), ('nonetheless', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('results', 'NNS'), ('.)', 'NNP'), ('and', 'CC'), ('although', 'IN'), ('institutional', 'JJ'), ('science', 'NN'), ('has', 'VBZ'), ('certainly', 'RB'), ('produced', 'VBN'), ('many', 'JJ'), ('wonderful', 'JJ'), ('results', 'NNS'), ('think', 'VBP'), ('it', 'PRP'), ('is', 'VBZ'), ('foolish', 'JJ'), ('arrogance', 'NN'), ('for', 'IN'), ('scientists', 'NNS'), ('to', 'TO'), ('believe', 'VB'), ('that', 'IN'), ('no', 'DT'), ('one', 'NN'), ('outside', 'IN'), ('the', 'DT'), ('establishment', 'NN'), ('---', 'NN'), ('and', 'CC'), ('using', 'VBG'), ('less', 'JJR'), ('than', 'IN'), ('perfect', 'JJ'), ('empirical', 'JJ'), ('methodology', 'NN'), ('---', 'NN'), ('will', 'MD'), ('ever', 'RB'), ('come', 'VB'), ('with', 'IN'), ('anything', 'NN'), ('worthwhile', 'JJ'), ('furthermore', 'RB'), ('the', 'DT'), ('big', 'JJ'), ('bucks', 'NNS'), ('approach', 'NN'), ('to', 'TO'), ('science', 'VB'), ('promotes', 'NNS'), ('what', 'WP'), ('think', 'VBP'), ('is', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('most', 'RBS'), ('significant', 'JJ'), ('errors', 'NNS'), ('in', 'IN'), ('science', 'NN'), ('choosing', 'NN'), ('to', 'TO'), ('investigate', 'VB'), ('questions', 'NNS'), ('because', 'IN'), ('they', 'PRP'), ('can', 'MD'), ('be', 'VB'), ('readily', 'RB'), ('handled', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('currently', 'RB'), ('fashionable', 'JJ'), ('methodology', 'NN'), ('or', 'CC'), ('because', 'IN'), ('one', 'CD'), ('can', 'MD'), ('readily', 'VB'), ('get', 'VB'), ('institutional', 'JJ'), ('or', 'CC'), ('corporate', 'JJ'), ('sponsorship', 'NN'), ('for', 'IN'), ('them', 'PRP'), ('instead', 'RB'), ('of', 'IN'), ('directing', 'VBG'), ('attention', 'NN'), ('to', 'TO'), ('those', 'DT'), ('questions', 'NNS'), ('which', 'WDT'), ('seem', 'VBP'), ('to', 'TO'), ('have', 'VB'), ('fundamental', 'JJ'), ('significance', 'NN'), ('for', 'IN'), ('instance', 'NN'), ('certain', 'JJ'), ('questions', 'NNS'), ('cannot', 'VBP'), ('be', 'VB'), ('easily', 'RB'), ('investigated', 'VBN'), ('with', 'IN'), ('statistical', 'JJ'), ('methods', 'NNS'), ('because', 'IN'), ('the', 'DT'), ('relevant', 'JJ'), ('factors', 'NNS'), ('are', 'VBP'), ('not', 'RB'), ('quantitative', 'JJ'), ('one', 'NN'), ('could', 'MD'), ('argue', 'VB'), ('that', 'IN'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('case', 'NN'), ('for', 'IN'), ('almost', 'RB'), ('all', 'DT'), ('questions', 'NNS'), ('in', 'IN'), ('many', 'JJ'), ('areas', 'NNS'), ('of', 'IN'), ('psychology', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('opinion', 'NN'), ('perusal', 'NN'), ('of', 'IN'), ('many', 'JJ'), ('of', 'IN'), ('the', 'DT'), ('papers', 'NNS'), ('resulting', 'VBG'), ('from', 'IN'), ('the', 'DT'), ('attempt', 'NN'), ('by', 'IN'), ('psychologists', 'NNS'), ('to', 'TO'), ('force', 'VB'), ('these', 'DT'), ('questions', 'NNS'), ('into', 'IN'), ('statistical', 'JJ'), ('framework', 'NN'), ('gives', 'VBZ'), ('the', 'DT'), ('lie', 'NN'), ('to', 'TO'), ('russell', 'VB'), ('turpin', 'JJ'), ('assertion', 'NN'), ('that', 'WDT'), ('current', 'JJ'), ('scientific', 'JJ'), ('methods', 'NNS'), ('avoid', 'VBP'), ('all', 'DT'), ('known', 'JJ'), ('errors', 'NNS'), ('.")', 'VBP'), ('think', 'VBP'), ('that', 'IN'), ('asking', 'VBG'), ('the', 'DT'), ('wrong', 'JJ'), ('question', 'NN'), ('is', 'VBZ'), ('probably', 'RB'), ('the', 'DT'), ('most', 'RBS'), ('fundamental', 'JJ'), ('error', 'NN'), ('in', 'IN'), ('science', 'NN'), ('ignoring', 'VBG'), ('potentially', 'RB'), ('valuable', 'JJ'), ('ideas', 'NNS'), ('is', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('others', 'NNS'), ('.)', 'VBP'), ('and', 'CC'), ('think', 'VBP'), ('that', 'IN'), ('scientific', 'JJ'), ('journals', 'NNS'), ('are', 'VBP'), ('full', 'JJ'), ('of', 'IN'), ('all', 'DT'), ('too', 'RB'), ('many', 'JJ'), ('studies', 'NNS'), ('done', 'VBN'), ('with', 'IN'), ('impeccable', 'JJ'), ('empirical', 'JJ'), ('methods', 'NNS'), ('but', 'CC'), ('which', 'WDT'), ('are', 'VBP'), ('worthless', 'NN'), ('because', 'IN'), ('the', 'DT'), ('wrong', 'JJ'), ('question', 'NN'), ('was', 'VBD'), ('asked', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('place', 'NN'), ('--', ':'), ('in', 'IN'), ('the', 'DT'), ('arguments', 'NNS'), ('between', 'IN'), ('behaviorists', 'NNS'), ('and', 'CC'), ('cognitivists', 'NNS'), ('psychology', 'VBP'), ('seems', 'VBZ'), ('less', 'RBR'), ('like', 'IN'), ('science', 'NN'), ('than', 'IN'), ('collection', 'NN'), ('of', 'IN'), ('competing', 'VBG'), ('religious', 'JJ'), ('sects', 'NNS')] | ['avoid', 'mistake', 'certainly', 'highly', 'desirable', 'however', 'also', 'widely', 'acknowledge', 'perfectionism', 'inimicable', 'creativity', 'ordinary', 'life', 'perfectionism', 'carry', 'beyond', 'certain', 'point', 'indicative', 'psychological', 'disorder', 'extreme', 'case', 'perfectionist', 'becomes', 'paralyze', 'possible', 'mistake', 'might', 'make', 'unable', 'even', 'leave', 'house', 'science', 'want', 'discover', 'much', 'truth', 'world', 'possible', 'also', 'want', 'much', 'certainty', 'possible', 'discovery', 'usually', 'trade', 'two', 'desideratum', 'search', 'scope', 'search', 'certainty', 'century', 'mathematician', 'demand', 'total', 'rigor', 'newton', 'leibniz', 'would', 'probably', 'calculus', 'today', 'neither', 'two', 'could', 'explain', 'calculus', 'way', 'really', 'make', 'sense', 'since', 'lack', 'concept', 'limit', 'fact', 'lack', 'rigorous', 'foundation', 'make', 'number', 'error', 'use', 'calculus', 'hundred', 'year', 'later', 'weistrass', 'able', 'give', 'solid', 'grounding', 'idea', 'newton', 'leibniz', 'nonetheless', 'newton', 'leibniz', 'undoubtedly', 'science', 'mathematics', 'gain', 'great', 'deal', 'application', 'important', 'idea', 'lose', 'mistake', 'make', 'rule', 'accord', 'many', 'post', 'sci', 'med', 'sci', 'psychology', 'accord', 'poster', 'support', 'carefully', 'design', 'control', 'study', 'science', 'take', 'extreme', 'believe', 'attitude', 'empirical', 'study', 'everything', 'idea', 'nothing', 'result', 'complete', 'stultification', 'science', 'one', 'thing', 'insistence', 'elaborate', 'expensive', 'methodology', 'result', 'sort', 'scientific', 'trade', 'unionism', 'outside', 'establishment', 'lack', 'institutional', 'corporate', 'support', 'chance', 'obtain', 'hearing', 'least', 'believe', 'intention', 'arbiter', 'scientific', 'methodology', 'nonetheless', 'one', 'result', 'although', 'institutional', 'science', 'certainly', 'produce', 'many', 'wonderful', 'result', 'think', 'foolish', 'arrogance', 'scientist', 'believe', 'one', 'outside', 'establishment', 'use', 'less', 'perfect', 'empirical', 'methodology', 'ever', 'come', 'anything', 'worthwhile', 'furthermore', 'big', 'buck', 'approach', 'science', 'promotes', 'think', 'one', 'significant', 'error', 'science', 'choosing', 'investigate', 'question', 'readily', 'handle', 'currently', 'fashionable', 'methodology', 'one', 'readily', 'get', 'institutional', 'corporate', 'sponsorship', 'instead', 'direct', 'attention', 'question', 'seem', 'fundamental', 'significance', 'instance', 'certain', 'question', 'cannot', 'easily', 'investigate', 'statistical', 'method', 'relevant', 'factor', 'quantitative', 'one', 'could', 'argue', 'case', 'almost', 'question', 'many', 'area', 'psychology', 'opinion', 'perusal', 'many', 'paper', 'result', 'attempt', 'psychologist', 'force', 'question', 'statistical', 'framework', 'give', 'lie', 'russell', 'turpin', 'assertion', 'current', 'scientific', 'method', 'avoid', 'known', 'error', 'think', 'ask', 'wrong', 'question', 'probably', 'fundamental', 'error', 'science', 'ignore', 'potentially', 'valuable', 'idea', 'one', 'others', 'think', 'scientific', 'journal', 'full', 'many', 'study', 'impeccable', 'empirical', 'method', 'worthless', 'wrong', 'question', 'ask', 'first', 'place', 'argument', 'behaviorist', 'cognitivists', 'psychology', 'seem', 'less', 'like', 'science', 'collection', 'compete', 'religious', 'sect'] | ['avoid_mistake', 'however_also', 'certain_point', 'extreme_case', 'might_make', 'also_want', 'would_probably', 'could_explain', 'way_really', 'really_make', 'make_sense', 'sense_since', 'hundred_year', 'year_later', 'able_give', 'science_mathematics', 'great_deal', 'mistake_make', 'make_rule', 'post_sci', 'sci_med', 'sci_psychology', 'design_control', 'control_study', 'take_extreme', 'science_one', 'one_thing', 'result_think', 'believe_one', 'use_less', 'ever_come', 'come_anything', 'big_buck', 'think_one', 'question_seem', 'one_could', 'could_argue', 'question_many', 'russell_turpin', 'scientific_method', 'idea_one', 'others_think', 'question_ask', 'ask_first', 'first_place', 'argument_behaviorist', 'cognitivists_psychology', 'psychology_seem', 'seem_less', 'less_like', 'like_science', 'science_collection', 'collection_compete', 'compete_religious', 'religious_sect'] | sci_med_58792 |@lemmatized avoid:2 mistake:3 certainly:2 highly:1 desirable:1 however:1 also:2 widely:1 acknowledge:1 perfectionism:2 inimicable:1 creativity:1 ordinary:1 life:1 carry:1 beyond:1 certain:2 point:1 indicative:1 psychological:1 disorder:1 extreme:2 case:2 perfectionist:1 becomes:1 paralyze:1 possible:3 might:1 make:4 unable:1 even:1 leave:1 house:1 science:9 want:2 discover:1 much:2 truth:1 world:1 certainty:2 discovery:1 usually:1 trade:2 two:2 desideratum:1 search:2 scope:1 century:1 mathematician:1 demand:1 total:1 rigor:1 newton:3 leibniz:3 would:1 probably:2 calculus:3 today:1 neither:1 could:2 explain:1 way:1 really:1 sense:1 since:1 lack:3 concept:1 limit:1 fact:1 rigorous:1 foundation:1 number:1 error:4 use:2 hundred:1 year:1 later:1 weistrass:1 able:1 give:2 solid:1 grounding:1 idea:4 nonetheless:2 undoubtedly:1 mathematics:1 gain:1 great:1 deal:1 application:1 important:1 lose:1 rule:1 accord:2 many:5 post:1 sci:2 med:1 psychology:3 poster:1 support:2 carefully:1 design:1 control:1 study:3 take:1 believe:3 attitude:1 empirical:3 everything:1 nothing:1 result:5 complete:1 stultification:1 one:7 thing:1 insistence:1 elaborate:1 expensive:1 methodology:4 sort:1 scientific:4 unionism:1 outside:2 establishment:2 institutional:3 corporate:2 chance:1 obtain:1 hearing:1 least:1 intention:1 arbiter:1 although:1 produce:1 wonderful:1 think:4 foolish:1 arrogance:1 scientist:1 less:2 perfect:1 ever:1 come:1 anything:1 worthwhile:1 furthermore:1 big:1 buck:1 approach:1 promotes:1 significant:1 choosing:1 investigate:2 question:7 readily:2 handle:1 currently:1 fashionable:1 get:1 sponsorship:1 instead:1 direct:1 attention:1 seem:2 fundamental:2 significance:1 instance:1 cannot:1 easily:1 statistical:2 method:3 relevant:1 factor:1 quantitative:1 argue:1 almost:1 area:1 opinion:1 perusal:1 paper:1 attempt:1 psychologist:1 force:1 framework:1 lie:1 russell:1 turpin:1 assertion:1 current:1 known:1 ask:2 wrong:2 ignore:1 potentially:1 valuable:1 others:1 journal:1 full:1 impeccable:1 worthless:1 first:1 place:1 argument:1 behaviorist:1 cognitivists:1 like:1 collection:1 compete:1 religious:1 sect:1 |@bigram avoid_mistake:1 however_also:1 certain_point:1 extreme_case:1 might_make:1 also_want:1 would_probably:1 could_explain:1 way_really:1 really_make:1 make_sense:1 sense_since:1 hundred_year:1 year_later:1 able_give:1 science_mathematics:1 great_deal:1 mistake_make:1 make_rule:1 post_sci:1 sci_med:1 sci_psychology:1 design_control:1 control_study:1 take_extreme:1 science_one:1 one_thing:1 result_think:1 believe_one:1 use_less:1 ever_come:1 come_anything:1 big_buck:1 think_one:1 question_seem:1 one_could:1 could_argue:1 question_many:1 russell_turpin:1 scientific_method:1 idea_one:1 others_think:1 question_ask:1 ask_first:1 first_place:1 argument_behaviorist:1 cognitivists_psychology:1 psychology_seem:1 seem_less:1 less_like:1 like_science:1 science_collection:1 collection_compete:1 compete_religious:1 religious_sect:1 |
2,182 |
Another source: There's a poly blitter for mode y (mode x in 320x200)
at sunee.uwaterloo.ca. Also there is REND386, an even faster 3D
renderer with VR extensions.
-------------------------------------------------------------------------- | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.graphics/38581 | 1 | comp_graphics_38581 | [('another', 'DT'), ('source', 'NN'), ('there', 'RB'), ('poly', 'VBZ'), ('blitter', 'NN'), ('for', 'IN'), ('mode', 'NN'), ('mode', 'NN'), ('in', 'IN'), ('320x200', 'CD'), ('at', 'IN'), ('sunee', 'NN'), ('uwaterloo', 'NN'), ('ca', 'MD'), ('also', 'RB'), ('there', 'EX'), ('is', 'VBZ'), ('rend386', 'JJR'), ('an', 'DT'), ('even', 'RB'), ('faster', 'RBR'), ('3d', 'CD'), ('renderer', 'NN'), ('with', 'IN'), ('vr', 'JJ'), ('extensions', 'NNS'), ('--------------------------------------------------------------------------', 'VBP')] | ['another', 'source', 'poly', 'blitter', 'mode', 'mode', 'sunee', 'uwaterloo', 'ca', 'also', 'even', 'faster', 'renderer', 'vr', 'extension'] | [] | comp_graphics_38581 |@lemmatized another:1 source:1 poly:1 blitter:1 mode:2 sunee:1 uwaterloo:1 ca:1 also:1 even:1 faster:1 renderer:1 vr:1 extension:1 |@bigram |
2,183 | Quoting Jeffrey J. Nucciarone's ([email protected]) article
<[email protected]> of 04-06-93, in pertinent part:
JJ> I am considering buying a used '90 Taurus SHO. The car in
JJ> question has 37k miles. I took it for a test drive the other day
JJ> and a few questions came up.
JJ>
JJ> . . .
JJ> Second, is there anything I should specifically look for in an
JJ> SHO of this vintage? Anything I should specifically ask abt?
JJ> (Brakes, cluthch, etc.) I noticed on the drive the clutch engagemen
JJ> point seemed a little high; since all my other cars are auto-tragics
JJ> I'm not sure abt this point. I had my foot firmly planted on the
JJ> brake when I started it up. There was a bit of a pop in the pedal
JJ> soon after the engine started. This also occured on a few T-bird SC'
JJ> I test drove. Was this the ABS self test?
Brake rotors and the clutch are the main things. There has been a clutch
replacement program; you might check to see if the car is still eligible,
as it is a change well worth making. You can also swap the cruddy cable
shifter for the newer rod shifter, also a change worth making, but that'll
cost you some $$.
My brakes usually do one wibble-wobble on startup, so that is probably
normal. Didn't know they had a self-test, that's interesting.
What kind of tires does the car have on it?
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/rec.autos/101653 | 7 | rec_autos_101653 | [('quoting', 'VBG'), ('jeffrey', 'NN'), ('nucciarone', 'JJ'), ('article', 'NN'), ('of', 'IN'), ('04', 'CD'), ('06', 'CD'), ('93', 'CD'), ('in', 'IN'), ('pertinent', 'JJ'), ('part', 'NN'), ('jj', 'NN'), ('am', 'VBP'), ('considering', 'VBG'), ('buying', 'NN'), ('used', 'VBN'), ('90', 'CD'), ('taurus', 'JJ'), ('sho', 'PDT'), ('the', 'DT'), ('car', 'NN'), ('in', 'IN'), ('jj', 'NN'), ('question', 'NN'), ('has', 'VBZ'), ('37k', 'CD'), ('miles', 'NNS'), ('took', 'VBD'), ('it', 'PRP'), ('for', 'IN'), ('test', 'NN'), ('drive', 'NN'), ('the', 'DT'), ('other', 'JJ'), ('day', 'NN'), ('jj', 'NN'), ('and', 'CC'), ('few', 'JJ'), ('questions', 'NNS'), ('came', 'VBD'), ('up', 'RP'), ('jj', 'NN'), ('jj', 'NN'), ('jj', 'NN'), ('second', 'NN'), ('is', 'VBZ'), ('there', 'RB'), ('anything', 'NN'), ('should', 'MD'), ('specifically', 'RB'), ('look', 'VB'), ('for', 'IN'), ('in', 'IN'), ('an', 'DT'), ('jj', 'NN'), ('sho', 'NN'), ('of', 'IN'), ('this', 'DT'), ('vintage', 'NN'), ('anything', 'NN'), ('should', 'MD'), ('specifically', 'RB'), ('ask', 'VB'), ('abt', 'NN'), ('jj', 'NN'), ('brakes', 'NNS'), ('cluthch', 'VBP'), ('etc', 'JJ'), ('.)', 'NNP'), ('noticed', 'VBD'), ('on', 'IN'), ('the', 'DT'), ('drive', 'NN'), ('the', 'DT'), ('clutch', 'NN'), ('engagemen', 'NNS'), ('jj', 'VBP'), ('point', 'NN'), ('seemed', 'VBD'), ('little', 'JJ'), ('high', 'JJ'), ('since', 'IN'), ('all', 'DT'), ('my', 'PRP$'), ('other', 'JJ'), ('cars', 'NNS'), ('are', 'VBP'), ('auto', 'NN'), ('tragics', 'NNS'), ('jj', 'VBP'), ('not', 'RB'), ('sure', 'JJ'), ('abt', 'VB'), ('this', 'DT'), ('point', 'NN'), ('had', 'VBD'), ('my', 'PRP$'), ('foot', 'NN'), ('firmly', 'RB'), ('planted', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('jj', 'NNS'), ('brake', 'VBP'), ('when', 'WRB'), ('started', 'VBD'), ('it', 'PRP'), ('up', 'RP'), ('there', 'RB'), ('was', 'VBD'), ('bit', 'NN'), ('of', 'IN'), ('pop', 'NN'), ('in', 'IN'), ('the', 'DT'), ('pedal', 'NN'), ('jj', 'NN'), ('soon', 'RB'), ('after', 'IN'), ('the', 'DT'), ('engine', 'NN'), ('started', 'VBD'), ('this', 'DT'), ('also', 'RB'), ('occured', 'VBN'), ('on', 'IN'), ('few', 'JJ'), ('bird', 'NN'), ('sc', 'NN'), ('jj', 'NN'), ('test', 'NN'), ('drove', 'NN'), ('was', 'VBD'), ('this', 'DT'), ('the', 'DT'), ('abs', 'JJ'), ('self', 'NN'), ('test', 'NN'), ('brake', 'NN'), ('rotors', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('clutch', 'NN'), ('are', 'VBP'), ('the', 'DT'), ('main', 'JJ'), ('things', 'NNS'), ('there', 'RB'), ('has', 'VBZ'), ('been', 'VBN'), ('clutch', 'JJ'), ('replacement', 'NN'), ('program', 'NN'), ('you', 'PRP'), ('might', 'MD'), ('check', 'VB'), ('to', 'TO'), ('see', 'VB'), ('if', 'IN'), ('the', 'DT'), ('car', 'NN'), ('is', 'VBZ'), ('still', 'RB'), ('eligible', 'JJ'), ('as', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('change', 'JJ'), ('well', 'RB'), ('worth', 'IN'), ('making', 'VBG'), ('you', 'PRP'), ('can', 'MD'), ('also', 'RB'), ('swap', 'VB'), ('the', 'DT'), ('cruddy', 'NN'), ('cable', 'NN'), ('shifter', 'NN'), ('for', 'IN'), ('the', 'DT'), ('newer', 'JJR'), ('rod', 'NN'), ('shifter', 'NN'), ('also', 'RB'), ('change', 'VBP'), ('worth', 'JJ'), ('making', 'VBG'), ('but', 'CC'), ('that', 'IN'), ('ll', 'VBZ'), ('cost', 'NN'), ('you', 'PRP'), ('some', 'DT'), ('$$.', 'VBP'), ('my', 'PRP$'), ('brakes', 'NNS'), ('usually', 'RB'), ('do', 'VBP'), ('one', 'CD'), ('wibble', 'NN'), ('wobble', 'NN'), ('on', 'IN'), ('startup', 'NN'), ('so', 'IN'), ('that', 'DT'), ('is', 'VBZ'), ('probably', 'RB'), ('normal', 'JJ'), ('didn', 'NNS'), ('know', 'VBP'), ('they', 'PRP'), ('had', 'VBD'), ('self', 'VBN'), ('test', 'NN'), ('that', 'IN'), ('interesting', 'VBG'), ('what', 'WP'), ('kind', 'NN'), ('of', 'IN'), ('tires', 'NNS'), ('does', 'VBZ'), ('the', 'DT'), ('car', 'NN'), ('have', 'VBP'), ('on', 'IN'), ('it', 'PRP')] | ['quote', 'jeffrey', 'nucciarone', 'article', 'pertinent', 'part', 'jj', 'consider', 'buying', 'use', 'taurus', 'sho', 'car', 'jj', 'question', 'mile', 'take', 'test', 'drive', 'day', 'jj', 'question', 'come', 'jj', 'jj', 'jj', 'second', 'anything', 'specifically', 'look', 'jj', 'sho', 'vintage', 'anything', 'specifically', 'ask', 'abt', 'jj', 'brake', 'cluthch', 'etc', 'notice', 'drive', 'clutch', 'engagemen', 'jj', 'point', 'seem', 'little', 'high', 'since', 'car', 'auto', 'tragics', 'jj', 'sure', 'abt', 'point', 'foot', 'firmly', 'plant', 'jj', 'brake', 'start', 'bit', 'pop', 'pedal', 'jj', 'soon', 'engine', 'start', 'also', 'occur', 'bird', 'sc', 'jj', 'test', 'drove', 'abs', 'self', 'test', 'brake', 'rotor', 'clutch', 'main', 'thing', 'clutch', 'replacement', 'program', 'might', 'check', 'see', 'car', 'still', 'eligible', 'change', 'well', 'worth', 'make', 'also', 'swap', 'cruddy', 'cable', 'shifter', 'new', 'rod', 'shifter', 'also', 'change', 'worth', 'make', 'cost', 'brake', 'usually', 'one', 'wibble', 'wobble', 'startup', 'probably', 'normal', 'know', 'self', 'test', 'interest', 'kind', 'tire', 'car'] | ['take_test', 'test_drive', 'question_come', 'point_seem', 'seem_little', 'little_high', 'also_occur', 'main_thing', 'check_see', 'well_worth', 'also_change', 'usually_one', 'tire_car'] | rec_autos_101653 |@lemmatized quote:1 jeffrey:1 nucciarone:1 article:1 pertinent:1 part:1 jj:13 consider:1 buying:1 use:1 taurus:1 sho:2 car:4 question:2 mile:1 take:1 test:4 drive:2 day:1 come:1 second:1 anything:2 specifically:2 look:1 vintage:1 ask:1 abt:2 brake:4 cluthch:1 etc:1 notice:1 clutch:3 engagemen:1 point:2 seem:1 little:1 high:1 since:1 auto:1 tragics:1 sure:1 foot:1 firmly:1 plant:1 start:2 bit:1 pop:1 pedal:1 soon:1 engine:1 also:3 occur:1 bird:1 sc:1 drove:1 abs:1 self:2 rotor:1 main:1 thing:1 replacement:1 program:1 might:1 check:1 see:1 still:1 eligible:1 change:2 well:1 worth:2 make:2 swap:1 cruddy:1 cable:1 shifter:2 new:1 rod:1 cost:1 usually:1 one:1 wibble:1 wobble:1 startup:1 probably:1 normal:1 know:1 interest:1 kind:1 tire:1 |@bigram take_test:1 test_drive:1 question_come:1 point_seem:1 seem_little:1 little_high:1 also_occur:1 main_thing:1 check_see:1 well_worth:1 also_change:1 usually_one:1 tire_car:1 |
2,184 | Some time ago I sent the following message:
Every once in a while I design an orbital space colony. I'm gearing up to
do another one. I'd some info from you. If you were to move
onto a space colony to live permanently, how big would the colony have
to be for you to view a permanent move as desirable? Specifically,
How many people do you want to share the colony with?
What physical dimensions does the living are need to have?
Assume 1g living (the colony will rotate). Assume that you can leave
from time to time for vacations and business trips. If you're young
enough, assume that you'll raise your children there.
I didn't get a lot of responses, and they were all over the block.
Thanx muchly to all those who responded, it is good food for thought.
Here's the (edited) responses I got:
How many people do you want to share the colony with?
100
What physical dimensions does the living are need to have?
Cylinder 200m diameter x 1 km long
Rui Sousa
[email protected]
=============================================================================
100,000 - 250,000
100 square kms surface, divided into city, towns, villages and
countryside. Must have lakes, rivers amd mountains.
=============================================================================
1000. 1000 people really isn't that large a number;
everyone will know everyone else within the space of a year, and will probably
be sick of everyone else within another year.
Hm. I am not all that great at figuring it out. But I would maximize the
percentage of colony-space that is accessible to humans. Esecially if there
were to be children, since they will figure out how to go everywhere anyways.
And everyone, especially me, likes to "go exploring"...I would want to be able
to go for a walk and see something different each time...
=============================================================================
For population, I think I would want a substantial town -- big enough
to have strangers in it. This helps get away from the small-town
"everybody knows everything" syndrome, which some people like but
I don't. Call it several thousand people.
For physical dimensions, a somewhat similar criterion: big enough
to contain surprises, at least until you spent considerable time
getting to know it. As a more specific rule of thumb, big enough
for there to be places at least an hour away on foot. Call that
5km, which means a 10km circumference if we're talking a sphere.
Henry Spencer at U of Toronto Zoology
[email protected] utzoo!henry
=============================================================================
My desires, for permanent move to a space colony, assuming easy communication
and travel:
Size: About a small-town size, say 9 sq. km. 'Course, bigger is better :-)
Population: about 100/sq km or less. So, ~1000 for 9sqkm. Less is
better for elbow room, more for interest and sanity, so say max 3000, min 300.
-Tommy Mac
-------------------------------------------------------------------------
Tom McWilliams | 517-355-2178 (work) \\ Inhale to the Chief!
[email protected] | 336-9591 (hm)\\ Zonker Harris in 1996! | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.space/61022 | 14 | sci_space_61022 | [('some', 'DT'), ('time', 'NN'), ('ago', 'IN'), ('sent', 'VBD'), ('the', 'DT'), ('following', 'JJ'), ('message', 'NN'), ('every', 'DT'), ('once', 'RB'), ('in', 'IN'), ('while', 'IN'), ('design', 'NN'), ('an', 'DT'), ('orbital', 'JJ'), ('space', 'NN'), ('colony', 'NN'), ('gearing', 'VBG'), ('up', 'RP'), ('to', 'TO'), ('do', 'VB'), ('another', 'DT'), ('one', 'CD'), ('some', 'DT'), ('info', 'NN'), ('from', 'IN'), ('you', 'PRP'), ('if', 'IN'), ('you', 'PRP'), ('were', 'VBD'), ('to', 'TO'), ('move', 'VB'), ('onto', 'IN'), ('space', 'NN'), ('colony', 'NN'), ('to', 'TO'), ('live', 'VB'), ('permanently', 'RB'), ('how', 'WRB'), ('big', 'JJ'), ('would', 'MD'), ('the', 'DT'), ('colony', 'NN'), ('have', 'VBP'), ('to', 'TO'), ('be', 'VB'), ('for', 'IN'), ('you', 'PRP'), ('to', 'TO'), ('view', 'VB'), ('permanent', 'JJ'), ('move', 'NN'), ('as', 'IN'), ('desirable', 'JJ'), ('specifically', 'RB'), ('how', 'WRB'), ('many', 'JJ'), ('people', 'NNS'), ('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('share', 'NN'), ('the', 'DT'), ('colony', 'NN'), ('with', 'IN'), ('what', 'WP'), ('physical', 'JJ'), ('dimensions', 'NN'), ('does', 'VBZ'), ('the', 'DT'), ('living', 'NN'), ('are', 'VBP'), ('need', 'VBN'), ('to', 'TO'), ('have', 'VB'), ('assume', 'JJ'), ('1g', 'CD'), ('living', 'VBG'), ('the', 'DT'), ('colony', 'NN'), ('will', 'MD'), ('rotate', 'VB'), (').', 'JJ'), ('assume', 'VB'), ('that', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('leave', 'VB'), ('from', 'IN'), ('time', 'NN'), ('to', 'TO'), ('time', 'NN'), ('for', 'IN'), ('vacations', 'NNS'), ('and', 'CC'), ('business', 'NN'), ('trips', 'NNS'), ('if', 'IN'), ('you', 'PRP'), ('re', 'VBP'), ('young', 'JJ'), ('enough', 'RB'), ('assume', 'VBP'), ('that', 'IN'), ('you', 'PRP'), ('ll', 'VBP'), ('raise', 'VB'), ('your', 'PRP$'), ('children', 'NNS'), ('there', 'EX'), ('didn', 'VBZ'), ('get', 'NN'), ('lot', 'NN'), ('of', 'IN'), ('responses', 'NNS'), ('and', 'CC'), ('they', 'PRP'), ('were', 'VBD'), ('all', 'DT'), ('over', 'IN'), ('the', 'DT'), ('block', 'NN'), ('thanx', 'NN'), ('muchly', 'NN'), ('to', 'TO'), ('all', 'PDT'), ('those', 'DT'), ('who', 'WP'), ('responded', 'VBD'), ('it', 'PRP'), ('is', 'VBZ'), ('good', 'JJ'), ('food', 'NN'), ('for', 'IN'), ('thought', 'NN'), ('here', 'RB'), ('the', 'DT'), ('edited', 'JJ'), ('responses', 'NNS'), ('got', 'VBD'), ('how', 'WRB'), ('many', 'JJ'), ('people', 'NNS'), ('do', 'VBP'), ('you', 'PRP'), ('want', 'VB'), ('to', 'TO'), ('share', 'NN'), ('the', 'DT'), ('colony', 'NN'), ('with', 'IN'), ('100', 'CD'), ('what', 'WP'), ('physical', 'JJ'), ('dimensions', 'NN'), ('does', 'VBZ'), ('the', 'DT'), ('living', 'NN'), ('are', 'VBP'), ('need', 'VBN'), ('to', 'TO'), ('have', 'VB'), ('cylinder', 'NN'), ('200m', 'CD'), ('diameter', 'NN'), ('km', 'NN'), ('long', 'RB'), ('rui', 'JJ'), ('sousa', 'NN'), ('=============================================================================', 'VBD'), ('100', 'CD'), ('000', 'CD'), ('250', 'CD'), ('000', 'CD'), ('100', 'CD'), ('square', 'JJ'), ('kms', 'FW'), ('surface', 'NN'), ('divided', 'VBD'), ('into', 'IN'), ('city', 'NN'), ('towns', 'NNS'), ('villages', 'NNS'), ('and', 'CC'), ('countryside', 'NN'), ('must', 'MD'), ('have', 'VB'), ('lakes', 'NNS'), ('rivers', 'NNS'), ('amd', 'VBP'), ('mountains', 'NNS'), ('=============================================================================', 'VB'), ('1000', 'CD'), ('1000', 'CD'), ('people', 'NNS'), ('really', 'RB'), ('isn', 'VBP'), ('that', 'IN'), ('large', 'JJ'), ('number', 'NN'), ('everyone', 'NN'), ('will', 'MD'), ('know', 'VB'), ('everyone', 'NN'), ('else', 'RB'), ('within', 'IN'), ('the', 'DT'), ('space', 'NN'), ('of', 'IN'), ('year', 'NN'), ('and', 'CC'), ('will', 'MD'), ('probably', 'RB'), ('be', 'VB'), ('sick', 'JJ'), ('of', 'IN'), ('everyone', 'NN'), ('else', 'RB'), ('within', 'IN'), ('another', 'DT'), ('year', 'NN'), ('hm', 'NN'), ('am', 'VBP'), ('not', 'RB'), ('all', 'PDT'), ('that', 'IN'), ('great', 'JJ'), ('at', 'IN'), ('figuring', 'VBG'), ('it', 'PRP'), ('out', 'RP'), ('but', 'CC'), ('would', 'MD'), ('maximize', 'VB'), ('the', 'DT'), ('percentage', 'NN'), ('of', 'IN'), ('colony', 'NN'), ('space', 'NN'), ('that', 'WDT'), ('is', 'VBZ'), ('accessible', 'JJ'), ('to', 'TO'), ('humans', 'NNS'), ('esecially', 'RB'), ('if', 'IN'), ('there', 'EX'), ('were', 'VBD'), ('to', 'TO'), ('be', 'VB'), ('children', 'NNS'), ('since', 'IN'), ('they', 'PRP'), ('will', 'MD'), ('figure', 'VB'), ('out', 'RP'), ('how', 'WRB'), ('to', 'TO'), ('go', 'VB'), ('everywhere', 'RB'), ('anyways', 'NNS'), ('and', 'CC'), ('everyone', 'NN'), ('especially', 'RB'), ('me', 'PRP'), ('likes', 'VBZ'), ('to', 'TO'), ('go', 'VB'), ('exploring', 'VBG'), ('"...', 'NNP'), ('would', 'MD'), ('want', 'VB'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('go', 'VB'), ('for', 'IN'), ('walk', 'NN'), ('and', 'CC'), ('see', 'VB'), ('something', 'NN'), ('different', 'JJ'), ('each', 'DT'), ('time', 'NN'), ('...', ':'), ('=============================================================================', 'NN'), ('for', 'IN'), ('population', 'NN'), ('think', 'VBP'), ('would', 'MD'), ('want', 'VB'), ('substantial', 'JJ'), ('town', 'NN'), ('--', ':'), ('big', 'JJ'), ('enough', 'RB'), ('to', 'TO'), ('have', 'VB'), ('strangers', 'NNS'), ('in', 'IN'), ('it', 'PRP'), ('this', 'DT'), ('helps', 'VBZ'), ('get', 'VB'), ('away', 'RB'), ('from', 'IN'), ('the', 'DT'), ('small', 'JJ'), ('town', 'NN'), ('everybody', 'NN'), ('knows', 'VBZ'), ('everything', 'NN'), ('syndrome', 'NN'), ('which', 'WDT'), ('some', 'DT'), ('people', 'NNS'), ('like', 'IN'), ('but', 'CC'), ('don', 'VB'), ('call', 'NN'), ('it', 'PRP'), ('several', 'JJ'), ('thousand', 'CD'), ('people', 'NNS'), ('for', 'IN'), ('physical', 'JJ'), ('dimensions', 'NNS'), ('somewhat', 'RB'), ('similar', 'JJ'), ('criterion', 'NN'), ('big', 'JJ'), ('enough', 'RB'), ('to', 'TO'), ('contain', 'VB'), ('surprises', 'NNS'), ('at', 'IN'), ('least', 'JJS'), ('until', 'IN'), ('you', 'PRP'), ('spent', 'VBP'), ('considerable', 'JJ'), ('time', 'NN'), ('getting', 'VBG'), ('to', 'TO'), ('know', 'VB'), ('it', 'PRP'), ('as', 'IN'), ('more', 'RBR'), ('specific', 'JJ'), ('rule', 'NN'), ('of', 'IN'), ('thumb', 'NN'), ('big', 'JJ'), ('enough', 'RB'), ('for', 'IN'), ('there', 'EX'), ('to', 'TO'), ('be', 'VB'), ('places', 'NNS'), ('at', 'IN'), ('least', 'JJS'), ('an', 'DT'), ('hour', 'NN'), ('away', 'RB'), ('on', 'IN'), ('foot', 'NN'), ('call', 'NN'), ('that', 'IN'), ('5km', 'CD'), ('which', 'WDT'), ('means', 'VBZ'), ('10km', 'CD'), ('circumference', 'NN'), ('if', 'IN'), ('we', 'PRP'), ('re', 'VBP'), ('talking', 'VBG'), ('sphere', 'JJ'), ('henry', 'NN'), ('spencer', 'NN'), ('at', 'IN'), ('of', 'IN'), ('toronto', 'NN'), ('zoology', 'NN'), ('utzoo', 'JJ'), ('henry', 'NN'), ('=============================================================================', 'NNP'), ('my', 'PRP$'), ('desires', 'NNS'), ('for', 'IN'), ('permanent', 'JJ'), ('move', 'NN'), ('to', 'TO'), ('space', 'NN'), ('colony', 'NN'), ('assuming', 'VBG'), ('easy', 'JJ'), ('communication', 'NN'), ('and', 'CC'), ('travel', 'NN'), ('size', 'NN'), ('about', 'IN'), ('small', 'JJ'), ('town', 'NN'), ('size', 'NN'), ('say', 'VBP'), ('sq', 'JJ'), ('km', 'JJ'), ('course', 'NN'), ('bigger', 'JJR'), ('is', 'VBZ'), ('better', 'RBR'), (':-)', 'JJ'), ('population', 'NN'), ('about', 'IN'), ('100', 'CD'), ('sq', 'JJ'), ('km', 'NN'), ('or', 'CC'), ('less', 'RBR'), ('so', 'RB'), ('1000', 'CD'), ('for', 'IN'), ('9sqkm', 'CD'), ('less', 'NN'), ('is', 'VBZ'), ('better', 'RBR'), ('for', 'IN'), ('elbow', 'JJ'), ('room', 'NN'), ('more', 'RBR'), ('for', 'IN'), ('interest', 'NN'), ('and', 'CC'), ('sanity', 'NN'), ('so', 'RB'), ('say', 'VB'), ('max', 'NN'), ('3000', 'CD'), ('min', 'NN'), ('300', 'CD'), ('tommy', 'NN'), ('mac', 'NN'), ('-------------------------------------------------------------------------', 'NNP'), ('tom', 'NN'), ('mcwilliams', 'VBD'), ('517', 'CD'), ('355', 'CD'), ('2178', 'CD'), ('work', 'NN'), ('\\\\', 'NNP'), ('inhale', 'NN'), ('to', 'TO'), ('the', 'DT'), ('chief', 'NN'), ('336', 'CD'), ('9591', 'CD'), ('hm', 'NN'), (')\\\\', 'NNP'), ('zonker', 'NN'), ('harris', 'NN'), ('in', 'IN'), ('1996', 'CD')] | ['time', 'ago', 'send', 'following', 'message', 'every', 'design', 'orbital', 'space', 'colony', 'gear', 'another', 'one', 'info', 'move', 'onto', 'space', 'colony', 'live', 'permanently', 'big', 'would', 'colony', 'view', 'permanent', 'move', 'desirable', 'specifically', 'many', 'people', 'want', 'share', 'colony', 'physical', 'dimension', 'living', 'need', 'assume', 'live', 'colony', 'rotate', 'assume', 'leave', 'time', 'time', 'vacation', 'business', 'trip', 'young', 'enough', 'assume', 'raise', 'child', 'get', 'lot', 'response', 'block', 'thanx', 'muchly', 'respond', 'good', 'food', 'thought', 'edited', 'response', 'get', 'many', 'people', 'want', 'share', 'colony', 'physical', 'dimension', 'living', 'need', 'cylinder', 'diameter', 'km', 'long', 'rui', 'sousa', 'square', 'km', 'surface', 'divide', 'city', 'town', 'village', 'countryside', 'must', 'lake', 'river', 'amd', 'mountain', 'people', 'really', 'large', 'number', 'everyone', 'know', 'everyone', 'else', 'within', 'space', 'year', 'probably', 'sick', 'everyone', 'else', 'within', 'another', 'year', 'hm', 'great', 'figure', 'would', 'maximize', 'percentage', 'colony', 'space', 'accessible', 'human', 'esecially', 'child', 'since', 'figure', 'go', 'everywhere', 'anyways', 'everyone', 'especially', 'like', 'go', 'explore', 'would', 'want', 'able', 'go', 'walk', 'see', 'something', 'different', 'time', 'population', 'think', 'would', 'want', 'substantial', 'town', 'big', 'enough', 'stranger', 'help', 'get', 'away', 'small', 'town', 'everybody', 'know', 'everything', 'syndrome', 'people', 'like', 'call', 'several', 'thousand', 'people', 'physical', 'dimension', 'somewhat', 'similar', 'criterion', 'big', 'enough', 'contain', 'surprise', 'least', 'spend', 'considerable', 'time', 'get', 'know', 'specific', 'rule', 'thumb', 'big', 'enough', 'place', 'least', 'hour', 'away', 'foot', 'call', 'mean', 'circumference', 'talk', 'sphere', 'henry', 'spencer', 'toronto', 'zoology', 'utzoo', 'henry', 'desire', 'permanent', 'move', 'space', 'colony', 'assume', 'easy', 'communication', 'travel', 'size', 'small', 'town', 'size', 'say', 'sq', 'km', 'course', 'big', 'well', 'population', 'sq', 'km', 'less', 'le', 'well', 'elbow', 'room', 'interest', 'sanity', 'say', 'max', 'min', 'tommy', 'mac', 'tom', 'mcwilliams', 'work', 'inhale', 'chief', 'hm', 'zonker', 'harris'] | ['time_ago', 'following_message', 'space_colony', 'another_one', 'space_colony', 'many_people', 'people_want', 'want_share', 'leave_time', 'time_time', 'raise_child', 'child_get', 'get_lot', 'good_food', 'food_thought', 'response_get', 'get_many', 'many_people', 'people_want', 'want_share', 'town_village', 'people_really', 'large_number', 'everyone_know', 'everyone_else', 'everyone_else', 'another_year', 'figure_would', 'figure_go', 'like_go', 'would_want', 'want_able', 'able_go', 'see_something', 'something_different', 'different_time', 'think_would', 'would_want', 'big_enough', 'help_get', 'get_away', 'small_town', 'know_everything', 'people_like', 'like_call', 'several_thousand', 'thousand_people', 'big_enough', 'time_get', 'get_know', 'know_specific', 'rule_thumb', 'big_enough', 'henry_spencer', 'space_colony', 'small_town', 'tommy_mac', 'mac_tom', 'tom_mcwilliams'] | sci_space_61022 |@lemmatized time:5 ago:1 send:1 following:1 message:1 every:1 design:1 orbital:1 space:5 colony:8 gear:1 another:2 one:1 info:1 move:3 onto:1 live:2 permanently:1 big:5 would:4 view:1 permanent:2 desirable:1 specifically:1 many:2 people:5 want:4 share:2 physical:3 dimension:3 living:2 need:2 assume:4 rotate:1 leave:1 vacation:1 business:1 trip:1 young:1 enough:4 raise:1 child:2 get:4 lot:1 response:2 block:1 thanx:1 muchly:1 respond:1 good:1 food:1 thought:1 edited:1 cylinder:1 diameter:1 km:4 long:1 rui:1 sousa:1 square:1 surface:1 divide:1 city:1 town:4 village:1 countryside:1 must:1 lake:1 river:1 amd:1 mountain:1 really:1 large:1 number:1 everyone:4 know:3 else:2 within:2 year:2 probably:1 sick:1 hm:2 great:1 figure:2 maximize:1 percentage:1 accessible:1 human:1 esecially:1 since:1 go:3 everywhere:1 anyways:1 especially:1 like:2 explore:1 able:1 walk:1 see:1 something:1 different:1 population:2 think:1 substantial:1 stranger:1 help:1 away:2 small:2 everybody:1 everything:1 syndrome:1 call:2 several:1 thousand:1 somewhat:1 similar:1 criterion:1 contain:1 surprise:1 least:2 spend:1 considerable:1 specific:1 rule:1 thumb:1 place:1 hour:1 foot:1 mean:1 circumference:1 talk:1 sphere:1 henry:2 spencer:1 toronto:1 zoology:1 utzoo:1 desire:1 easy:1 communication:1 travel:1 size:2 say:2 sq:2 course:1 well:2 less:1 le:1 elbow:1 room:1 interest:1 sanity:1 max:1 min:1 tommy:1 mac:1 tom:1 mcwilliams:1 work:1 inhale:1 chief:1 zonker:1 harris:1 |@bigram time_ago:1 following_message:1 space_colony:3 another_one:1 many_people:2 people_want:2 want_share:2 leave_time:1 time_time:1 raise_child:1 child_get:1 get_lot:1 good_food:1 food_thought:1 response_get:1 get_many:1 town_village:1 people_really:1 large_number:1 everyone_know:1 everyone_else:2 another_year:1 figure_would:1 figure_go:1 like_go:1 would_want:2 want_able:1 able_go:1 see_something:1 something_different:1 different_time:1 think_would:1 big_enough:3 help_get:1 get_away:1 small_town:2 know_everything:1 people_like:1 like_call:1 several_thousand:1 thousand_people:1 time_get:1 get_know:1 know_specific:1 rule_thumb:1 henry_spencer:1 tommy_mac:1 mac_tom:1 tom_mcwilliams:1 |
2,185 |
Stop! Hold it! You have a few problems here. Official history says that
the first accusations of homosexuality in the SA came from OUTSIDE of the Nazi
party, long BEFORE the Nazis ever came to power. So this objection is a red
herring, even if established history is wrong on this point. Moreover, none of
the histories I've read ever made mention of Hitler or anyone else ever using
homosexuality as a pretext for purging Roehm. A point I saw reiterated was that
Hitler and the party covered up these accusations. If you are going to accuse
official history of being a fabrication, you should at least get your facts
right. The pretext for purging Roehm was that he was planning to use the SA in
a coup against Hitler. Nowhere is there mention of using allegations of
homosexuality as a pretext for the purge, nor as a justification afterwards (it
is possible that the histories I've read have not mentioned this, but I doubt
it - would it be in Hitler's best interest to admit to the world that his
former right hand man was a homosexual?).
Anyway, as I said before, it is always possible that I have missed references
to the Nazis making use of charges of homosexuality against the SA after the
night of the long knives - but this does not prove that they were false. Even
the Nazis could tell the truth when it was to their advantage. In any case,
this does not deal with accusations of homosexuality in the SA during the
1920's.
Ah, yes. I forgot this was being posted to alt.conspiracy. I can smell the
paranoia from here. Since the Nazis never officially charged Roehm with
homosexuality (at least, not according to what I've read), I'd like to know
what tainted "evidence" you are talking about. Since the accusations were made
by persons outside of the Nazi party, long before it came to power, and those
accusations were common knowledge to journalists and others in Germany in the
1920's and 30's, just how would it be possible for the Nazis to go back in
time and plant "tainted" evidence? How exactly does one doctor newspapers
which were circulated around the world, without the discrepancies being
obvious? What actual incidences of Nazi doctoring evidence on this matter
do you know about? And what about the testimony of people who were involved in
these matters, some of whom were not Nazis? And what is the point of making a
false accusation of homosexuality if you do not publicize it? Since the point
here seems to be to discredit established history, then the burden of proof
falls on the revisionist. The revisionists had better do their homework
before making accusations. Otherwise they simply look like conspiracy nuts.
This is just about the *only* thing we agree on.
I suspect that the notion that there might have been bad people - Roehm and
his SA buddies - who were homosexuals must disturb some people. The feeling
seems to be that if a nasty individual is accused of homosexuality, that this
must be an attempt to bash homosexuals. This fear - often justified - is what
lies behind this distrust of official history, or so it seems to me. But this
is not a good justification for trashing accepted accounts of this subject. If
you really think that historians are so incompetent, why don't you write them
and ask where they got their sources on this subject, if you can't tell from
their footnotes? I'm a graduate student in history. Writing to professors and
tracking down sources is old hat. But my time is limited and this is not my
specialty - and neither you nor anyone else have said anything that would
cast one shred of doubt on existing evidence. I'm not going to waste my time
trying to debunk someone's paranoia. Do the research yourself.
Given that you already consider all evidence "tainted", what on earth would
constitute concrete particulars? And since when have concrete particulars been
considered "shrewd guesses"?
I suggest that those who do not trust popular historians (Irving et al) -
historians writing for a popular audience do not, as a rule, provide copious
footnotes - should try instead reading academic historians, who usually
provide footnotes to all their sources in immmense detail. This is the place
to start looking. Assuming that one really wants to know the truth.
I'll bet the folks on alt.pagan are tired of this subject already. My
apologies - we seem to have gone off on a bit of a tangent. I forget which gods
are responsible for keeping strings within appropriate newsgroup subject
boundaries... | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.religion.misc/83528 | 19 | talk_religion_misc_83528 | [('stop', 'NN'), ('hold', 'NN'), ('it', 'PRP'), ('you', 'PRP'), ('have', 'VBP'), ('few', 'JJ'), ('problems', 'NNS'), ('here', 'RB'), ('official', 'JJ'), ('history', 'NN'), ('says', 'VBZ'), ('that', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('accusations', 'NNS'), ('of', 'IN'), ('homosexuality', 'NN'), ('in', 'IN'), ('the', 'DT'), ('sa', 'NN'), ('came', 'VBD'), ('from', 'IN'), ('outside', 'IN'), ('of', 'IN'), ('the', 'DT'), ('nazi', 'JJ'), ('party', 'NN'), ('long', 'RB'), ('before', 'IN'), ('the', 'DT'), ('nazis', 'JJ'), ('ever', 'RB'), ('came', 'VBD'), ('to', 'TO'), ('power', 'NN'), ('so', 'RB'), ('this', 'DT'), ('objection', 'NN'), ('is', 'VBZ'), ('red', 'JJ'), ('herring', 'VBG'), ('even', 'RB'), ('if', 'IN'), ('established', 'VBN'), ('history', 'NN'), ('is', 'VBZ'), ('wrong', 'JJ'), ('on', 'IN'), ('this', 'DT'), ('point', 'NN'), ('moreover', 'RB'), ('none', 'NN'), ('of', 'IN'), ('the', 'DT'), ('histories', 'NNS'), ('ve', 'VBP'), ('read', 'VBN'), ('ever', 'RB'), ('made', 'VBN'), ('mention', 'NN'), ('of', 'IN'), ('hitler', 'NN'), ('or', 'CC'), ('anyone', 'NN'), ('else', 'RB'), ('ever', 'RB'), ('using', 'VBG'), ('homosexuality', 'NN'), ('as', 'IN'), ('pretext', 'NN'), ('for', 'IN'), ('purging', 'VBG'), ('roehm', 'JJ'), ('point', 'NN'), ('saw', 'VBD'), ('reiterated', 'VBN'), ('was', 'VBD'), ('that', 'IN'), ('hitler', 'NN'), ('and', 'CC'), ('the', 'DT'), ('party', 'NN'), ('covered', 'VBD'), ('up', 'RP'), ('these', 'DT'), ('accusations', 'NNS'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('accuse', 'VB'), ('official', 'JJ'), ('history', 'NN'), ('of', 'IN'), ('being', 'VBG'), ('fabrication', 'NN'), ('you', 'PRP'), ('should', 'MD'), ('at', 'IN'), ('least', 'JJS'), ('get', 'VB'), ('your', 'PRP$'), ('facts', 'NNS'), ('right', 'RB'), ('the', 'DT'), ('pretext', 'NN'), ('for', 'IN'), ('purging', 'VBG'), ('roehm', 'NN'), ('was', 'VBD'), ('that', 'IN'), ('he', 'PRP'), ('was', 'VBD'), ('planning', 'VBG'), ('to', 'TO'), ('use', 'VB'), ('the', 'DT'), ('sa', 'NN'), ('in', 'IN'), ('coup', 'NN'), ('against', 'IN'), ('hitler', 'NN'), ('nowhere', 'EX'), ('is', 'VBZ'), ('there', 'JJ'), ('mention', 'NN'), ('of', 'IN'), ('using', 'VBG'), ('allegations', 'NNS'), ('of', 'IN'), ('homosexuality', 'NN'), ('as', 'IN'), ('pretext', 'NN'), ('for', 'IN'), ('the', 'DT'), ('purge', 'NN'), ('nor', 'CC'), ('as', 'IN'), ('justification', 'NN'), ('afterwards', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('possible', 'JJ'), ('that', 'IN'), ('the', 'DT'), ('histories', 'NNS'), ('ve', 'VBP'), ('read', 'VBN'), ('have', 'VBP'), ('not', 'RB'), ('mentioned', 'VBN'), ('this', 'DT'), ('but', 'CC'), ('doubt', 'NN'), ('it', 'PRP'), ('would', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('in', 'IN'), ('hitler', 'NN'), ('best', 'RBS'), ('interest', 'NN'), ('to', 'TO'), ('admit', 'VB'), ('to', 'TO'), ('the', 'DT'), ('world', 'NN'), ('that', 'IN'), ('his', 'PRP$'), ('former', 'JJ'), ('right', 'JJ'), ('hand', 'NN'), ('man', 'NN'), ('was', 'VBD'), ('homosexual', 'JJ'), ('?).', 'NNP'), ('anyway', 'RB'), ('as', 'IN'), ('said', 'VBD'), ('before', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('always', 'RB'), ('possible', 'JJ'), ('that', 'WDT'), ('have', 'VBP'), ('missed', 'VBN'), ('references', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('nazis', 'NN'), ('making', 'VBG'), ('use', 'NN'), ('of', 'IN'), ('charges', 'NNS'), ('of', 'IN'), ('homosexuality', 'NN'), ('against', 'IN'), ('the', 'DT'), ('sa', 'NN'), ('after', 'IN'), ('the', 'DT'), ('night', 'NN'), ('of', 'IN'), ('the', 'DT'), ('long', 'JJ'), ('knives', 'NNS'), ('but', 'CC'), ('this', 'DT'), ('does', 'VBZ'), ('not', 'RB'), ('prove', 'VB'), ('that', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('false', 'JJ'), ('even', 'RB'), ('the', 'DT'), ('nazis', 'NN'), ('could', 'MD'), ('tell', 'VB'), ('the', 'DT'), ('truth', 'NN'), ('when', 'WRB'), ('it', 'PRP'), ('was', 'VBD'), ('to', 'TO'), ('their', 'PRP$'), ('advantage', 'NN'), ('in', 'IN'), ('any', 'DT'), ('case', 'NN'), ('this', 'DT'), ('does', 'VBZ'), ('not', 'RB'), ('deal', 'VB'), ('with', 'IN'), ('accusations', 'NNS'), ('of', 'IN'), ('homosexuality', 'NN'), ('in', 'IN'), ('the', 'DT'), ('sa', 'NN'), ('during', 'IN'), ('the', 'DT'), ('1920', 'CD'), ('ah', 'JJ'), ('yes', 'RB'), ('forgot', 'VBD'), ('this', 'DT'), ('was', 'VBD'), ('being', 'VBG'), ('posted', 'VBN'), ('to', 'TO'), ('alt', 'VB'), ('conspiracy', 'NN'), ('can', 'MD'), ('smell', 'VB'), ('the', 'DT'), ('paranoia', 'NN'), ('from', 'IN'), ('here', 'RB'), ('since', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('never', 'RB'), ('officially', 'RB'), ('charged', 'VBN'), ('roehm', 'NN'), ('with', 'IN'), ('homosexuality', 'NN'), ('at', 'IN'), ('least', 'JJS'), ('not', 'RB'), ('according', 'VBG'), ('to', 'TO'), ('what', 'WP'), ('ve', 'NN'), ('read', 'VBD'), ('),', 'NNS'), ('like', 'IN'), ('to', 'TO'), ('know', 'VB'), ('what', 'WP'), ('tainted', 'VBD'), ('evidence', 'NN'), ('you', 'PRP'), ('are', 'VBP'), ('talking', 'VBG'), ('about', 'IN'), ('since', 'IN'), ('the', 'DT'), ('accusations', 'NNS'), ('were', 'VBD'), ('made', 'VBN'), ('by', 'IN'), ('persons', 'NNS'), ('outside', 'IN'), ('of', 'IN'), ('the', 'DT'), ('nazi', 'JJ'), ('party', 'NN'), ('long', 'RB'), ('before', 'IN'), ('it', 'PRP'), ('came', 'VBD'), ('to', 'TO'), ('power', 'NN'), ('and', 'CC'), ('those', 'DT'), ('accusations', 'NNS'), ('were', 'VBD'), ('common', 'JJ'), ('knowledge', 'NN'), ('to', 'TO'), ('journalists', 'NNS'), ('and', 'CC'), ('others', 'NNS'), ('in', 'IN'), ('germany', 'NN'), ('in', 'IN'), ('the', 'DT'), ('1920', 'CD'), ('and', 'CC'), ('30', 'CD'), ('just', 'RB'), ('how', 'WRB'), ('would', 'MD'), ('it', 'PRP'), ('be', 'VB'), ('possible', 'JJ'), ('for', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('to', 'TO'), ('go', 'VB'), ('back', 'RB'), ('in', 'IN'), ('time', 'NN'), ('and', 'CC'), ('plant', 'NN'), ('tainted', 'VBD'), ('evidence', 'NN'), ('how', 'WRB'), ('exactly', 'RB'), ('does', 'VBZ'), ('one', 'CD'), ('doctor', 'NN'), ('newspapers', 'NNS'), ('which', 'WDT'), ('were', 'VBD'), ('circulated', 'VBN'), ('around', 'IN'), ('the', 'DT'), ('world', 'NN'), ('without', 'IN'), ('the', 'DT'), ('discrepancies', 'NNS'), ('being', 'VBG'), ('obvious', 'JJ'), ('what', 'WP'), ('actual', 'JJ'), ('incidences', 'NNS'), ('of', 'IN'), ('nazi', 'JJ'), ('doctoring', 'VBG'), ('evidence', 'NN'), ('on', 'IN'), ('this', 'DT'), ('matter', 'NN'), ('do', 'VBP'), ('you', 'PRP'), ('know', 'VB'), ('about', 'IN'), ('and', 'CC'), ('what', 'WP'), ('about', 'IN'), ('the', 'DT'), ('testimony', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('who', 'WP'), ('were', 'VBD'), ('involved', 'VBN'), ('in', 'IN'), ('these', 'DT'), ('matters', 'NNS'), ('some', 'DT'), ('of', 'IN'), ('whom', 'WP'), ('were', 'VBD'), ('not', 'RB'), ('nazis', 'JJ'), ('and', 'CC'), ('what', 'WP'), ('is', 'VBZ'), ('the', 'DT'), ('point', 'NN'), ('of', 'IN'), ('making', 'VBG'), ('false', 'JJ'), ('accusation', 'NN'), ('of', 'IN'), ('homosexuality', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('do', 'VBP'), ('not', 'RB'), ('publicize', 'VB'), ('it', 'PRP'), ('since', 'IN'), ('the', 'DT'), ('point', 'NN'), ('here', 'RB'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('to', 'TO'), ('discredit', 'VB'), ('established', 'VBN'), ('history', 'NN'), ('then', 'RB'), ('the', 'DT'), ('burden', 'NN'), ('of', 'IN'), ('proof', 'NN'), ('falls', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('revisionist', 'NN'), ('the', 'DT'), ('revisionists', 'NNS'), ('had', 'VBD'), ('better', 'RBR'), ('do', 'VBP'), ('their', 'PRP$'), ('homework', 'NN'), ('before', 'IN'), ('making', 'VBG'), ('accusations', 'NNS'), ('otherwise', 'RB'), ('they', 'PRP'), ('simply', 'RB'), ('look', 'VBP'), ('like', 'IN'), ('conspiracy', 'NN'), ('nuts', 'NNS'), ('this', 'DT'), ('is', 'VBZ'), ('just', 'RB'), ('about', 'IN'), ('the', 'DT'), ('only', 'JJ'), ('thing', 'NN'), ('we', 'PRP'), ('agree', 'VBP'), ('on', 'IN'), ('suspect', 'NN'), ('that', 'IN'), ('the', 'DT'), ('notion', 'NN'), ('that', 'IN'), ('there', 'EX'), ('might', 'MD'), ('have', 'VB'), ('been', 'VBN'), ('bad', 'JJ'), ('people', 'NNS'), ('roehm', 'NN'), ('and', 'CC'), ('his', 'PRP$'), ('sa', 'NN'), ('buddies', 'NNS'), ('who', 'WP'), ('were', 'VBD'), ('homosexuals', 'NNS'), ('must', 'MD'), ('disturb', 'VB'), ('some', 'DT'), ('people', 'NNS'), ('the', 'DT'), ('feeling', 'NN'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('that', 'IN'), ('if', 'IN'), ('nasty', 'JJ'), ('individual', 'NN'), ('is', 'VBZ'), ('accused', 'VBN'), ('of', 'IN'), ('homosexuality', 'NN'), ('that', 'IN'), ('this', 'DT'), ('must', 'MD'), ('be', 'VB'), ('an', 'DT'), ('attempt', 'NN'), ('to', 'TO'), ('bash', 'VB'), ('homosexuals', 'NNS'), ('this', 'DT'), ('fear', 'NN'), ('often', 'RB'), ('justified', 'VBN'), ('is', 'VBZ'), ('what', 'WP'), ('lies', 'VBZ'), ('behind', 'IN'), ('this', 'DT'), ('distrust', 'NN'), ('of', 'IN'), ('official', 'JJ'), ('history', 'NN'), ('or', 'CC'), ('so', 'RB'), ('it', 'PRP'), ('seems', 'VBZ'), ('to', 'TO'), ('me', 'PRP'), ('but', 'CC'), ('this', 'DT'), ('is', 'VBZ'), ('not', 'RB'), ('good', 'JJ'), ('justification', 'NN'), ('for', 'IN'), ('trashing', 'VBG'), ('accepted', 'JJ'), ('accounts', 'NNS'), ('of', 'IN'), ('this', 'DT'), ('subject', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('really', 'RB'), ('think', 'VBP'), ('that', 'IN'), ('historians', 'NNS'), ('are', 'VBP'), ('so', 'RB'), ('incompetent', 'JJ'), ('why', 'WRB'), ('don', 'NN'), ('you', 'PRP'), ('write', 'VBP'), ('them', 'PRP'), ('and', 'CC'), ('ask', 'VB'), ('where', 'WRB'), ('they', 'PRP'), ('got', 'VBD'), ('their', 'PRP$'), ('sources', 'NNS'), ('on', 'IN'), ('this', 'DT'), ('subject', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('can', 'MD'), ('tell', 'VB'), ('from', 'IN'), ('their', 'PRP$'), ('footnotes', 'NNS'), ('graduate', 'VBP'), ('student', 'NN'), ('in', 'IN'), ('history', 'NN'), ('writing', 'NN'), ('to', 'TO'), ('professors', 'NNS'), ('and', 'CC'), ('tracking', 'VBG'), ('down', 'RP'), ('sources', 'NNS'), ('is', 'VBZ'), ('old', 'JJ'), ('hat', 'RB'), ('but', 'CC'), ('my', 'PRP$'), ('time', 'NN'), ('is', 'VBZ'), ('limited', 'VBN'), ('and', 'CC'), ('this', 'DT'), ('is', 'VBZ'), ('not', 'RB'), ('my', 'PRP$'), ('specialty', 'NN'), ('and', 'CC'), ('neither', 'NN'), ('you', 'PRP'), ('nor', 'CC'), ('anyone', 'NN'), ('else', 'RB'), ('have', 'VBP'), ('said', 'VBD'), ('anything', 'NN'), ('that', 'WDT'), ('would', 'MD'), ('cast', 'VB'), ('one', 'CD'), ('shred', 'NN'), ('of', 'IN'), ('doubt', 'NN'), ('on', 'IN'), ('existing', 'VBG'), ('evidence', 'NN'), ('not', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('waste', 'VB'), ('my', 'PRP$'), ('time', 'NN'), ('trying', 'VBG'), ('to', 'TO'), ('debunk', 'VB'), ('someone', 'NN'), ('paranoia', 'NN'), ('do', 'VBP'), ('the', 'DT'), ('research', 'NN'), ('yourself', 'PRP'), ('given', 'VBN'), ('that', 'IN'), ('you', 'PRP'), ('already', 'RB'), ('consider', 'VB'), ('all', 'DT'), ('evidence', 'NN'), ('tainted', 'VBD'), ('",', 'NNP'), ('what', 'WP'), ('on', 'IN'), ('earth', 'NN'), ('would', 'MD'), ('constitute', 'VB'), ('concrete', 'JJ'), ('particulars', 'NNS'), ('and', 'CC'), ('since', 'IN'), ('when', 'WRB'), ('have', 'VBP'), ('concrete', 'JJ'), ('particulars', 'NNS'), ('been', 'VBN'), ('considered', 'VBN'), ('shrewd', 'JJ'), ('guesses', 'NNS'), ('"?', 'VBP'), ('suggest', 'VBP'), ('that', 'IN'), ('those', 'DT'), ('who', 'WP'), ('do', 'VBP'), ('not', 'RB'), ('trust', 'VB'), ('popular', 'JJ'), ('historians', 'NNS'), ('irving', 'VBG'), ('et', 'NN'), ('al', 'NN'), ('historians', 'NNS'), ('writing', 'VBG'), ('for', 'IN'), ('popular', 'JJ'), ('audience', 'NN'), ('do', 'VBP'), ('not', 'RB'), ('as', 'IN'), ('rule', 'NN'), ('provide', 'VBP'), ('copious', 'JJ'), ('footnotes', 'NNS'), ('should', 'MD'), ('try', 'VB'), ('instead', 'RB'), ('reading', 'VBG'), ('academic', 'JJ'), ('historians', 'NNS'), ('who', 'WP'), ('usually', 'RB'), ('provide', 'VBP'), ('footnotes', 'NNS'), ('to', 'TO'), ('all', 'DT'), ('their', 'PRP$'), ('sources', 'NNS'), ('in', 'IN'), ('immmense', 'NN'), ('detail', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('the', 'DT'), ('place', 'NN'), ('to', 'TO'), ('start', 'VB'), ('looking', 'VBG'), ('assuming', 'VBG'), ('that', 'IN'), ('one', 'CD'), ('really', 'RB'), ('wants', 'VBZ'), ('to', 'TO'), ('know', 'VB'), ('the', 'DT'), ('truth', 'NN'), ('ll', 'JJ'), ('bet', 'VBD'), ('the', 'DT'), ('folks', 'NNS'), ('on', 'IN'), ('alt', 'NN'), ('pagan', 'NNS'), ('are', 'VBP'), ('tired', 'VBN'), ('of', 'IN'), ('this', 'DT'), ('subject', 'NN'), ('already', 'RB'), ('my', 'PRP$'), ('apologies', 'NNS'), ('we', 'PRP'), ('seem', 'VBP'), ('to', 'TO'), ('have', 'VB'), ('gone', 'VBN'), ('off', 'RP'), ('on', 'IN'), ('bit', 'NN'), ('of', 'IN'), ('tangent', 'NN'), ('forget', 'NN'), ('which', 'WDT'), ('gods', 'NNS'), ('are', 'VBP'), ('responsible', 'JJ'), ('for', 'IN'), ('keeping', 'VBG'), ('strings', 'NNS'), ('within', 'IN'), ('appropriate', 'JJ'), ('newsgroup', 'NNS'), ('subject', 'JJ'), ('boundaries', 'NNS'), ('...', ':')] | ['stop', 'hold', 'problem', 'official', 'history', 'say', 'first', 'accusation', 'homosexuality', 'sa', 'come', 'outside', 'nazi', 'party', 'long', 'nazis', 'ever', 'come', 'power', 'objection', 'red', 'herring', 'even', 'establish', 'history', 'wrong', 'point', 'moreover', 'none', 'history', 'read', 'ever', 'make', 'mention', 'hitler', 'anyone', 'else', 'ever', 'use', 'homosexuality', 'pretext', 'purge', 'roehm', 'point', 'saw', 'reiterate', 'hitler', 'party', 'cover', 'accusation', 'go', 'accuse', 'official', 'history', 'fabrication', 'least', 'get', 'fact', 'right', 'pretext', 'purge', 'roehm', 'plan', 'use', 'sa', 'coup', 'hitler', 'nowhere', 'mention', 'use', 'allegation', 'homosexuality', 'pretext', 'purge', 'justification', 'afterwards', 'possible', 'history', 'read', 'mention', 'doubt', 'would', 'hitler', 'best', 'interest', 'admit', 'world', 'former', 'right', 'hand', 'man', 'homosexual', 'anyway', 'say', 'always', 'possible', 'miss', 'reference', 'nazi', 'make', 'use', 'charge', 'homosexuality', 'sa', 'night', 'long', 'knife', 'prove', 'false', 'even', 'nazi', 'could', 'tell', 'truth', 'advantage', 'case', 'deal', 'accusation', 'homosexuality', 'sa', 'ah', 'yes', 'forget', 'post', 'alt', 'conspiracy', 'smell', 'paranoia', 'since', 'nazi', 'never', 'officially', 'charge', 'roehm', 'homosexuality', 'least', 'accord', 'read', 'like', 'know', 'taint', 'evidence', 'talk', 'since', 'accusation', 'make', 'person', 'outside', 'nazi', 'party', 'long', 'come', 'power', 'accusation', 'common', 'knowledge', 'journalist', 'others', 'germany', 'would', 'possible', 'nazi', 'go', 'back', 'time', 'plant', 'taint', 'evidence', 'exactly', 'one', 'doctor', 'newspaper', 'circulate', 'around', 'world', 'without', 'discrepancy', 'obvious', 'actual', 'incidence', 'nazi', 'doctor', 'evidence', 'matter', 'know', 'testimony', 'people', 'involve', 'matter', 'nazis', 'point', 'make', 'false', 'accusation', 'homosexuality', 'publicize', 'since', 'point', 'seem', 'discredit', 'establish', 'history', 'burden', 'proof', 'fall', 'revisionist', 'revisionist', 'well', 'homework', 'make', 'accusation', 'otherwise', 'simply', 'look', 'like', 'conspiracy', 'nut', 'thing', 'agree', 'suspect', 'notion', 'might', 'bad', 'people', 'roehm', 'sa', 'buddy', 'homosexual', 'must', 'disturb', 'people', 'feeling', 'seem', 'nasty', 'individual', 'accuse', 'homosexuality', 'must', 'attempt', 'bash', 'homosexual', 'fear', 'often', 'justify', 'lie', 'behind', 'distrust', 'official', 'history', 'seem', 'good', 'justification', 'trash', 'accepted', 'account', 'subject', 'really', 'think', 'historian', 'incompetent', 'write', 'ask', 'get', 'source', 'subject', 'tell', 'footnote', 'graduate', 'student', 'history', 'writing', 'professor', 'track', 'source', 'old', 'hat', 'time', 'limit', 'specialty', 'neither', 'anyone', 'else', 'say', 'anything', 'would', 'cast', 'one', 'shred', 'doubt', 'exist', 'evidence', 'go', 'waste', 'time', 'try', 'debunk', 'someone', 'paranoia', 'research', 'give', 'already', 'consider', 'evidence', 'taint', 'earth', 'would', 'constitute', 'concrete', 'particular', 'since', 'concrete', 'particular', 'consider', 'shrewd', 'guess', 'suggest', 'trust', 'popular', 'historian', 'irving', 'et', 'al', 'historian', 'write', 'popular', 'audience', 'rule', 'provide', 'copious', 'footnote', 'try', 'instead', 'read', 'academic', 'historian', 'usually', 'provide', 'footnote', 'source', 'immmense', 'detail', 'place', 'start', 'look', 'assume', 'one', 'really', 'want', 'know', 'truth', 'bet', 'folk', 'alt', 'pagan', 'tire', 'subject', 'already', 'apology', 'seem', 'go', 'bit', 'tangent', 'forget', 'god', 'responsible', 'keep', 'string', 'within', 'appropriate', 'newsgroup', 'subject', 'boundary'] | ['official_history', 'say_first', 'nazi_party', 'ever_come', 'come_power', 'red_herring', 'ever_make', 'anyone_else', 'ever_use', 'official_history', 'least_get', 'get_fact', 'plan_use', 'mention_use', 'doubt_would', 'best_interest', 'right_hand', 'say_always', 'always_possible', 'make_use', 'long_knife', 'nazi_could', 'could_tell', 'tell_truth', 'ah_yes', 'post_alt', 'never_officially', 'like_know', 'nazi_party', 'come_power', 'common_knowledge', 'would_possible', 'go_back', 'back_time', 'exactly_one', 'one_doctor', 'around_world', 'people_involve', 'point_make', 'make_false', 'point_seem', 'burden_proof', 'simply_look', 'look_like', 'might_bad', 'bad_people', 'official_history', 'seem_good', 'really_think', 'write_ask', 'ask_get', 'get_source', 'graduate_student', 'time_limit', 'anyone_else', 'else_say', 'say_anything', 'anything_would', 'waste_time', 'time_try', 'earth_would', 'et_al', 'place_start', 'start_look', 'assume_one', 'one_really', 'really_want', 'want_know', 'know_truth', 'seem_go', 'appropriate_newsgroup'] | talk_religion_misc_83528 |@lemmatized stop:1 hold:1 problem:1 official:3 history:8 say:3 first:1 accusation:7 homosexuality:8 sa:5 come:3 outside:2 nazi:7 party:3 long:3 nazis:2 ever:3 power:2 objection:1 red:1 herring:1 even:2 establish:2 wrong:1 point:4 moreover:1 none:1 read:4 make:5 mention:3 hitler:4 anyone:2 else:2 use:4 pretext:3 purge:3 roehm:4 saw:1 reiterate:1 cover:1 go:4 accuse:2 fabrication:1 least:2 get:2 fact:1 right:2 plan:1 coup:1 nowhere:1 allegation:1 justification:2 afterwards:1 possible:3 doubt:2 would:4 best:1 interest:1 admit:1 world:2 former:1 hand:1 man:1 homosexual:3 anyway:1 always:1 miss:1 reference:1 charge:2 night:1 knife:1 prove:1 false:2 could:1 tell:2 truth:2 advantage:1 case:1 deal:1 ah:1 yes:1 forget:2 post:1 alt:2 conspiracy:2 smell:1 paranoia:2 since:4 never:1 officially:1 accord:1 like:2 know:3 taint:3 evidence:5 talk:1 person:1 common:1 knowledge:1 journalist:1 others:1 germany:1 back:1 time:3 plant:1 exactly:1 one:3 doctor:2 newspaper:1 circulate:1 around:1 without:1 discrepancy:1 obvious:1 actual:1 incidence:1 matter:2 testimony:1 people:3 involve:1 publicize:1 seem:4 discredit:1 burden:1 proof:1 fall:1 revisionist:2 well:1 homework:1 otherwise:1 simply:1 look:2 nut:1 thing:1 agree:1 suspect:1 notion:1 might:1 bad:1 buddy:1 must:2 disturb:1 feeling:1 nasty:1 individual:1 attempt:1 bash:1 fear:1 often:1 justify:1 lie:1 behind:1 distrust:1 good:1 trash:1 accepted:1 account:1 subject:4 really:2 think:1 historian:4 incompetent:1 write:2 ask:1 source:3 footnote:3 graduate:1 student:1 writing:1 professor:1 track:1 old:1 hat:1 limit:1 specialty:1 neither:1 anything:1 cast:1 shred:1 exist:1 waste:1 try:2 debunk:1 someone:1 research:1 give:1 already:2 consider:2 earth:1 constitute:1 concrete:2 particular:2 shrewd:1 guess:1 suggest:1 trust:1 popular:2 irving:1 et:1 al:1 audience:1 rule:1 provide:2 copious:1 instead:1 academic:1 usually:1 immmense:1 detail:1 place:1 start:1 assume:1 want:1 bet:1 folk:1 pagan:1 tire:1 apology:1 bit:1 tangent:1 god:1 responsible:1 keep:1 string:1 within:1 appropriate:1 newsgroup:1 boundary:1 |@bigram official_history:3 say_first:1 nazi_party:2 ever_come:1 come_power:2 red_herring:1 ever_make:1 anyone_else:2 ever_use:1 least_get:1 get_fact:1 plan_use:1 mention_use:1 doubt_would:1 best_interest:1 right_hand:1 say_always:1 always_possible:1 make_use:1 long_knife:1 nazi_could:1 could_tell:1 tell_truth:1 ah_yes:1 post_alt:1 never_officially:1 like_know:1 common_knowledge:1 would_possible:1 go_back:1 back_time:1 exactly_one:1 one_doctor:1 around_world:1 people_involve:1 point_make:1 make_false:1 point_seem:1 burden_proof:1 simply_look:1 look_like:1 might_bad:1 bad_people:1 seem_good:1 really_think:1 write_ask:1 ask_get:1 get_source:1 graduate_student:1 time_limit:1 else_say:1 say_anything:1 anything_would:1 waste_time:1 time_try:1 earth_would:1 et_al:1 place_start:1 start_look:1 assume_one:1 one_really:1 really_want:1 want_know:1 know_truth:1 seem_go:1 appropriate_newsgroup:1 |
2,186 |
No, he's not missing anything. You're right that some models of the 650 ship in
the USA without FPU or Ethernet. Per Ejeklint is also right -- *all*, I repeat,
*ALL* Centris 650's sold here in New Zealand and, I assume, Europe have the FPU
and Ethernet. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/51559 | 4 | comp_sys_mac_hardware_51559 | [('no', 'DT'), ('he', 'PRP'), ('not', 'RB'), ('missing', 'VBG'), ('anything', 'NN'), ('you', 'PRP'), ('re', 'VBP'), ('right', 'JJ'), ('that', 'IN'), ('some', 'DT'), ('models', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('650', 'CD'), ('ship', 'NN'), ('in', 'IN'), ('the', 'DT'), ('usa', 'NN'), ('without', 'IN'), ('fpu', 'NN'), ('or', 'CC'), ('ethernet', 'NN'), ('per', 'IN'), ('ejeklint', 'NN'), ('is', 'VBZ'), ('also', 'RB'), ('right', 'JJ'), ('--', ':'), ('all', 'DT'), ('*,', 'JJ'), ('repeat', 'NN'), ('all', 'DT'), ('centris', 'VBP'), ('650', 'CD'), ('sold', 'VBN'), ('here', 'RB'), ('in', 'IN'), ('new', 'JJ'), ('zealand', 'NN'), ('and', 'CC'), ('assume', 'VB'), ('europe', 'NN'), ('have', 'VBP'), ('the', 'DT'), ('fpu', 'NN'), ('and', 'CC'), ('ethernet', 'NN')] | ['miss', 'anything', 'right', 'model', 'ship', 'usa', 'without', 'fpu', 'ethernet', 'per', 'ejeklint', 'also', 'right', 'repeat', 'centris', 'sell', 'new', 'zealand', 'assume', 'europe', 'fpu', 'ethernet'] | ['sell_new', 'new_zealand'] | comp_sys_mac_hardware_51559 |@lemmatized miss:1 anything:1 right:2 model:1 ship:1 usa:1 without:1 fpu:2 ethernet:2 per:1 ejeklint:1 also:1 repeat:1 centris:1 sell:1 new:1 zealand:1 assume:1 europe:1 |@bigram sell_new:1 new_zealand:1 |
2,187 |
ADL authorities seem to view a lot of people as dangerous, including
the millions of Americans of Arab ancestry. Perhaps you can answer
the question as to why the ADL maintained files and spied on ADC members
in California (and elsewhere??)? Friendly rivalry perhaps?
Perhaps Yigal is a Greenpeace member? Or the NAACP? Or a reporter?
Or a member of any of the dozens of other political organizations/ethnic
minorities/occupations that the ADL spied on.
Paranoia?
The names of half the posters on this forum, unless they already
have them.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76020 | 17 | talk_politics_mideast_76020 | [('adl', 'JJ'), ('authorities', 'NNS'), ('seem', 'VBP'), ('to', 'TO'), ('view', 'VB'), ('lot', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('as', 'IN'), ('dangerous', 'JJ'), ('including', 'VBG'), ('the', 'DT'), ('millions', 'NNS'), ('of', 'IN'), ('americans', 'NNS'), ('of', 'IN'), ('arab', 'JJ'), ('ancestry', 'NN'), ('perhaps', 'RB'), ('you', 'PRP'), ('can', 'MD'), ('answer', 'VB'), ('the', 'DT'), ('question', 'NN'), ('as', 'IN'), ('to', 'TO'), ('why', 'WRB'), ('the', 'DT'), ('adl', 'NN'), ('maintained', 'VBD'), ('files', 'NNS'), ('and', 'CC'), ('spied', 'VBN'), ('on', 'IN'), ('adc', 'JJ'), ('members', 'NNS'), ('in', 'IN'), ('california', 'NN'), ('and', 'CC'), ('elsewhere', 'RB'), ('??)?', 'NNP'), ('friendly', 'JJ'), ('rivalry', 'NN'), ('perhaps', 'RB'), ('perhaps', 'RB'), ('yigal', 'JJ'), ('is', 'VBZ'), ('greenpeace', 'JJ'), ('member', 'NN'), ('or', 'CC'), ('the', 'DT'), ('naacp', 'NN'), ('or', 'CC'), ('reporter', 'NN'), ('or', 'CC'), ('member', 'NN'), ('of', 'IN'), ('any', 'DT'), ('of', 'IN'), ('the', 'DT'), ('dozens', 'NNS'), ('of', 'IN'), ('other', 'JJ'), ('political', 'JJ'), ('organizations', 'NNS'), ('ethnic', 'JJ'), ('minorities', 'NNS'), ('occupations', 'NNS'), ('that', 'IN'), ('the', 'DT'), ('adl', 'NN'), ('spied', 'VBD'), ('on', 'IN'), ('paranoia', 'IN'), ('the', 'DT'), ('names', 'NNS'), ('of', 'IN'), ('half', 'PDT'), ('the', 'DT'), ('posters', 'NNS'), ('on', 'IN'), ('this', 'DT'), ('forum', 'NN'), ('unless', 'IN'), ('they', 'PRP'), ('already', 'RB'), ('have', 'VBP'), ('them', 'PRP')] | ['adl', 'authority', 'seem', 'view', 'lot', 'people', 'dangerous', 'include', 'million', 'american', 'arab', 'ancestry', 'perhaps', 'answer', 'question', 'adl', 'maintain', 'file', 'spy', 'adc', 'member', 'california', 'elsewhere', 'friendly', 'rivalry', 'perhaps', 'perhaps', 'yigal', 'greenpeace', 'member', 'naacp', 'reporter', 'member', 'dozen', 'political', 'organization', 'ethnic', 'minority', 'occupation', 'adl', 'spy', 'paranoia', 'name', 'half', 'poster', 'forum', 'unless', 'already'] | ['lot_people', 'million_american', 'answer_question', 'ethnic_minority'] | talk_politics_mideast_76020 |@lemmatized adl:3 authority:1 seem:1 view:1 lot:1 people:1 dangerous:1 include:1 million:1 american:1 arab:1 ancestry:1 perhaps:3 answer:1 question:1 maintain:1 file:1 spy:2 adc:1 member:3 california:1 elsewhere:1 friendly:1 rivalry:1 yigal:1 greenpeace:1 naacp:1 reporter:1 dozen:1 political:1 organization:1 ethnic:1 minority:1 occupation:1 paranoia:1 name:1 half:1 poster:1 forum:1 unless:1 already:1 |@bigram lot_people:1 million_american:1 answer_question:1 ethnic_minority:1 |
2,188 |
Tell me, 'kmagnacca', were you high on 'Arromdian of ASALA/SDPA/ARF'
when you wrote that? Humane behavior and tolerance of Turks was a
legend even 500 years ago when they accepted tens of thousands of
Jews from Spain who were fleeing from the Spanish Inquisition. Again,
many Jewish families escaping from Nazi Armenians and Hitler's Nazi
Germany took refugee in Turkiye during the 1940's. Turkish people
have unselfishly given home, protection, and freedom to the Jews over
the centuries, including to thousands and thousands of them during
the Second World War. Get a life or a cup of Turkish coffee.
"History of the Jews in the Islamic Countries," chapters in Parts I and II,
Jarusalem, Zalman Shazar Center for Jewish History, 1986.
Baron, Salo W., "A Social and Religious History of the Jews," New York,
Columbia University Press, Vols. III, V, XVIII.
Benardete, Mair Jose, "Hispanic Culture and Character of the Sephardic
Jews," New York, Sepher-Hermon Press, 2nd corrected edition, 1982 (original
publication 1953).
Lewis, Bernard, eds., "Christians and Jews in the Ottoman Empire," New York,
Holmes & Meier, 1982, Vol. I, The Central Lands.
"La Turquie dan les Archives des Grand Orient de France: les loges ...,"
in Jean-Louis Bacque-Graumont and Paul Dumont, eds., Economie et Societes
dans L'Empire Ottoman, Paris, Centre National De La Reserche Scientifique,
1983.
Inalcik, Halil, "Turkish-Jewish Relations in the Ottoman Empire," 1982.
Sevilla-Sharon, Moshe, "Turkiye Yahudileri, Tarihsel Bakis," Jerusalem, The
Hebrew University, 1982.
Source: John Dewey: "The New Republic," Vol. 40, Nov. 12, 1928, pp. 268-9.
"Happy the minority [Jews] which has had no Christian nation to protect it.
And one recalls that the Jews took up their abode in 'fanatic' Turkey
when they were expelled from Europe, especially Spain, by Saintly Christians,
and they have lived here for centuries in at least as much tranquility and
liberty as their fellow Turkish subjects, all being exposed alike to the
rapacity of their common rulers. To one brought up, as most Americans have
been, in the Gladstonian and foreign-missionary tradition, the condition of
the Jews in Turkey is almost a mathematical demonstration that religious
differences have had an influence in the tragedy of Turkey only as they
were combined with aspirations for a political separation which every
nation in the world would have treated as treasonable. One readily
reaches the conclusion that the Jews in Turkey were fortunate..."
He also stated that:
"they [Armenians] traitorously turned Turkish cities over to the Russian
invader; that they boasted of having raised an army of one hundred and
fifty thousand men to fight a civil war, and that they burned at least
a hundred Turkish villages and exterminated their population."
TURKEY AND THE HOLOCAUST
An interview with Stanford J. Shaw (History), who recently
completed two books: The Jews of the Ottoman Empire and the
Turkish Republic, and Turkey and the Holocaust: Turkey's Role in
Rescuing Turkish and European Jewry from Nazi Persecution,
1933-45. Shaw chairs the undergraduate interdepartmental degree
program in Near Eastern Studies and has organized the Program for
the Study of Ottoman and Turkish Jewry. He is affiliated with the
G. E. von Grunebaum Center for Near Eastern Studies.
Editor: How did you come to write these two books on Turkey and
European and Turkish Jews?
Shaw: Basically, I'm an Ottoman historian, but I'm also Jewish.
I've spent twenty-five years studying Ottoman history, and as
time went along, whenever I found materials on the Ottoman Jews,
I collected them. But I never did anything with them until a
couple of years ago, when I suddenly realized that 1992 was the
500th anniversary of the Jews being expelled from Spain and
coming to Turkey. Then the Sephardic Temple down on Wilshire
Avenue invited me to give a series of three lectures on Ottoman
Jewry. These lectures were greatly appreciated, and I became
motivated to undertake further research to develop a book, The
Jews of the Ottoman Empire and the Turkish) Republic. This book
is quite different from the works of most Jewish historians, who
tend to look at the Jews in any country more from the viewpoint
of the Jews and the Jewish community, and rely mainly on Jewish
sources. I view my subject as an Ottoman historian, and I
approach the Jews of the Ottoman Empire largely from the point of
view of Ottoman society, using largely Ottoman sources. After I
finished this book and sent it to the press, I came across
additional documents relating to Turkish Jews during World War
II. In the completed book, I had said that Turkey had done a good
deal to rescue the Jews during World War II, but I did not
actually have many details. Then I found a batch of documents in
the Foreign Ministry archive relating to actions taken by Turkish
diplomats to help the Jews before and during the Holocaust. It
was too late to add this new information to the book in press, so
I decided to write a second book. I conducted further research,
mainly in the archives of the Foreign Ministry in Ankara and the
Turkish Embassy and Consulate in Paris. The result was the second
book, Turkey and the Holocaust, which details how Turkey helped
rescue Jews from the Nazis.
- How exactly did they do this?
The story takes place over a number of years. The book presents
the material in three parts, first of which deals with the period
before the Holocaust. When the Nazis came to power in Germany in
1933, they immediately started dismissing Jews and anti-Nazi
Germans from universities, hospitals, scientific institutes, and
the like. Turkey at that moment was just beginning the process of
reforming its universities, and it saw in these Jews, who were
being fired from their positions in Germany, a good source of new
talent to help modernize the Turkish universities. Within three
months after the Nazis started dismissing these Jews, Turkey
arranged to take many of them in. They were brought to Turkey and
were given appointments as professors in the Turkish
universities, as heads of scientific institutes, and as medical
personnel in hospitals. About 300 to 500 major Jewish professors
came to Turkey in the 1930s. Ernst Reuter, a German political
scientist, spent the war years teaching political science in
Turkey. After World War II, he was mayor of Berlin during the
Berlin Airlift. Fritz Neimark, a major German Jewish economist,
came to Turkey and helped establish a modern school of economics
in Istanbul. A man named Reichenbach, who was rescued from the
Nazis by Turkey and spent the war years in Turkey, eventually
came to UCLA, where he became a professor of philosophy. Other
German Jewish emigres engaged in cultural activities in Turkey.
One such was Karl Ebert, who had been a leading theatrical
producer in Berlin until he was expelled by the Nazis. He went to
Turkey, where he organized the Turkish National Theater and the
Turkish National Opera Company in Ankara, with the help of Paul
Hindemuth. So the first section of the book covers this first
phase, when Jews were being persecuted in Germany and rescued by
Turkey. Oddly enough, the German emigres, when they were in
Turkey, did not seem to think too badly of Germany. They regarded
themselves more as Germans than Jews, and they did not join in
the anti-Nazi activities of the local Turkish Jewish community. I
even found letters from the Nazi representatives to Turkey
praising these German Jewish refugees for their work in promoting
the idea of German culture. Even though these people had been
persecuted by the Nazis and rescued by the Turks, they shared the
Nazis' feelings of Aryan racial superiority over the Turks. The
second part of the book deals with the Holocaust, which began in
1940 when the Nazis occupied France. In Europe at that time, and
especially in France, there were about 20,000 Turkish Jews. They
had migrated to Europe for various reasons from about the turn of
the century onward. Most of them had settled in Europe during the
Turkish war for independence after World War I, when Greece was
threatening to overrun Turkey. The Greeks had persecuted the Jews
throughout the nineteenth century, and the Jews feared what might
happen to them if the Greeks took over in Turkey. Many Jews fled
to France during the 1920s and 1930s. Many also abandoned their
Turkish citizenship and became French citizens. Suddenly the
Nazis invaded France in 1940 and started introducing all sorts of
anti-Jewish laws. The Turkish Jews soon found that it was not
worth very much to be a French Jew, but that it was worth a lot
to be a Turkish Jew.
- How so?
Turkey remained neutral through most of World War II. It retained
its embassies and consulates in all the Nazi-occupied countries
until it finally entered the war on the side of the Allies at the
end of 1944. During the war, therefore, Turkey was in a position
to defend its citizens against anti-Jewish measures, and the
actions that Turkish diplomats took form the second chapter of
the book. Turkish diplomats who were stationed in France in
particular intervened to protect Jews of Turkish citizenship from
the Nazis. For those Turkish Jews who had retained their Turkish
citizenship, there was generally no problem. If they were
arrested and sent to a concentration camp, the Turkish diplomats
would communicate with the commanders of the camp and other
officials and say in effect: "These people are Turkish citizens.
You can't do this to them." And the Turkish Jews would be
released. If their businesses were confiscated, the Turkish
diplomats would protest and the businesses would be restored.
The Nazis in general wanted to keep the friendship of Turkey.
They hoped to be able to use Turkey as a gateway for an invasion
of the Middle East, and they also wanted to obtain chromium and
manganese from Turkey. In order to keep Turkish friendship, they
usually accepted these interventions on behalf of Turkish Jews.
The Turkish diplomats sometimes went to the concentration camps
to secure the release of Turkish Jews. At times they even boarded
trains hauling Turkish Jews to Auschwitz for extermination and
succeeded in getting them off the train. Most of the foreign Jews
were sent to a concentration camp at a place called Drancy in
Paris, and that's where most of the intercession by Turkish
consuls took place.
The greater problem came with the Turkish Jews who had abandoned
their Turkish citizenship and had become French citizens. The
consuls couldn't declare that these people were Turkish citizens
because they were not. My book includes photographs of Jews
lining up in front of the Turkish consulate, either to get
passports to return to Turkey or to get a restoration of their
Turkish citizenship. This was a bureaucratic matter, so
processing the application would take some time. In the meantime
it was a real emergency, because the Nazis would arrest Jews on
the streets for almost nothing. The Nazis would even arrest them
if they had radios or telephones in their apartments, because
radios and telephones were forbidden to Jews. To take care of
these former Turkish Jews, the Turkish diplomats invented a
document called gayri muntazem vatandash, or "irregular fellow
citizen." The document said in effect "This person is a former
Turkish citizen who has applied for the restoration of his
Turkish citizenship. In the meantime we would appreciate it if
you would treat him as if he were a Turkish citizen." The
diplomats wrote the document in Turkish and put their seals on
it. Since the Nazis could not read Turkish, on the whole they
accepted these papers as certificates of citizenship. By this
means, the Turkish diplomats were able to rescue many Jews who
had relinquished their Turkish citizenship.
Actually the Nazis were of two minds about the Turkish defense of
Jews. On the one hand the Nazi Foreign Ministry, which wanted to
retain the friendship of Turkey, was in favor of accepting these
interventions. On the other hand, Himmler and Eichmann wanted all
Jews exterminated. At times Himmler and Eichmann were able to
prevail and some of the Turkish Jews were sent off to Auschwitz
before the Turkish consuls could do anything.
- Do you have statistics on how many Turkish Jews were rescued?
There were about 20,000 Turkish Jews in Europe before world War
II, about 10,000 of whom were living in France. Most of the
information in this section of the book relates to the situation
in France. I have published the letters that the Turkish consuls
sent to the Nazi officials and the letters that came back in
reply. Generally the Nazis said that if the Turkish consul would
present documents certifying that arrested individuals are
Turkish citizens, and promise to send them out of France, the
Nazis would release them from the concentration camp. The Turkish
consuls also organized special trains to take Turkish Jews from
Nazi-occupied territory back to Turkey. These trains ran
regularly in 1943 and 1944. The Nazis gave the Turkish Jews visas
so they could pass out of Nazi territory, but the trains were
often held up by the Nazi-influenced governments of Eastern
Europe - Croatia, Serbia, and Bulgaria - because these
governments really didn't want the Jews to escape. As a result of
the Turkish consuls' efforts, about 3,000 to 4,000 of the Turkish
Jews in France were saved. Another 3,000 were sent off to
Auschwitz, where most of them died. The remaining 3,000 either
escaped across the border into Spain or fled to the area of
southern France occupied by the Italians, who treated Jews much
better than the Nazis did. At the end of 1943, however, Italy
fell out of the war, and that was the end for those Jews as well.
Incidentally, the Turkish diplomats in Nazi-occupied Greece also
worked to rescue Jews in that country.
- The second part of your book then deals with Turkish diplomats
acting to rescue Jews of Turkish citizenship or Turkish origin
from Nazi persecution.
Yes, and there is an aside I might add here: In their
interventions on behalf of Turkish Jews, the Turks cited their
treaty with Germany which stated that Turkish citizens in German
territory would be treated the same as German citizens in Turkey.
On that basis the Turks maintained that the Nazis could not
discriminate against Turkish citizens who are Jews. The Nazis
claimed (and the Vichy government agreed) that they were not
discriminating because they were treating all Jews equally.
Turkey protested, saying, "You are dividing our citizens
according to religion, but the Turkish constitution requires that
all citizens be treated equally, regardless of religion.
Therefore, you cannot single out Turkish Jews." American consuls
in Paris, by contrast, accepted the Nazi argument and told
American Jews who were being persecuted by the Nazis that they
couldn't do anything about it, because the American Jews were
being treated the same as other Jews. The third part of the book
takes place in Turkey, which was the principal center during the
Holocaust for activities aimed at the rescue of Eastern European
Jews. The kwish Agency, an organization established by Jews in
Palestine to help resettle Jews to Palestine, set up an office in
Istanbul in 1940 under the leadership of Chaim Barlas. Other
Jewish organizations in Palestine, especially the kibbutzes, also
sent representatives to Istanbul to set up headquarters. These
groups first tried to contact Jews in Eastern Europe to find out
what was happening. Today we know about the Holocaust, but at
that time people didn't know what was going on. They didn't
imagine the Nazis could do the things they were doing. And so the
first step was to get information, and the Turkish government let
them use the Turkish mails to send letters to their relatives and
friends in Eastern Europe. The Jewish organizations found out
what was happening when they received replies. Later on when the
Nazis began to intercept such letters, the Jews received
assistance also from the Vatican nuncio, Angelo Roncali, who
served as the Vatican representative in Istanbul from 1935 to
1944 and later became Pope John XXIII. As the Vatican
representative during the war, he used the facilities of the
Catholic Church to supplement what the Turkish government was
doing to assist Jewish agencies in contacting Jews in Eastern
Europe. With the cooperation of the Turkish government, these
agencies then sent hard currency, food, clothing, and even
railroad and steamship tickets to Jews in Czechoslovakia,
Bulgaria, Romania, and Hungary. They weren't able to help much in
Poland because by then the Nazis had wiped out almost all the
Polish Jews. Whenever possible the rescue agencies arranged for
the Jews to get out of Eastern Europe either by train through the
so called Orient Express route to Istanbul, or by boat through
the Black Sea to Istanbul.
Turkey was not eager for all these refugees to remain within its
borders during the war, because it was being blockaded and was
suffering terrible shortages of food and clothing. The
government, therefore, facilitated the movement of the
non-Turkish Jewish refugees from Turkey to Palestine, either by
the Taurus Express Railroad through the mountains to Syria and
Palestine, or by small boats across the eastern Mediterranean
from southern Turkey to Palestine. These efforts were bitterly
opposed not only by the Nazis, but also by the British, who did
not want any more Jewish immigration to Palestine because they
feared it would hurt their relations with the Arabs. The British
constantly pressured the Turkish government to stop this traffic
and send those Jews back. In a few cases the Turkish government,
yielding to British pressure, did send the boats back. For
example, in one incident, the steamship Struma, with some 700
Jewish refugees from Romania, was sent back by the Turkish
government as a result of the intervention of the British
ambassador. When that ship was sunk by a Soviet submarine, all
were lost except one person. Nevertheless, all told, the Turkish
government allowed no fewer than 100,000 Eastern European Jews to
pass through Turkish territory and move on to Palestine during
the Second World War. The Turkish authorities also provided these
refugees with facilities and money, and gave them permission to
send money and food out of the country.
- Many of these Jews who passed through Turkey may still be
living in Israel.
Yes, and their children. But let's return for a moment to the
first group, the Turkish Jews who came from Europe. They did not
go on to Palestine; they stayed in Turkey. It was the
non-Turkish, Eastern European Jews who passed through Turkey en
route to Palestine. Their story is very interesting.
- And you have rescued it from obscurity.
Many studies have been made of the Holocaust, but most of them do
not focus on the Eastern European or Middle Eastern Jews. Most of
the scholarship has centered on the Western European Jews, of
whom 6 million were massacred by the Nazis. My study deals with a
much smaller number of people. I have tried to round out the
picture, and I hope my book will persuade other scholars to
undertake further investigations in the history of Eastern Jews.
When it comes to numbers, the German Jews were also relatively
small in number. Most of the millions slain were Polish Jews. The
rescue of 100,000 Eastern European Jews may not seem so
significant compared with the total of 6 million who were
murdered, but it meant a lot to those who were saved.
About three-fourths of the book consists of documents -
translations of many documents. They are included because the
story is not well known. Not only are people in the West unaware
of the courageous actions of the Turkish diplomats; even the
people of Turkey did not know the story. I felt that they would
not fully understand this remarkable achievement unless they
could see the documents.
- What languages are used in the documents?
Most of them are in Turkish or French; some are in Hebrew. There
is a great deal of material in Hebrew about the organization of
the boats going to Palestine, the passengers, and so on, but I
did not go into those details extensively. I describe mostly what
Turkey did, so most of my documents are in Turkish or French. A
few documents are in English. The Jewish groups in Istanbul did
not necessarily cooperate with one another to rescue Jews; in
fact, they often fought with one another. They took turns trying
to get the Turkish government to deport rival groups. For
example, some of the kibbutz groups felt that the Jewish Agency
was run by Western European Jews who were interested only in
helping Western European Jews. Finally, in 1944, President
Roosevelt sent a personal representative, Ira Hirschman, who had
been an executive of Bloomingdale's department store in New York
City, and Hirschman managed to reconcile their differences. The
documents related to his mission are in English.
I also obtained many documents from Serge Klarsfeld, a Holocaust
historian in France, who mainly worked on the French Jews. (His
father was killed by the Nazis.) He gave me materials he had
gathered in the German archives on the Turkish Jews, so I didn't
personally consult the German archives. I believe that much more
can be learned from the German archives, and I hope someone
someday will make the effort.
- This new book fits in well with your teaching, doesn't it?
Right. I'm giving a course on the history of the Jews of the
Ottoman Empire. I first gave the course two years ago. In
addition to research, writing, and teaching, I've been actively
involved in the commemoration of the 500th anniversary of the
coming of the Jews to the Ottoman Empire. Among other things, I
helped organize a large international conference on the subject
which was held in Istanbul in 1992.
- Now that your books are finished and the conference has taken
place, what do you plan to do next?
I'm working on two new books. One is a history of the Turkish War
for Independence, which took place after World War I, during the
years 1918 to 1923. The Turks warded off the efforts of the
victorious European powers to occupy Turkey and end its
independence. The second book is a study of Sultan Abdul Hamid
II, the last major sultan, who ruled from 1876 to 1909. He was an
important modernizer in his own way, although he also suppressed
all sorts of political movements.
Stanford J. Shaw received a B.A. in History and an M.A. in
British History. He then shifted to Near Eastern History, earning
a second M.A. and a Ph.D. at Princeton. As a doctoral candidate
at Princeton, he spent two years abroad, studying at the School
of Oriental and African Studies, University of London; the
University of Cairo, the American University at Cairo, and the
University of Istanbul. He taught at Harvard before coming to
UCLA in 1966. His postdoctoral research has been supported by the
John Simon Guggenheim Foundation, the American Research Institute
in Turkey, the Social Science Research Council, the National
Endowment for the Humanities, the Fulbright Program, and ISOP. He
has received honorary degrees from Harvard University and
Bosporus University, Bebek, Istanbul, Turkey, and medals of honor
for lifetime contributions to the fields of Islamic and Turkish
studies from the Center for Research in Islamic History, Art, and
Culture in Istanbul and from the American Friends of Turkey in
Washington, D.C. In addition to undertaking many professional
service activities and public lectures in both the United States
and Turkey, Shaw has also produced eight books and one edited
volume. His History of the Ottoman Empire and Modem Turkey (2
vols.) has been published in many editions (six editions or
reprints from 1977-1991), and translated into Turkish (1983,
1991) and French (1984). His book The Jews of the Ottoman Empire
and the Turkish Republic (MacMillan, London, and New York
University Press, 1992) will be published in Turkish translation
by the Turkish Historical Society, Istanbul. His Turkey and the
Holocaust: Turkey's Role in Rescuing Turkish and European Jewry
from Nazi Persecution, 1933-1945 will be published by Macmillan
Publishers, London, and New York University Press in 1993. A
pamphlet summarizing the book was published in Ankara, Turkey, in
1992.
Serdar Argic | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76013 | 17 | talk_politics_mideast_76013 | [('tell', 'VB'), ('me', 'PRP'), ('kmagnacca', 'VB'), ("',", "''"), ('were', 'VBD'), ('you', 'PRP'), ('high', 'VBP'), ('on', 'IN'), ('arromdian', 'NN'), ('of', 'IN'), ('asala', 'JJ'), ('sdpa', 'NN'), ('arf', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('wrote', 'VBD'), ('that', 'IN'), ('humane', 'NN'), ('behavior', 'NN'), ('and', 'CC'), ('tolerance', 'NN'), ('of', 'IN'), ('turks', 'NN'), ('was', 'VBD'), ('legend', 'JJ'), ('even', 'RB'), ('500', 'CD'), ('years', 'NNS'), ('ago', 'RB'), ('when', 'WRB'), ('they', 'PRP'), ('accepted', 'VBD'), ('tens', 'NNS'), ('of', 'IN'), ('thousands', 'NNS'), ('of', 'IN'), ('jews', 'NNS'), ('from', 'IN'), ('spain', 'NN'), ('who', 'WP'), ('were', 'VBD'), ('fleeing', 'VBG'), ('from', 'IN'), ('the', 'DT'), ('spanish', 'JJ'), ('inquisition', 'NN'), ('again', 'RB'), ('many', 'JJ'), ('jewish', 'JJ'), ('families', 'NNS'), ('escaping', 'VBG'), ('from', 'IN'), ('nazi', 'JJ'), ('armenians', 'NNS'), ('and', 'CC'), ('hitler', 'NN'), ('nazi', 'JJ'), ('germany', 'NN'), ('took', 'VBD'), ('refugee', 'NN'), ('in', 'IN'), ('turkiye', 'NN'), ('during', 'IN'), ('the', 'DT'), ('1940', 'CD'), ('turkish', 'JJ'), ('people', 'NNS'), ('have', 'VBP'), ('unselfishly', 'JJ'), ('given', 'VBN'), ('home', 'NN'), ('protection', 'NN'), ('and', 'CC'), ('freedom', 'NN'), ('to', 'TO'), ('the', 'DT'), ('jews', 'NN'), ('over', 'IN'), ('the', 'DT'), ('centuries', 'NNS'), ('including', 'VBG'), ('to', 'TO'), ('thousands', 'NNS'), ('and', 'CC'), ('thousands', 'NNS'), ('of', 'IN'), ('them', 'PRP'), ('during', 'IN'), ('the', 'DT'), ('second', 'JJ'), ('world', 'NN'), ('war', 'NN'), ('get', 'VBP'), ('life', 'NN'), ('or', 'CC'), ('cup', 'NN'), ('of', 'IN'), ('turkish', 'JJ'), ('coffee', 'NN'), ('history', 'NN'), ('of', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('islamic', 'JJ'), ('countries', 'NNS'), (',"', 'VBP'), ('chapters', 'NNS'), ('in', 'IN'), ('parts', 'NNS'), ('and', 'CC'), ('ii', 'NN'), ('jarusalem', 'NN'), ('zalman', 'NN'), ('shazar', 'NN'), ('center', 'NN'), ('for', 'IN'), ('jewish', 'JJ'), ('history', 'NN'), ('1986', 'CD'), ('baron', 'NN'), ('salo', 'NN'), ('.,', 'NNP'), ('social', 'JJ'), ('and', 'CC'), ('religious', 'JJ'), ('history', 'NN'), ('of', 'IN'), ('the', 'DT'), ('jews', 'NNS'), (',"', 'VBP'), ('new', 'JJ'), ('york', 'NN'), ('columbia', 'NN'), ('university', 'NN'), ('press', 'NN'), ('vols', 'NNS'), ('iii', 'VBP'), ('xviii', 'JJ'), ('benardete', 'JJ'), ('mair', 'NN'), ('jose', 'NN'), ('hispanic', 'JJ'), ('culture', 'NN'), ('and', 'CC'), ('character', 'NN'), ('of', 'IN'), ('the', 'DT'), ('sephardic', 'JJ'), ('jews', 'NNS'), (',"', 'VBP'), ('new', 'JJ'), ('york', 'NN'), ('sepher', 'NN'), ('hermon', 'JJ'), ('press', 'NN'), ('2nd', 'CD'), ('corrected', 'VBN'), ('edition', 'NN'), ('1982', 'CD'), ('original', 'JJ'), ('publication', 'NN'), ('1953', 'CD'), (').', 'NNP'), ('lewis', 'FW'), ('bernard', 'NN'), ('eds', 'NNS'), ('.,', 'VBP'), ('christians', 'NNS'), ('and', 'CC'), ('jews', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('ottoman', 'NN'), ('empire', 'NN'), (',"', 'NNP'), ('new', 'JJ'), ('york', 'NN'), ('holmes', 'NNS'), ('meier', 'RBR'), ('1982', 'CD'), ('vol', 'IN'), ('the', 'DT'), ('central', 'JJ'), ('lands', 'NNS'), ('la', 'VBP'), ('turquie', 'JJ'), ('dan', 'NN'), ('les', 'VBZ'), ('archives', 'NNS'), ('des', 'NNS'), ('grand', 'JJ'), ('orient', 'JJ'), ('de', 'FW'), ('france', 'NN'), ('les', 'NNS'), ('loges', 'VBZ'), ('...,"', 'VBP'), ('in', 'IN'), ('jean', 'JJ'), ('louis', 'NN'), ('bacque', 'NN'), ('graumont', 'NN'), ('and', 'CC'), ('paul', 'NN'), ('dumont', 'NN'), ('eds', 'VBZ'), ('.,', 'NNP'), ('economie', 'NN'), ('et', 'NN'), ('societes', 'NNS'), ('dans', 'NNS'), ('empire', 'VBP'), ('ottoman', 'JJ'), ('paris', 'NN'), ('centre', 'JJ'), ('national', 'JJ'), ('de', 'FW'), ('la', 'FW'), ('reserche', 'FW'), ('scientifique', 'NN'), ('1983', 'CD'), ('inalcik', 'NN'), ('halil', 'NN'), ('turkish', 'JJ'), ('jewish', 'JJ'), ('relations', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('ottoman', 'NN'), ('empire', 'NN'), (',"', 'NN'), ('1982', 'CD'), ('sevilla', 'NN'), ('sharon', 'NN'), ('moshe', 'NN'), ('turkiye', 'NN'), ('yahudileri', 'NN'), ('tarihsel', 'NN'), ('bakis', 'NN'), (',"', 'NNP'), ('jerusalem', 'VBZ'), ('the', 'DT'), ('hebrew', 'NN'), ('university', 'NN'), ('1982', 'CD'), ('source', 'NN'), ('john', 'NN'), ('dewey', 'VBZ'), ('the', 'DT'), ('new', 'JJ'), ('republic', 'JJ'), (',"', 'NNP'), ('vol', 'NN'), ('40', 'CD'), ('nov', 'RB'), ('12', 'CD'), ('1928', 'CD'), ('pp', 'NN'), ('268', 'CD'), ('happy', 'JJ'), ('the', 'DT'), ('minority', 'NN'), ('jews', 'NN'), ('which', 'WDT'), ('has', 'VBZ'), ('had', 'VBN'), ('no', 'DT'), ('christian', 'JJ'), ('nation', 'NN'), ('to', 'TO'), ('protect', 'VB'), ('it', 'PRP'), ('and', 'CC'), ('one', 'CD'), ('recalls', 'VBZ'), ('that', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('took', 'VBD'), ('up', 'RP'), ('their', 'PRP$'), ('abode', 'NN'), ('in', 'IN'), ('fanatic', 'JJ'), ('turkey', 'NN'), ('when', 'WRB'), ('they', 'PRP'), ('were', 'VBD'), ('expelled', 'VBN'), ('from', 'IN'), ('europe', 'NN'), ('especially', 'RB'), ('spain', 'VBN'), ('by', 'IN'), ('saintly', 'RB'), ('christians', 'NNS'), ('and', 'CC'), ('they', 'PRP'), ('have', 'VBP'), ('lived', 'VBN'), ('here', 'RB'), ('for', 'IN'), ('centuries', 'NNS'), ('in', 'IN'), ('at', 'IN'), ('least', 'JJS'), ('as', 'RB'), ('much', 'JJ'), ('tranquility', 'NN'), ('and', 'CC'), ('liberty', 'NN'), ('as', 'IN'), ('their', 'PRP$'), ('fellow', 'JJ'), ('turkish', 'JJ'), ('subjects', 'NNS'), ('all', 'DT'), ('being', 'VBG'), ('exposed', 'VBN'), ('alike', 'RB'), ('to', 'TO'), ('the', 'DT'), ('rapacity', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('common', 'JJ'), ('rulers', 'NNS'), ('to', 'TO'), ('one', 'CD'), ('brought', 'NN'), ('up', 'RP'), ('as', 'IN'), ('most', 'JJS'), ('americans', 'NNS'), ('have', 'VBP'), ('been', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('gladstonian', 'JJ'), ('and', 'CC'), ('foreign', 'JJ'), ('missionary', 'JJ'), ('tradition', 'NN'), ('the', 'DT'), ('condition', 'NN'), ('of', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('in', 'IN'), ('turkey', 'NN'), ('is', 'VBZ'), ('almost', 'RB'), ('mathematical', 'JJ'), ('demonstration', 'NN'), ('that', 'IN'), ('religious', 'JJ'), ('differences', 'NNS'), ('have', 'VBP'), ('had', 'VBD'), ('an', 'DT'), ('influence', 'NN'), ('in', 'IN'), ('the', 'DT'), ('tragedy', 'NN'), ('of', 'IN'), ('turkey', 'NN'), ('only', 'RB'), ('as', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('combined', 'VBN'), ('with', 'IN'), ('aspirations', 'NNS'), ('for', 'IN'), ('political', 'JJ'), ('separation', 'NN'), ('which', 'WDT'), ('every', 'DT'), ('nation', 'NN'), ('in', 'IN'), ('the', 'DT'), ('world', 'NN'), ('would', 'MD'), ('have', 'VB'), ('treated', 'VBN'), ('as', 'IN'), ('treasonable', 'JJ'), ('one', 'CD'), ('readily', 'RB'), ('reaches', 'VBZ'), ('the', 'DT'), ('conclusion', 'NN'), ('that', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('in', 'IN'), ('turkey', 'NN'), ('were', 'VBD'), ('fortunate', 'JJ'), ('..."', 'NN'), ('he', 'PRP'), ('also', 'RB'), ('stated', 'VBD'), ('that', 'IN'), ('they', 'PRP'), ('armenians', 'VBP'), ('traitorously', 'RB'), ('turned', 'VBN'), ('turkish', 'JJ'), ('cities', 'NNS'), ('over', 'IN'), ('to', 'TO'), ('the', 'DT'), ('russian', 'JJ'), ('invader', 'NN'), ('that', 'IN'), ('they', 'PRP'), ('boasted', 'VBD'), ('of', 'IN'), ('having', 'VBG'), ('raised', 'VBN'), ('an', 'DT'), ('army', 'NN'), ('of', 'IN'), ('one', 'CD'), ('hundred', 'CD'), ('and', 'CC'), ('fifty', 'JJ'), ('thousand', 'NN'), ('men', 'NNS'), ('to', 'TO'), ('fight', 'VB'), ('civil', 'JJ'), ('war', 'NN'), ('and', 'CC'), ('that', 'IN'), ('they', 'PRP'), ('burned', 'VBD'), ('at', 'IN'), ('least', 'JJS'), ('hundred', 'JJ'), ('turkish', 'JJ'), ('villages', 'NNS'), ('and', 'CC'), ('exterminated', 'VBD'), ('their', 'PRP$'), ('population', 'NN'), ('."', 'IN'), ('turkey', 'NN'), ('and', 'CC'), ('the', 'DT'), ('holocaust', 'NN'), ('an', 'DT'), ('interview', 'NN'), ('with', 'IN'), ('stanford', 'JJ'), ('shaw', 'NN'), ('history', 'NN'), ('),', 'NN'), ('who', 'WP'), ('recently', 'RB'), ('completed', 'VBD'), ('two', 'CD'), ('books', 'NNS'), ('the', 'DT'), ('jews', 'NN'), ('of', 'IN'), ('the', 'DT'), ('ottoman', 'NN'), ('empire', 'NN'), ('and', 'CC'), ('the', 'DT'), ('turkish', 'JJ'), ('republic', 'NN'), ('and', 'CC'), ('turkey', 'NN'), ('and', 'CC'), ('the', 'DT'), ('holocaust', 'NN'), ('turkey', 'NN'), ('role', 'NN'), ('in', 'IN'), ('rescuing', 'VBG'), ('turkish', 'JJ'), ('and', 'CC'), ('european', 'JJ'), ('jewry', 'NN'), ('from', 'IN'), ('nazi', 'JJ'), ('persecution', 'NN'), ('1933', 'CD'), ('45', 'CD'), ('shaw', 'NN'), ('chairs', 'NNS'), ('the', 'DT'), ('undergraduate', 'JJ'), ('interdepartmental', 'JJ'), ('degree', 'NN'), ('program', 'NN'), ('in', 'IN'), ('near', 'JJ'), ('eastern', 'JJ'), ('studies', 'NNS'), ('and', 'CC'), ('has', 'VBZ'), ('organized', 'VBN'), ('the', 'DT'), ('program', 'NN'), ('for', 'IN'), ('the', 'DT'), ('study', 'NN'), ('of', 'IN'), ('ottoman', 'NN'), ('and', 'CC'), ('turkish', 'JJ'), ('jewry', 'NN'), ('he', 'PRP'), ('is', 'VBZ'), ('affiliated', 'VBN'), ('with', 'IN'), ('the', 'DT'), ('von', 'NN'), ('grunebaum', 'NN'), ('center', 'NN'), ('for', 'IN'), ('near', 'JJ'), ('eastern', 'JJ'), ('studies', 'NNS'), ('editor', 'NN'), ('how', 'WRB'), ('did', 'VBD'), ('you', 'PRP'), ('come', 'VB'), ('to', 'TO'), ('write', 'VB'), ('these', 'DT'), ('two', 'CD'), ('books', 'NNS'), ('on', 'IN'), ('turkey', 'NN'), ('and', 'CC'), ('european', 'JJ'), ('and', 'CC'), ('turkish', 'JJ'), ('jews', 'NNS'), ('shaw', 'VBP'), ('basically', 'RB'), ('an', 'DT'), ('ottoman', 'JJ'), ('historian', 'NN'), ('but', 'CC'), ('also', 'RB'), ('jewish', 'JJ'), ('ve', 'FW'), ('spent', 'JJ'), ('twenty', 'NN'), ('five', 'CD'), ('years', 'NNS'), ('studying', 'VBG'), ('ottoman', 'JJ'), ('history', 'NN'), ('and', 'CC'), ('as', 'IN'), ('time', 'NN'), ('went', 'VBD'), ('along', 'RB'), ('whenever', 'RB'), ('found', 'VBN'), ('materials', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('ottoman', 'JJ'), ('jews', 'NNS'), ('collected', 'VBD'), ('them', 'PRP'), ('but', 'CC'), ('never', 'RB'), ('did', 'VBD'), ('anything', 'NN'), ('with', 'IN'), ('them', 'PRP'), ('until', 'IN'), ('couple', 'NN'), ('of', 'IN'), ('years', 'NNS'), ('ago', 'RB'), ('when', 'WRB'), ('suddenly', 'RB'), ('realized', 'VBD'), ('that', 'IN'), ('1992', 'CD'), ('was', 'VBD'), ('the', 'DT'), ('500th', 'JJ'), ('anniversary', 'NN'), ('of', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('being', 'VBG'), ('expelled', 'VBN'), ('from', 'IN'), ('spain', 'NN'), ('and', 'CC'), ('coming', 'VBG'), ('to', 'TO'), ('turkey', 'VB'), ('then', 'RB'), ('the', 'DT'), ('sephardic', 'JJ'), ('temple', 'NN'), ('down', 'RP'), ('on', 'IN'), ('wilshire', 'NN'), ('avenue', 'NN'), ('invited', 'VBD'), ('me', 'PRP'), ('to', 'TO'), ('give', 'VB'), ('series', 'NN'), ('of', 'IN'), ('three', 'CD'), ('lectures', 'NNS'), ('on', 'IN'), ('ottoman', 'JJ'), ('jewry', 'NN'), ('these', 'DT'), ('lectures', 'NNS'), ('were', 'VBD'), ('greatly', 'RB'), ('appreciated', 'VBN'), ('and', 'CC'), ('became', 'VBD'), ('motivated', 'VBN'), ('to', 'TO'), ('undertake', 'VB'), ('further', 'JJ'), ('research', 'NN'), ('to', 'TO'), ('develop', 'VB'), ('book', 'NN'), ('the', 'DT'), ('jews', 'NN'), ('of', 'IN'), ('the', 'DT'), ('ottoman', 'NN'), ('empire', 'NN'), ('and', 'CC'), ('the', 'DT'), ('turkish', 'JJ'), ('republic', 'NN'), ('this', 'DT'), ('book', 'NN'), ('is', 'VBZ'), ('quite', 'RB'), ('different', 'JJ'), ('from', 'IN'), ('the', 'DT'), ('works', 'NNS'), ('of', 'IN'), ('most', 'JJS'), ('jewish', 'JJ'), ('historians', 'NNS'), ('who', 'WP'), ('tend', 'VBP'), ('to', 'TO'), ('look', 'VB'), ('at', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('in', 'IN'), ('any', 'DT'), ('country', 'NN'), ('more', 'RBR'), ('from', 'IN'), ('the', 'DT'), ('viewpoint', 'NN'), ('of', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('jewish', 'JJ'), ('community', 'NN'), ('and', 'CC'), ('rely', 'RB'), ('mainly', 'RB'), ('on', 'IN'), ('jewish', 'JJ'), ('sources', 'NNS'), ('view', 'VBP'), ('my', 'PRP$'), ('subject', 'NN'), ('as', 'IN'), ('an', 'DT'), ('ottoman', 'JJ'), ('historian', 'NN'), ('and', 'CC'), ('approach', 'NN'), ('the', 'DT'), ('jews', 'NN'), ('of', 'IN'), ('the', 'DT'), ('ottoman', 'NN'), ('empire', 'NN'), ('largely', 'RB'), ('from', 'IN'), ('the', 'DT'), ('point', 'NN'), ('of', 'IN'), ('view', 'NN'), ('of', 'IN'), ('ottoman', 'JJ'), ('society', 'NN'), ('using', 'VBG'), ('largely', 'RB'), ('ottoman', 'JJ'), ('sources', 'NNS'), ('after', 'IN'), ('finished', 'VBN'), ('this', 'DT'), ('book', 'NN'), ('and', 'CC'), ('sent', 'VBD'), ('it', 'PRP'), ('to', 'TO'), ('the', 'DT'), ('press', 'NN'), ('came', 'VBD'), ('across', 'IN'), ('additional', 'JJ'), ('documents', 'NNS'), ('relating', 'VBG'), ('to', 'TO'), ('turkish', 'VB'), ('jews', 'NNS'), ('during', 'IN'), ('world', 'NN'), ('war', 'NN'), ('ii', 'NN'), ('in', 'IN'), ('the', 'DT'), ('completed', 'VBN'), ('book', 'NN'), ('had', 'VBD'), ('said', 'VBD'), ('that', 'IN'), ('turkey', 'NN'), ('had', 'VBD'), ('done', 'VBN'), ('good', 'JJ'), ('deal', 'NN'), ('to', 'TO'), ('rescue', 'VB'), ('the', 'DT'), ('jews', 'NNS'), ('during', 'IN'), ('world', 'NN'), ('war', 'NN'), ('ii', 'NN'), ('but', 'CC'), ('did', 'VBD'), ('not', 'RB'), ('actually', 'RB'), ('have', 'VBP'), ('many', 'JJ'), ('details', 'NNS'), ('then', 'RB'), ('found', 'VBD'), ('batch', 'NN'), ('of', 'IN'), ('documents', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('foreign', 'JJ'), ('ministry', 'NN'), ('archive', 'JJ'), ('relating', 'NN'), ('to', 'TO'), ('actions', 'NNS'), ('taken', 'VBN'), ('by', 'IN'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('to', 'TO'), ('help', 'VB'), ('the', 'DT'), ('jews', 'NN'), ('before', 'IN'), ('and', 'CC'), ('during', 'IN'), ('the', 'DT'), ('holocaust', 'NN'), ('it', 'PRP'), ('was', 'VBD'), ('too', 'RB'), ('late', 'JJ'), ('to', 'TO'), ('add', 'VB'), ('this', 'DT'), ('new', 'JJ'), ('information', 'NN'), ('to', 'TO'), ('the', 'DT'), ('book', 'NN'), ('in', 'IN'), ('press', 'NN'), ('so', 'RB'), ('decided', 'VBD'), ('to', 'TO'), ('write', 'VB'), ('second', 'JJ'), ('book', 'NN'), ('conducted', 'VBD'), ('further', 'JJ'), ('research', 'NN'), ('mainly', 'RB'), ('in', 'IN'), ('the', 'DT'), ('archives', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('foreign', 'JJ'), ('ministry', 'NN'), ('in', 'IN'), ('ankara', 'NN'), ('and', 'CC'), ('the', 'DT'), ('turkish', 'JJ'), ('embassy', 'NN'), ('and', 'CC'), ('consulate', 'NN'), ('in', 'IN'), ('paris', 'NN'), ('the', 'DT'), ('result', 'NN'), ('was', 'VBD'), ('the', 'DT'), ('second', 'JJ'), ('book', 'NN'), ('turkey', 'NN'), ('and', 'CC'), ('the', 'DT'), ('holocaust', 'NN'), ('which', 'WDT'), ('details', 'NNS'), ('how', 'WRB'), ('turkey', 'NN'), ('helped', 'VBD'), ('rescue', 'VB'), ('jews', 'NNS'), ('from', 'IN'), ('the', 'DT'), ('nazis', 'JJ'), ('how', 'WRB'), ('exactly', 'RB'), ('did', 'VBD'), ('they', 'PRP'), ('do', 'VB'), ('this', 'DT'), ('the', 'DT'), ('story', 'NN'), ('takes', 'VBZ'), ('place', 'NN'), ('over', 'IN'), ('number', 'NN'), ('of', 'IN'), ('years', 'NNS'), ('the', 'DT'), ('book', 'NN'), ('presents', 'VBZ'), ('the', 'DT'), ('material', 'NN'), ('in', 'IN'), ('three', 'CD'), ('parts', 'NNS'), ('first', 'RB'), ('of', 'IN'), ('which', 'WDT'), ('deals', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('period', 'NN'), ('before', 'IN'), ('the', 'DT'), ('holocaust', 'NN'), ('when', 'WRB'), ('the', 'DT'), ('nazis', 'NN'), ('came', 'VBD'), ('to', 'TO'), ('power', 'NN'), ('in', 'IN'), ('germany', 'NN'), ('in', 'IN'), ('1933', 'CD'), ('they', 'PRP'), ('immediately', 'RB'), ('started', 'VBD'), ('dismissing', 'VBG'), ('jews', 'NNS'), ('and', 'CC'), ('anti', 'JJ'), ('nazi', 'NNS'), ('germans', 'NNS'), ('from', 'IN'), ('universities', 'JJ'), ('hospitals', 'NNS'), ('scientific', 'JJ'), ('institutes', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('like', 'JJ'), ('turkey', 'NN'), ('at', 'IN'), ('that', 'DT'), ('moment', 'NN'), ('was', 'VBD'), ('just', 'RB'), ('beginning', 'VBG'), ('the', 'DT'), ('process', 'NN'), ('of', 'IN'), ('reforming', 'VBG'), ('its', 'PRP$'), ('universities', 'NNS'), ('and', 'CC'), ('it', 'PRP'), ('saw', 'VBD'), ('in', 'IN'), ('these', 'DT'), ('jews', 'NNS'), ('who', 'WP'), ('were', 'VBD'), ('being', 'VBG'), ('fired', 'VBN'), ('from', 'IN'), ('their', 'PRP$'), ('positions', 'NNS'), ('in', 'IN'), ('germany', 'NN'), ('good', 'JJ'), ('source', 'NN'), ('of', 'IN'), ('new', 'JJ'), ('talent', 'NN'), ('to', 'TO'), ('help', 'VB'), ('modernize', 'VB'), ('the', 'DT'), ('turkish', 'JJ'), ('universities', 'NNS'), ('within', 'IN'), ('three', 'CD'), ('months', 'NNS'), ('after', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('started', 'VBD'), ('dismissing', 'VBG'), ('these', 'DT'), ('jews', 'NNS'), ('turkey', 'RB'), ('arranged', 'VBD'), ('to', 'TO'), ('take', 'VB'), ('many', 'JJ'), ('of', 'IN'), ('them', 'PRP'), ('in', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('brought', 'VBN'), ('to', 'TO'), ('turkey', 'VB'), ('and', 'CC'), ('were', 'VBD'), ('given', 'VBN'), ('appointments', 'NNS'), ('as', 'IN'), ('professors', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('universities', 'NNS'), ('as', 'IN'), ('heads', 'NNS'), ('of', 'IN'), ('scientific', 'JJ'), ('institutes', 'NN'), ('and', 'CC'), ('as', 'IN'), ('medical', 'JJ'), ('personnel', 'NNS'), ('in', 'IN'), ('hospitals', 'NNS'), ('about', 'IN'), ('300', 'CD'), ('to', 'TO'), ('500', 'CD'), ('major', 'JJ'), ('jewish', 'JJ'), ('professors', 'NNS'), ('came', 'VBD'), ('to', 'TO'), ('turkey', 'VB'), ('in', 'IN'), ('the', 'DT'), ('1930s', 'CD'), ('ernst', 'NN'), ('reuter', 'JJ'), ('german', 'JJ'), ('political', 'JJ'), ('scientist', 'NN'), ('spent', 'VBD'), ('the', 'DT'), ('war', 'NN'), ('years', 'NNS'), ('teaching', 'VBG'), ('political', 'JJ'), ('science', 'NN'), ('in', 'IN'), ('turkey', 'NN'), ('after', 'IN'), ('world', 'NN'), ('war', 'NN'), ('ii', 'NN'), ('he', 'PRP'), ('was', 'VBD'), ('mayor', 'NN'), ('of', 'IN'), ('berlin', 'NN'), ('during', 'IN'), ('the', 'DT'), ('berlin', 'NN'), ('airlift', 'NN'), ('fritz', 'NN'), ('neimark', 'NN'), ('major', 'JJ'), ('german', 'JJ'), ('jewish', 'JJ'), ('economist', 'NN'), ('came', 'VBD'), ('to', 'TO'), ('turkey', 'VB'), ('and', 'CC'), ('helped', 'VBD'), ('establish', 'VB'), ('modern', 'JJ'), ('school', 'NN'), ('of', 'IN'), ('economics', 'NNS'), ('in', 'IN'), ('istanbul', 'JJ'), ('man', 'NN'), ('named', 'VBN'), ('reichenbach', 'NN'), ('who', 'WP'), ('was', 'VBD'), ('rescued', 'VBN'), ('from', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('by', 'IN'), ('turkey', 'NN'), ('and', 'CC'), ('spent', 'VBD'), ('the', 'DT'), ('war', 'NN'), ('years', 'NNS'), ('in', 'IN'), ('turkey', 'NN'), ('eventually', 'RB'), ('came', 'VBD'), ('to', 'TO'), ('ucla', 'VB'), ('where', 'WRB'), ('he', 'PRP'), ('became', 'VBD'), ('professor', 'NN'), ('of', 'IN'), ('philosophy', 'NN'), ('other', 'JJ'), ('german', 'JJ'), ('jewish', 'JJ'), ('emigres', 'NNS'), ('engaged', 'VBN'), ('in', 'IN'), ('cultural', 'JJ'), ('activities', 'NNS'), ('in', 'IN'), ('turkey', 'NN'), ('one', 'CD'), ('such', 'JJ'), ('was', 'VBD'), ('karl', 'VBN'), ('ebert', 'NN'), ('who', 'WP'), ('had', 'VBD'), ('been', 'VBN'), ('leading', 'VBG'), ('theatrical', 'JJ'), ('producer', 'NN'), ('in', 'IN'), ('berlin', 'NN'), ('until', 'IN'), ('he', 'PRP'), ('was', 'VBD'), ('expelled', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('he', 'PRP'), ('went', 'VBD'), ('to', 'TO'), ('turkey', 'VB'), ('where', 'WRB'), ('he', 'PRP'), ('organized', 'VBD'), ('the', 'DT'), ('turkish', 'JJ'), ('national', 'JJ'), ('theater', 'NN'), ('and', 'CC'), ('the', 'DT'), ('turkish', 'JJ'), ('national', 'JJ'), ('opera', 'NN'), ('company', 'NN'), ('in', 'IN'), ('ankara', 'NN'), ('with', 'IN'), ('the', 'DT'), ('help', 'NN'), ('of', 'IN'), ('paul', 'NN'), ('hindemuth', 'NN'), ('so', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('section', 'NN'), ('of', 'IN'), ('the', 'DT'), ('book', 'NN'), ('covers', 'VBZ'), ('this', 'DT'), ('first', 'JJ'), ('phase', 'NN'), ('when', 'WRB'), ('jews', 'NNS'), ('were', 'VBD'), ('being', 'VBG'), ('persecuted', 'VBN'), ('in', 'IN'), ('germany', 'NN'), ('and', 'CC'), ('rescued', 'VBN'), ('by', 'IN'), ('turkey', 'NN'), ('oddly', 'RB'), ('enough', 'RB'), ('the', 'DT'), ('german', 'JJ'), ('emigres', 'NNS'), ('when', 'WRB'), ('they', 'PRP'), ('were', 'VBD'), ('in', 'IN'), ('turkey', 'NN'), ('did', 'VBD'), ('not', 'RB'), ('seem', 'VB'), ('to', 'TO'), ('think', 'VB'), ('too', 'RB'), ('badly', 'RB'), ('of', 'IN'), ('germany', 'NN'), ('they', 'PRP'), ('regarded', 'VBD'), ('themselves', 'PRP'), ('more', 'RBR'), ('as', 'IN'), ('germans', 'NNS'), ('than', 'IN'), ('jews', 'NNS'), ('and', 'CC'), ('they', 'PRP'), ('did', 'VBD'), ('not', 'RB'), ('join', 'VB'), ('in', 'IN'), ('the', 'DT'), ('anti', 'JJ'), ('nazi', 'JJ'), ('activities', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('local', 'JJ'), ('turkish', 'JJ'), ('jewish', 'NN'), ('community', 'NN'), ('even', 'RB'), ('found', 'VBD'), ('letters', 'NNS'), ('from', 'IN'), ('the', 'DT'), ('nazi', 'JJ'), ('representatives', 'NNS'), ('to', 'TO'), ('turkey', 'VB'), ('praising', 'VBG'), ('these', 'DT'), ('german', 'JJ'), ('jewish', 'NN'), ('refugees', 'NNS'), ('for', 'IN'), ('their', 'PRP$'), ('work', 'NN'), ('in', 'IN'), ('promoting', 'VBG'), ('the', 'DT'), ('idea', 'NN'), ('of', 'IN'), ('german', 'JJ'), ('culture', 'NN'), ('even', 'RB'), ('though', 'IN'), ('these', 'DT'), ('people', 'NNS'), ('had', 'VBD'), ('been', 'VBN'), ('persecuted', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('and', 'CC'), ('rescued', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('turks', 'NNS'), ('they', 'PRP'), ('shared', 'VBD'), ('the', 'DT'), ('nazis', 'JJ'), ('feelings', 'NNS'), ('of', 'IN'), ('aryan', 'JJ'), ('racial', 'JJ'), ('superiority', 'NN'), ('over', 'IN'), ('the', 'DT'), ('turks', 'NNS'), ('the', 'DT'), ('second', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('book', 'NN'), ('deals', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('holocaust', 'NN'), ('which', 'WDT'), ('began', 'VBD'), ('in', 'IN'), ('1940', 'CD'), ('when', 'WRB'), ('the', 'DT'), ('nazis', 'JJ'), ('occupied', 'JJ'), ('france', 'NN'), ('in', 'IN'), ('europe', 'NN'), ('at', 'IN'), ('that', 'DT'), ('time', 'NN'), ('and', 'CC'), ('especially', 'RB'), ('in', 'IN'), ('france', 'NN'), ('there', 'EX'), ('were', 'VBD'), ('about', 'IN'), ('20', 'CD'), ('000', 'CD'), ('turkish', 'JJ'), ('jews', 'NNS'), ('they', 'PRP'), ('had', 'VBD'), ('migrated', 'VBN'), ('to', 'TO'), ('europe', 'VB'), ('for', 'IN'), ('various', 'JJ'), ('reasons', 'NNS'), ('from', 'IN'), ('about', 'IN'), ('the', 'DT'), ('turn', 'NN'), ('of', 'IN'), ('the', 'DT'), ('century', 'NN'), ('onward', 'IN'), ('most', 'JJS'), ('of', 'IN'), ('them', 'PRP'), ('had', 'VBD'), ('settled', 'VBN'), ('in', 'IN'), ('europe', 'NN'), ('during', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('war', 'NN'), ('for', 'IN'), ('independence', 'NN'), ('after', 'IN'), ('world', 'NN'), ('war', 'NN'), ('when', 'WRB'), ('greece', 'NN'), ('was', 'VBD'), ('threatening', 'VBG'), ('to', 'TO'), ('overrun', 'VB'), ('turkey', 'RP'), ('the', 'DT'), ('greeks', 'NN'), ('had', 'VBD'), ('persecuted', 'VBN'), ('the', 'DT'), ('jews', 'NNS'), ('throughout', 'IN'), ('the', 'DT'), ('nineteenth', 'JJ'), ('century', 'NN'), ('and', 'CC'), ('the', 'DT'), ('jews', 'NNS'), ('feared', 'VBD'), ('what', 'WP'), ('might', 'MD'), ('happen', 'VB'), ('to', 'TO'), ('them', 'PRP'), ('if', 'IN'), ('the', 'DT'), ('greeks', 'NN'), ('took', 'VBD'), ('over', 'RP'), ('in', 'IN'), ('turkey', 'JJ'), ('many', 'JJ'), ('jews', 'NNS'), ('fled', 'VBD'), ('to', 'TO'), ('france', 'VB'), ('during', 'IN'), ('the', 'DT'), ('1920s', 'CD'), ('and', 'CC'), ('1930s', 'CD'), ('many', 'JJ'), ('also', 'RB'), ('abandoned', 'VBD'), ('their', 'PRP$'), ('turkish', 'JJ'), ('citizenship', 'NN'), ('and', 'CC'), ('became', 'VBD'), ('french', 'JJ'), ('citizens', 'NNS'), ('suddenly', 'RB'), ('the', 'DT'), ('nazis', 'NN'), ('invaded', 'VBD'), ('france', 'NN'), ('in', 'IN'), ('1940', 'CD'), ('and', 'CC'), ('started', 'VBD'), ('introducing', 'VBG'), ('all', 'DT'), ('sorts', 'NNS'), ('of', 'IN'), ('anti', 'JJ'), ('jewish', 'JJ'), ('laws', 'NNS'), ('the', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('soon', 'RB'), ('found', 'VBD'), ('that', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('not', 'RB'), ('worth', 'JJ'), ('very', 'RB'), ('much', 'JJ'), ('to', 'TO'), ('be', 'VB'), ('french', 'JJ'), ('jew', 'NN'), ('but', 'CC'), ('that', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('worth', 'JJ'), ('lot', 'NN'), ('to', 'TO'), ('be', 'VB'), ('turkish', 'JJ'), ('jew', 'NN'), ('how', 'WRB'), ('so', 'RB'), ('turkey', 'JJ'), ('remained', 'VBD'), ('neutral', 'JJ'), ('through', 'IN'), ('most', 'JJS'), ('of', 'IN'), ('world', 'NN'), ('war', 'NN'), ('ii', 'VBP'), ('it', 'PRP'), ('retained', 'VBD'), ('its', 'PRP$'), ('embassies', 'NNS'), ('and', 'CC'), ('consulates', 'NNS'), ('in', 'IN'), ('all', 'PDT'), ('the', 'DT'), ('nazi', 'JJ'), ('occupied', 'JJ'), ('countries', 'NNS'), ('until', 'IN'), ('it', 'PRP'), ('finally', 'RB'), ('entered', 'VBD'), ('the', 'DT'), ('war', 'NN'), ('on', 'IN'), ('the', 'DT'), ('side', 'NN'), ('of', 'IN'), ('the', 'DT'), ('allies', 'NNS'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('1944', 'CD'), ('during', 'IN'), ('the', 'DT'), ('war', 'NN'), ('therefore', 'IN'), ('turkey', 'NN'), ('was', 'VBD'), ('in', 'IN'), ('position', 'NN'), ('to', 'TO'), ('defend', 'VB'), ('its', 'PRP$'), ('citizens', 'NNS'), ('against', 'IN'), ('anti', 'JJ'), ('jewish', 'JJ'), ('measures', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('actions', 'NNS'), ('that', 'WDT'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('took', 'VBD'), ('form', 'NN'), ('the', 'DT'), ('second', 'JJ'), ('chapter', 'NN'), ('of', 'IN'), ('the', 'DT'), ('book', 'NN'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('who', 'WP'), ('were', 'VBD'), ('stationed', 'VBN'), ('in', 'IN'), ('france', 'NN'), ('in', 'IN'), ('particular', 'JJ'), ('intervened', 'VBD'), ('to', 'TO'), ('protect', 'VB'), ('jews', 'NNS'), ('of', 'IN'), ('turkish', 'JJ'), ('citizenship', 'NN'), ('from', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('for', 'IN'), ('those', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('who', 'WP'), ('had', 'VBD'), ('retained', 'VBN'), ('their', 'PRP$'), ('turkish', 'JJ'), ('citizenship', 'NN'), ('there', 'EX'), ('was', 'VBD'), ('generally', 'RB'), ('no', 'DT'), ('problem', 'NN'), ('if', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('arrested', 'VBN'), ('and', 'CC'), ('sent', 'VBN'), ('to', 'TO'), ('concentration', 'NN'), ('camp', 'VB'), ('the', 'DT'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('would', 'MD'), ('communicate', 'VB'), ('with', 'IN'), ('the', 'DT'), ('commanders', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('camp', 'NN'), ('and', 'CC'), ('other', 'JJ'), ('officials', 'NNS'), ('and', 'CC'), ('say', 'VB'), ('in', 'IN'), ('effect', 'NN'), ('these', 'DT'), ('people', 'NNS'), ('are', 'VBP'), ('turkish', 'JJ'), ('citizens', 'NNS'), ('you', 'PRP'), ('can', 'MD'), ('do', 'VB'), ('this', 'DT'), ('to', 'TO'), ('them', 'PRP'), ('."', 'VB'), ('and', 'CC'), ('the', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('would', 'MD'), ('be', 'VB'), ('released', 'VBN'), ('if', 'IN'), ('their', 'PRP$'), ('businesses', 'NNS'), ('were', 'VBD'), ('confiscated', 'VBN'), ('the', 'DT'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('would', 'MD'), ('protest', 'VB'), ('and', 'CC'), ('the', 'DT'), ('businesses', 'NNS'), ('would', 'MD'), ('be', 'VB'), ('restored', 'VBN'), ('the', 'DT'), ('nazis', 'NN'), ('in', 'IN'), ('general', 'JJ'), ('wanted', 'VBD'), ('to', 'TO'), ('keep', 'VB'), ('the', 'DT'), ('friendship', 'NN'), ('of', 'IN'), ('turkey', 'NN'), ('they', 'PRP'), ('hoped', 'VBD'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('use', 'VB'), ('turkey', 'NN'), ('as', 'IN'), ('gateway', 'NN'), ('for', 'IN'), ('an', 'DT'), ('invasion', 'NN'), ('of', 'IN'), ('the', 'DT'), ('middle', 'JJ'), ('east', 'NN'), ('and', 'CC'), ('they', 'PRP'), ('also', 'RB'), ('wanted', 'VBD'), ('to', 'TO'), ('obtain', 'VB'), ('chromium', 'NN'), ('and', 'CC'), ('manganese', 'NN'), ('from', 'IN'), ('turkey', 'NN'), ('in', 'IN'), ('order', 'NN'), ('to', 'TO'), ('keep', 'VB'), ('turkish', 'JJ'), ('friendship', 'NN'), ('they', 'PRP'), ('usually', 'RB'), ('accepted', 'VBD'), ('these', 'DT'), ('interventions', 'NNS'), ('on', 'IN'), ('behalf', 'NN'), ('of', 'IN'), ('turkish', 'JJ'), ('jews', 'NNS'), ('the', 'DT'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('sometimes', 'RB'), ('went', 'VBD'), ('to', 'TO'), ('the', 'DT'), ('concentration', 'NN'), ('camps', 'NNS'), ('to', 'TO'), ('secure', 'VB'), ('the', 'DT'), ('release', 'NN'), ('of', 'IN'), ('turkish', 'JJ'), ('jews', 'NNS'), ('at', 'IN'), ('times', 'NNS'), ('they', 'PRP'), ('even', 'RB'), ('boarded', 'VBD'), ('trains', 'NNS'), ('hauling', 'VBG'), ('turkish', 'JJ'), ('jews', 'NNS'), ('to', 'TO'), ('auschwitz', 'VB'), ('for', 'IN'), ('extermination', 'NN'), ('and', 'CC'), ('succeeded', 'VBN'), ('in', 'IN'), ('getting', 'VBG'), ('them', 'PRP'), ('off', 'RP'), ('the', 'DT'), ('train', 'NN'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('foreign', 'JJ'), ('jews', 'NNS'), ('were', 'VBD'), ('sent', 'VBN'), ('to', 'TO'), ('concentration', 'NN'), ('camp', 'NN'), ('at', 'IN'), ('place', 'NN'), ('called', 'VBN'), ('drancy', 'NN'), ('in', 'IN'), ('paris', 'NN'), ('and', 'CC'), ('that', 'IN'), ('where', 'WRB'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('intercession', 'NN'), ('by', 'IN'), ('turkish', 'JJ'), ('consuls', 'NNS'), ('took', 'VBD'), ('place', 'NN'), ('the', 'DT'), ('greater', 'JJR'), ('problem', 'NN'), ('came', 'VBD'), ('with', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('who', 'WP'), ('had', 'VBD'), ('abandoned', 'VBN'), ('their', 'PRP$'), ('turkish', 'JJ'), ('citizenship', 'NN'), ('and', 'CC'), ('had', 'VBD'), ('become', 'VBN'), ('french', 'JJ'), ('citizens', 'NNS'), ('the', 'DT'), ('consuls', 'NN'), ('couldn', 'NN'), ('declare', 'NN'), ('that', 'IN'), ('these', 'DT'), ('people', 'NNS'), ('were', 'VBD'), ('turkish', 'JJ'), ('citizens', 'NNS'), ('because', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('not', 'RB'), ('my', 'PRP$'), ('book', 'NN'), ('includes', 'VBZ'), ('photographs', 'NN'), ('of', 'IN'), ('jews', 'NNS'), ('lining', 'VBG'), ('up', 'RP'), ('in', 'IN'), ('front', 'NN'), ('of', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('consulate', 'NN'), ('either', 'DT'), ('to', 'TO'), ('get', 'VB'), ('passports', 'NNS'), ('to', 'TO'), ('return', 'VB'), ('to', 'TO'), ('turkey', 'VB'), ('or', 'CC'), ('to', 'TO'), ('get', 'VB'), ('restoration', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('turkish', 'JJ'), ('citizenship', 'NN'), ('this', 'DT'), ('was', 'VBD'), ('bureaucratic', 'JJ'), ('matter', 'NN'), ('so', 'RB'), ('processing', 'VBG'), ('the', 'DT'), ('application', 'NN'), ('would', 'MD'), ('take', 'VB'), ('some', 'DT'), ('time', 'NN'), ('in', 'IN'), ('the', 'DT'), ('meantime', 'NN'), ('it', 'PRP'), ('was', 'VBD'), ('real', 'JJ'), ('emergency', 'NN'), ('because', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('would', 'MD'), ('arrest', 'VB'), ('jews', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('streets', 'NNS'), ('for', 'IN'), ('almost', 'RB'), ('nothing', 'NN'), ('the', 'DT'), ('nazis', 'NN'), ('would', 'MD'), ('even', 'RB'), ('arrest', 'VB'), ('them', 'PRP'), ('if', 'IN'), ('they', 'PRP'), ('had', 'VBD'), ('radios', 'NNS'), ('or', 'CC'), ('telephones', 'NNS'), ('in', 'IN'), ('their', 'PRP$'), ('apartments', 'NNS'), ('because', 'IN'), ('radios', 'NNS'), ('and', 'CC'), ('telephones', 'NNS'), ('were', 'VBD'), ('forbidden', 'VBN'), ('to', 'TO'), ('jews', 'VB'), ('to', 'TO'), ('take', 'VB'), ('care', 'NN'), ('of', 'IN'), ('these', 'DT'), ('former', 'JJ'), ('turkish', 'NN'), ('jews', 'VBZ'), ('the', 'DT'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('invented', 'VBD'), ('document', 'NN'), ('called', 'VBN'), ('gayri', 'NN'), ('muntazem', 'NN'), ('vatandash', 'NN'), ('or', 'CC'), ('irregular', 'JJ'), ('fellow', 'JJ'), ('citizen', 'NN'), ('."', 'VBD'), ('the', 'DT'), ('document', 'NN'), ('said', 'VBD'), ('in', 'IN'), ('effect', 'NN'), ('this', 'DT'), ('person', 'NN'), ('is', 'VBZ'), ('former', 'JJ'), ('turkish', 'JJ'), ('citizen', 'NN'), ('who', 'WP'), ('has', 'VBZ'), ('applied', 'VBN'), ('for', 'IN'), ('the', 'DT'), ('restoration', 'NN'), ('of', 'IN'), ('his', 'PRP$'), ('turkish', 'JJ'), ('citizenship', 'NN'), ('in', 'IN'), ('the', 'DT'), ('meantime', 'NN'), ('we', 'PRP'), ('would', 'MD'), ('appreciate', 'VB'), ('it', 'PRP'), ('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('treat', 'VB'), ('him', 'PRP'), ('as', 'IN'), ('if', 'IN'), ('he', 'PRP'), ('were', 'VBD'), ('turkish', 'JJ'), ('citizen', 'NN'), ('."', 'VBD'), ('the', 'DT'), ('diplomats', 'NNS'), ('wrote', 'VBD'), ('the', 'DT'), ('document', 'NN'), ('in', 'IN'), ('turkish', 'JJ'), ('and', 'CC'), ('put', 'VBD'), ('their', 'PRP$'), ('seals', 'NNS'), ('on', 'IN'), ('it', 'PRP'), ('since', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('could', 'MD'), ('not', 'RB'), ('read', 'VB'), ('turkish', 'NN'), ('on', 'IN'), ('the', 'DT'), ('whole', 'NN'), ('they', 'PRP'), ('accepted', 'VBD'), ('these', 'DT'), ('papers', 'NNS'), ('as', 'IN'), ('certificates', 'NNS'), ('of', 'IN'), ('citizenship', 'NN'), ('by', 'IN'), ('this', 'DT'), ('means', 'VBZ'), ('the', 'DT'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('were', 'VBD'), ('able', 'JJ'), ('to', 'TO'), ('rescue', 'VB'), ('many', 'JJ'), ('jews', 'NNS'), ('who', 'WP'), ('had', 'VBD'), ('relinquished', 'VBN'), ('their', 'PRP$'), ('turkish', 'JJ'), ('citizenship', 'NN'), ('actually', 'RB'), ('the', 'DT'), ('nazis', 'JJ'), ('were', 'VBD'), ('of', 'IN'), ('two', 'CD'), ('minds', 'NNS'), ('about', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('defense', 'NN'), ('of', 'IN'), ('jews', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('one', 'CD'), ('hand', 'NN'), ('the', 'DT'), ('nazi', 'JJ'), ('foreign', 'JJ'), ('ministry', 'NN'), ('which', 'WDT'), ('wanted', 'VBD'), ('to', 'TO'), ('retain', 'VB'), ('the', 'DT'), ('friendship', 'NN'), ('of', 'IN'), ('turkey', 'NN'), ('was', 'VBD'), ('in', 'IN'), ('favor', 'NN'), ('of', 'IN'), ('accepting', 'VBG'), ('these', 'DT'), ('interventions', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('other', 'JJ'), ('hand', 'NN'), ('himmler', 'NN'), ('and', 'CC'), ('eichmann', 'NN'), ('wanted', 'VBD'), ('all', 'DT'), ('jews', 'NNS'), ('exterminated', 'VBN'), ('at', 'IN'), ('times', 'NNS'), ('himmler', 'JJ'), ('and', 'CC'), ('eichmann', 'JJ'), ('were', 'VBD'), ('able', 'JJ'), ('to', 'TO'), ('prevail', 'VB'), ('and', 'CC'), ('some', 'DT'), ('of', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('were', 'VBD'), ('sent', 'VBN'), ('off', 'RB'), ('to', 'TO'), ('auschwitz', 'VB'), ('before', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('consuls', 'NN'), ('could', 'MD'), ('do', 'VB'), ('anything', 'NN'), ('do', 'VB'), ('you', 'PRP'), ('have', 'VB'), ('statistics', 'NNS'), ('on', 'IN'), ('how', 'WRB'), ('many', 'JJ'), ('turkish', 'JJ'), ('jews', 'NNS'), ('were', 'VBD'), ('rescued', 'VBN'), ('there', 'EX'), ('were', 'VBD'), ('about', 'IN'), ('20', 'CD'), ('000', 'CD'), ('turkish', 'JJ'), ('jews', 'NNS'), ('in', 'IN'), ('europe', 'NN'), ('before', 'IN'), ('world', 'NN'), ('war', 'NN'), ('ii', 'VBP'), ('about', 'IN'), ('10', 'CD'), ('000', 'CD'), ('of', 'IN'), ('whom', 'WP'), ('were', 'VBD'), ('living', 'VBG'), ('in', 'IN'), ('france', 'NN'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('information', 'NN'), ('in', 'IN'), ('this', 'DT'), ('section', 'NN'), ('of', 'IN'), ('the', 'DT'), ('book', 'NN'), ('relates', 'VBZ'), ('to', 'TO'), ('the', 'DT'), ('situation', 'NN'), ('in', 'IN'), ('france', 'NN'), ('have', 'VBP'), ('published', 'VBN'), ('the', 'DT'), ('letters', 'NNS'), ('that', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('consuls', 'NN'), ('sent', 'VBD'), ('to', 'TO'), ('the', 'DT'), ('nazi', 'JJ'), ('officials', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('letters', 'NNS'), ('that', 'WDT'), ('came', 'VBD'), ('back', 'RB'), ('in', 'IN'), ('reply', 'NN'), ('generally', 'RB'), ('the', 'DT'), ('nazis', 'NN'), ('said', 'VBD'), ('that', 'IN'), ('if', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('consul', 'NN'), ('would', 'MD'), ('present', 'VB'), ('documents', 'NNS'), ('certifying', 'VBG'), ('that', 'IN'), ('arrested', 'VBN'), ('individuals', 'NNS'), ('are', 'VBP'), ('turkish', 'JJ'), ('citizens', 'NNS'), ('and', 'CC'), ('promise', 'NN'), ('to', 'TO'), ('send', 'VB'), ('them', 'PRP'), ('out', 'IN'), ('of', 'IN'), ('france', 'NN'), ('the', 'DT'), ('nazis', 'NN'), ('would', 'MD'), ('release', 'VB'), ('them', 'PRP'), ('from', 'IN'), ('the', 'DT'), ('concentration', 'NN'), ('camp', 'VBZ'), ('the', 'DT'), ('turkish', 'JJ'), ('consuls', 'NN'), ('also', 'RB'), ('organized', 'VBN'), ('special', 'JJ'), ('trains', 'NNS'), ('to', 'TO'), ('take', 'VB'), ('turkish', 'JJ'), ('jews', 'NNS'), ('from', 'IN'), ('nazi', 'JJ'), ('occupied', 'JJ'), ('territory', 'NN'), ('back', 'RB'), ('to', 'TO'), ('turkey', 'VB'), ('these', 'DT'), ('trains', 'NNS'), ('ran', 'VBD'), ('regularly', 'RB'), ('in', 'IN'), ('1943', 'CD'), ('and', 'CC'), ('1944', 'CD'), ('the', 'DT'), ('nazis', 'NN'), ('gave', 'VBD'), ('the', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('visas', 'NNS'), ('so', 'IN'), ('they', 'PRP'), ('could', 'MD'), ('pass', 'VB'), ('out', 'IN'), ('of', 'IN'), ('nazi', 'JJ'), ('territory', 'NN'), ('but', 'CC'), ('the', 'DT'), ('trains', 'NNS'), ('were', 'VBD'), ('often', 'RB'), ('held', 'VBN'), ('up', 'RP'), ('by', 'IN'), ('the', 'DT'), ('nazi', 'NN'), ('influenced', 'VBD'), ('governments', 'NNS'), ('of', 'IN'), ('eastern', 'JJ'), ('europe', 'NN'), ('croatia', 'NN'), ('serbia', 'NN'), ('and', 'CC'), ('bulgaria', 'NN'), ('because', 'IN'), ('these', 'DT'), ('governments', 'NNS'), ('really', 'RB'), ('didn', 'VBP'), ('want', 'VBP'), ('the', 'DT'), ('jews', 'NN'), ('to', 'TO'), ('escape', 'VB'), ('as', 'IN'), ('result', 'NN'), ('of', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('consuls', 'NN'), ('efforts', 'NNS'), ('about', 'IN'), ('000', 'CD'), ('to', 'TO'), ('000', 'CD'), ('of', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('in', 'IN'), ('france', 'NN'), ('were', 'VBD'), ('saved', 'VBN'), ('another', 'DT'), ('000', 'CD'), ('were', 'VBD'), ('sent', 'VBN'), ('off', 'RB'), ('to', 'TO'), ('auschwitz', 'VB'), ('where', 'WRB'), ('most', 'JJS'), ('of', 'IN'), ('them', 'PRP'), ('died', 'VBD'), ('the', 'DT'), ('remaining', 'VBG'), ('000', 'CD'), ('either', 'CC'), ('escaped', 'VBD'), ('across', 'IN'), ('the', 'DT'), ('border', 'NN'), ('into', 'IN'), ('spain', 'NN'), ('or', 'CC'), ('fled', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('area', 'NN'), ('of', 'IN'), ('southern', 'JJ'), ('france', 'NN'), ('occupied', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('italians', 'NNS'), ('who', 'WP'), ('treated', 'VBD'), ('jews', 'NNS'), ('much', 'RB'), ('better', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('did', 'VBD'), ('at', 'IN'), ('the', 'DT'), ('end', 'NN'), ('of', 'IN'), ('1943', 'CD'), ('however', 'RB'), ('italy', 'NN'), ('fell', 'VBD'), ('out', 'IN'), ('of', 'IN'), ('the', 'DT'), ('war', 'NN'), ('and', 'CC'), ('that', 'DT'), ('was', 'VBD'), ('the', 'DT'), ('end', 'NN'), ('for', 'IN'), ('those', 'DT'), ('jews', 'NNS'), ('as', 'RB'), ('well', 'RB'), ('incidentally', 'RB'), ('the', 'DT'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('in', 'IN'), ('nazi', 'JJ'), ('occupied', 'JJ'), ('greece', 'NN'), ('also', 'RB'), ('worked', 'VBD'), ('to', 'TO'), ('rescue', 'VB'), ('jews', 'NNS'), ('in', 'IN'), ('that', 'DT'), ('country', 'NN'), ('the', 'DT'), ('second', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('your', 'PRP$'), ('book', 'NN'), ('then', 'RB'), ('deals', 'VBZ'), ('with', 'IN'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('acting', 'VBG'), ('to', 'TO'), ('rescue', 'VB'), ('jews', 'NNS'), ('of', 'IN'), ('turkish', 'JJ'), ('citizenship', 'NN'), ('or', 'CC'), ('turkish', 'JJ'), ('origin', 'NN'), ('from', 'IN'), ('nazi', 'JJ'), ('persecution', 'NN'), ('yes', 'NNS'), ('and', 'CC'), ('there', 'EX'), ('is', 'VBZ'), ('an', 'DT'), ('aside', 'JJ'), ('might', 'MD'), ('add', 'VB'), ('here', 'RB'), ('in', 'IN'), ('their', 'PRP$'), ('interventions', 'NNS'), ('on', 'IN'), ('behalf', 'NN'), ('of', 'IN'), ('turkish', 'JJ'), ('jews', 'NNS'), ('the', 'DT'), ('turks', 'NNS'), ('cited', 'VBD'), ('their', 'PRP$'), ('treaty', 'NN'), ('with', 'IN'), ('germany', 'NN'), ('which', 'WDT'), ('stated', 'VBD'), ('that', 'IN'), ('turkish', 'JJ'), ('citizens', 'NNS'), ('in', 'IN'), ('german', 'JJ'), ('territory', 'NN'), ('would', 'MD'), ('be', 'VB'), ('treated', 'VBN'), ('the', 'DT'), ('same', 'JJ'), ('as', 'IN'), ('german', 'JJ'), ('citizens', 'NNS'), ('in', 'IN'), ('turkey', 'NN'), ('on', 'IN'), ('that', 'DT'), ('basis', 'NN'), ('the', 'DT'), ('turks', 'NNS'), ('maintained', 'VBD'), ('that', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('could', 'MD'), ('not', 'RB'), ('discriminate', 'VB'), ('against', 'IN'), ('turkish', 'JJ'), ('citizens', 'NNS'), ('who', 'WP'), ('are', 'VBP'), ('jews', 'VBZ'), ('the', 'DT'), ('nazis', 'NN'), ('claimed', 'VBD'), ('and', 'CC'), ('the', 'DT'), ('vichy', 'JJ'), ('government', 'NN'), ('agreed', 'VBD'), ('that', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('not', 'RB'), ('discriminating', 'VBG'), ('because', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('treating', 'VBG'), ('all', 'DT'), ('jews', 'NNS'), ('equally', 'RB'), ('turkey', 'RB'), ('protested', 'VBN'), ('saying', 'VBG'), ('you', 'PRP'), ('are', 'VBP'), ('dividing', 'VBG'), ('our', 'PRP$'), ('citizens', 'NNS'), ('according', 'VBG'), ('to', 'TO'), ('religion', 'NN'), ('but', 'CC'), ('the', 'DT'), ('turkish', 'JJ'), ('constitution', 'NN'), ('requires', 'VBZ'), ('that', 'IN'), ('all', 'DT'), ('citizens', 'NNS'), ('be', 'VB'), ('treated', 'VBN'), ('equally', 'RB'), ('regardless', 'RB'), ('of', 'IN'), ('religion', 'NN'), ('therefore', 'IN'), ('you', 'PRP'), ('cannot', 'VBP'), ('single', 'JJ'), ('out', 'IN'), ('turkish', 'JJ'), ('jews', 'NNS'), ('."', 'VBP'), ('american', 'JJ'), ('consuls', 'NN'), ('in', 'IN'), ('paris', 'NN'), ('by', 'IN'), ('contrast', 'NN'), ('accepted', 'VBD'), ('the', 'DT'), ('nazi', 'JJ'), ('argument', 'NN'), ('and', 'CC'), ('told', 'VBD'), ('american', 'JJ'), ('jews', 'NNS'), ('who', 'WP'), ('were', 'VBD'), ('being', 'VBG'), ('persecuted', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('that', 'IN'), ('they', 'PRP'), ('couldn', 'VBP'), ('do', 'VBP'), ('anything', 'NN'), ('about', 'IN'), ('it', 'PRP'), ('because', 'IN'), ('the', 'DT'), ('american', 'JJ'), ('jews', 'NNS'), ('were', 'VBD'), ('being', 'VBG'), ('treated', 'VBN'), ('the', 'DT'), ('same', 'JJ'), ('as', 'IN'), ('other', 'JJ'), ('jews', 'VBZ'), ('the', 'DT'), ('third', 'JJ'), ('part', 'NN'), ('of', 'IN'), ('the', 'DT'), ('book', 'NN'), ('takes', 'VBZ'), ('place', 'NN'), ('in', 'IN'), ('turkey', 'NN'), ('which', 'WDT'), ('was', 'VBD'), ('the', 'DT'), ('principal', 'JJ'), ('center', 'NN'), ('during', 'IN'), ('the', 'DT'), ('holocaust', 'NN'), ('for', 'IN'), ('activities', 'NNS'), ('aimed', 'VBN'), ('at', 'IN'), ('the', 'DT'), ('rescue', 'NN'), ('of', 'IN'), ('eastern', 'JJ'), ('european', 'JJ'), ('jews', 'NN'), ('the', 'DT'), ('kwish', 'JJ'), ('agency', 'NN'), ('an', 'DT'), ('organization', 'NN'), ('established', 'VBN'), ('by', 'IN'), ('jews', 'NNS'), ('in', 'IN'), ('palestine', 'NN'), ('to', 'TO'), ('help', 'VB'), ('resettle', 'VB'), ('jews', 'NNS'), ('to', 'TO'), ('palestine', 'VB'), ('set', 'VBN'), ('up', 'RP'), ('an', 'DT'), ('office', 'NN'), ('in', 'IN'), ('istanbul', 'NN'), ('in', 'IN'), ('1940', 'CD'), ('under', 'IN'), ('the', 'DT'), ('leadership', 'NN'), ('of', 'IN'), ('chaim', 'NN'), ('barlas', 'IN'), ('other', 'JJ'), ('jewish', 'JJ'), ('organizations', 'NNS'), ('in', 'IN'), ('palestine', 'NN'), ('especially', 'RB'), ('the', 'DT'), ('kibbutzes', 'NNS'), ('also', 'RB'), ('sent', 'VBD'), ('representatives', 'NNS'), ('to', 'TO'), ('istanbul', 'VB'), ('to', 'TO'), ('set', 'VB'), ('up', 'RP'), ('headquarters', 'NNS'), ('these', 'DT'), ('groups', 'NNS'), ('first', 'RB'), ('tried', 'VBD'), ('to', 'TO'), ('contact', 'VB'), ('jews', 'NNS'), ('in', 'IN'), ('eastern', 'JJ'), ('europe', 'NN'), ('to', 'TO'), ('find', 'VB'), ('out', 'RP'), ('what', 'WP'), ('was', 'VBD'), ('happening', 'VBG'), ('today', 'NN'), ('we', 'PRP'), ('know', 'VBP'), ('about', 'IN'), ('the', 'DT'), ('holocaust', 'NN'), ('but', 'CC'), ('at', 'IN'), ('that', 'DT'), ('time', 'NN'), ('people', 'NNS'), ('didn', 'VBP'), ('know', 'VB'), ('what', 'WP'), ('was', 'VBD'), ('going', 'VBG'), ('on', 'IN'), ('they', 'PRP'), ('didn', 'VBP'), ('imagine', 'VB'), ('the', 'DT'), ('nazis', 'NN'), ('could', 'MD'), ('do', 'VB'), ('the', 'DT'), ('things', 'NNS'), ('they', 'PRP'), ('were', 'VBD'), ('doing', 'VBG'), ('and', 'CC'), ('so', 'RB'), ('the', 'DT'), ('first', 'JJ'), ('step', 'NN'), ('was', 'VBD'), ('to', 'TO'), ('get', 'VB'), ('information', 'NN'), ('and', 'CC'), ('the', 'DT'), ('turkish', 'JJ'), ('government', 'NN'), ('let', 'VBD'), ('them', 'PRP'), ('use', 'VB'), ('the', 'DT'), ('turkish', 'JJ'), ('mails', 'NNS'), ('to', 'TO'), ('send', 'VB'), ('letters', 'NNS'), ('to', 'TO'), ('their', 'PRP$'), ('relatives', 'NNS'), ('and', 'CC'), ('friends', 'NNS'), ('in', 'IN'), ('eastern', 'JJ'), ('europe', 'VBP'), ('the', 'DT'), ('jewish', 'JJ'), ('organizations', 'NNS'), ('found', 'VBD'), ('out', 'RP'), ('what', 'WP'), ('was', 'VBD'), ('happening', 'VBG'), ('when', 'WRB'), ('they', 'PRP'), ('received', 'VBD'), ('replies', 'NNS'), ('later', 'RBR'), ('on', 'IN'), ('when', 'WRB'), ('the', 'DT'), ('nazis', 'NN'), ('began', 'VBD'), ('to', 'TO'), ('intercept', 'VB'), ('such', 'JJ'), ('letters', 'NNS'), ('the', 'DT'), ('jews', 'NNS'), ('received', 'VBD'), ('assistance', 'NN'), ('also', 'RB'), ('from', 'IN'), ('the', 'DT'), ('vatican', 'JJ'), ('nuncio', 'NN'), ('angelo', 'NN'), ('roncali', 'NN'), ('who', 'WP'), ('served', 'VBD'), ('as', 'IN'), ('the', 'DT'), ('vatican', 'JJ'), ('representative', 'NN'), ('in', 'IN'), ('istanbul', 'NN'), ('from', 'IN'), ('1935', 'CD'), ('to', 'TO'), ('1944', 'CD'), ('and', 'CC'), ('later', 'RB'), ('became', 'VBD'), ('pope', 'JJ'), ('john', 'NN'), ('xxiii', 'NNP'), ('as', 'IN'), ('the', 'DT'), ('vatican', 'JJ'), ('representative', 'NN'), ('during', 'IN'), ('the', 'DT'), ('war', 'NN'), ('he', 'PRP'), ('used', 'VBD'), ('the', 'DT'), ('facilities', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('catholic', 'JJ'), ('church', 'NN'), ('to', 'TO'), ('supplement', 'VB'), ('what', 'WP'), ('the', 'DT'), ('turkish', 'JJ'), ('government', 'NN'), ('was', 'VBD'), ('doing', 'VBG'), ('to', 'TO'), ('assist', 'VB'), ('jewish', 'JJ'), ('agencies', 'NNS'), ('in', 'IN'), ('contacting', 'VBG'), ('jews', 'NNS'), ('in', 'IN'), ('eastern', 'JJ'), ('europe', 'NN'), ('with', 'IN'), ('the', 'DT'), ('cooperation', 'NN'), ('of', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('government', 'NN'), ('these', 'DT'), ('agencies', 'NNS'), ('then', 'RB'), ('sent', 'VBD'), ('hard', 'JJ'), ('currency', 'NN'), ('food', 'NN'), ('clothing', 'NN'), ('and', 'CC'), ('even', 'RB'), ('railroad', 'NN'), ('and', 'CC'), ('steamship', 'JJ'), ('tickets', 'NNS'), ('to', 'TO'), ('jews', 'NNS'), ('in', 'IN'), ('czechoslovakia', 'NN'), ('bulgaria', 'NN'), ('romania', 'NN'), ('and', 'CC'), ('hungary', 'NN'), ('they', 'PRP'), ('weren', 'VBP'), ('able', 'JJ'), ('to', 'TO'), ('help', 'VB'), ('much', 'RB'), ('in', 'IN'), ('poland', 'NN'), ('because', 'IN'), ('by', 'IN'), ('then', 'RB'), ('the', 'DT'), ('nazis', 'NN'), ('had', 'VBD'), ('wiped', 'VBN'), ('out', 'RP'), ('almost', 'RB'), ('all', 'PDT'), ('the', 'DT'), ('polish', 'JJ'), ('jews', 'NNS'), ('whenever', 'WRB'), ('possible', 'JJ'), ('the', 'DT'), ('rescue', 'NN'), ('agencies', 'NNS'), ('arranged', 'VBD'), ('for', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('to', 'TO'), ('get', 'VB'), ('out', 'IN'), ('of', 'IN'), ('eastern', 'JJ'), ('europe', 'NN'), ('either', 'CC'), ('by', 'IN'), ('train', 'NN'), ('through', 'IN'), ('the', 'DT'), ('so', 'RB'), ('called', 'JJ'), ('orient', 'NN'), ('express', 'NN'), ('route', 'NN'), ('to', 'TO'), ('istanbul', 'VB'), ('or', 'CC'), ('by', 'IN'), ('boat', 'NN'), ('through', 'IN'), ('the', 'DT'), ('black', 'JJ'), ('sea', 'NN'), ('to', 'TO'), ('istanbul', 'VB'), ('turkey', 'NN'), ('was', 'VBD'), ('not', 'RB'), ('eager', 'JJ'), ('for', 'IN'), ('all', 'PDT'), ('these', 'DT'), ('refugees', 'NNS'), ('to', 'TO'), ('remain', 'VB'), ('within', 'IN'), ('its', 'PRP$'), ('borders', 'NNS'), ('during', 'IN'), ('the', 'DT'), ('war', 'NN'), ('because', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('being', 'VBG'), ('blockaded', 'VBN'), ('and', 'CC'), ('was', 'VBD'), ('suffering', 'VBG'), ('terrible', 'JJ'), ('shortages', 'NNS'), ('of', 'IN'), ('food', 'NN'), ('and', 'CC'), ('clothing', 'NN'), ('the', 'DT'), ('government', 'NN'), ('therefore', 'RB'), ('facilitated', 'VBD'), ('the', 'DT'), ('movement', 'NN'), ('of', 'IN'), ('the', 'DT'), ('non', 'JJ'), ('turkish', 'JJ'), ('jewish', 'JJ'), ('refugees', 'NNS'), ('from', 'IN'), ('turkey', 'NN'), ('to', 'TO'), ('palestine', 'VB'), ('either', 'RB'), ('by', 'IN'), ('the', 'DT'), ('taurus', 'NN'), ('express', 'NN'), ('railroad', 'NN'), ('through', 'IN'), ('the', 'DT'), ('mountains', 'NNS'), ('to', 'TO'), ('syria', 'NNS'), ('and', 'CC'), ('palestine', 'NN'), ('or', 'CC'), ('by', 'IN'), ('small', 'JJ'), ('boats', 'NNS'), ('across', 'IN'), ('the', 'DT'), ('eastern', 'JJ'), ('mediterranean', 'NN'), ('from', 'IN'), ('southern', 'JJ'), ('turkey', 'NN'), ('to', 'TO'), ('palestine', 'VB'), ('these', 'DT'), ('efforts', 'NNS'), ('were', 'VBD'), ('bitterly', 'RB'), ('opposed', 'VBN'), ('not', 'RB'), ('only', 'RB'), ('by', 'IN'), ('the', 'DT'), ('nazis', 'NN'), ('but', 'CC'), ('also', 'RB'), ('by', 'IN'), ('the', 'DT'), ('british', 'JJ'), ('who', 'WP'), ('did', 'VBD'), ('not', 'RB'), ('want', 'VB'), ('any', 'DT'), ('more', 'JJR'), ('jewish', 'JJ'), ('immigration', 'NN'), ('to', 'TO'), ('palestine', 'VB'), ('because', 'IN'), ('they', 'PRP'), ('feared', 'VBD'), ('it', 'PRP'), ('would', 'MD'), ('hurt', 'VB'), ('their', 'PRP$'), ('relations', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('arabs', 'NNS'), ('the', 'DT'), ('british', 'JJ'), ('constantly', 'RB'), ('pressured', 'VBD'), ('the', 'DT'), ('turkish', 'JJ'), ('government', 'NN'), ('to', 'TO'), ('stop', 'VB'), ('this', 'DT'), ('traffic', 'NN'), ('and', 'CC'), ('send', 'VBP'), ('those', 'DT'), ('jews', 'NNS'), ('back', 'RB'), ('in', 'IN'), ('few', 'JJ'), ('cases', 'NNS'), ('the', 'DT'), ('turkish', 'JJ'), ('government', 'NN'), ('yielding', 'VBG'), ('to', 'TO'), ('british', 'JJ'), ('pressure', 'NN'), ('did', 'VBD'), ('send', 'VB'), ('the', 'DT'), ('boats', 'NNS'), ('back', 'RB'), ('for', 'IN'), ('example', 'NN'), ('in', 'IN'), ('one', 'CD'), ('incident', 'NN'), ('the', 'DT'), ('steamship', 'NN'), ('struma', 'NN'), ('with', 'IN'), ('some', 'DT'), ('700', 'CD'), ('jewish', 'JJ'), ('refugees', 'NNS'), ('from', 'IN'), ('romania', 'NN'), ('was', 'VBD'), ('sent', 'VBN'), ('back', 'RB'), ('by', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('government', 'NN'), ('as', 'IN'), ('result', 'NN'), ('of', 'IN'), ('the', 'DT'), ('intervention', 'NN'), ('of', 'IN'), ('the', 'DT'), ('british', 'JJ'), ('ambassador', 'NN'), ('when', 'WRB'), ('that', 'DT'), ('ship', 'NN'), ('was', 'VBD'), ('sunk', 'VBN'), ('by', 'IN'), ('soviet', 'JJ'), ('submarine', 'NN'), ('all', 'DT'), ('were', 'VBD'), ('lost', 'VBN'), ('except', 'IN'), ('one', 'CD'), ('person', 'NN'), ('nevertheless', 'RB'), ('all', 'DT'), ('told', 'VBD'), ('the', 'DT'), ('turkish', 'JJ'), ('government', 'NN'), ('allowed', 'VBD'), ('no', 'DT'), ('fewer', 'JJR'), ('than', 'IN'), ('100', 'CD'), ('000', 'CD'), ('eastern', 'JJ'), ('european', 'JJ'), ('jews', 'NN'), ('to', 'TO'), ('pass', 'VB'), ('through', 'IN'), ('turkish', 'JJ'), ('territory', 'NN'), ('and', 'CC'), ('move', 'VB'), ('on', 'IN'), ('to', 'TO'), ('palestine', 'VB'), ('during', 'IN'), ('the', 'DT'), ('second', 'JJ'), ('world', 'NN'), ('war', 'NN'), ('the', 'DT'), ('turkish', 'JJ'), ('authorities', 'NNS'), ('also', 'RB'), ('provided', 'VBD'), ('these', 'DT'), ('refugees', 'NNS'), ('with', 'IN'), ('facilities', 'NNS'), ('and', 'CC'), ('money', 'NN'), ('and', 'CC'), ('gave', 'VBD'), ('them', 'PRP'), ('permission', 'NN'), ('to', 'TO'), ('send', 'VB'), ('money', 'NN'), ('and', 'CC'), ('food', 'NN'), ('out', 'IN'), ('of', 'IN'), ('the', 'DT'), ('country', 'NN'), ('many', 'JJ'), ('of', 'IN'), ('these', 'DT'), ('jews', 'NNS'), ('who', 'WP'), ('passed', 'VBD'), ('through', 'IN'), ('turkey', 'NN'), ('may', 'MD'), ('still', 'RB'), ('be', 'VB'), ('living', 'VBG'), ('in', 'IN'), ('israel', 'JJ'), ('yes', 'NNS'), ('and', 'CC'), ('their', 'PRP$'), ('children', 'NNS'), ('but', 'CC'), ('let', 'VB'), ('return', 'NN'), ('for', 'IN'), ('moment', 'NN'), ('to', 'TO'), ('the', 'DT'), ('first', 'JJ'), ('group', 'NN'), ('the', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('who', 'WP'), ('came', 'VBD'), ('from', 'IN'), ('europe', 'NN'), ('they', 'PRP'), ('did', 'VBD'), ('not', 'RB'), ('go', 'VB'), ('on', 'IN'), ('to', 'TO'), ('palestine', 'VB'), ('they', 'PRP'), ('stayed', 'VBN'), ('in', 'IN'), ('turkey', 'NN'), ('it', 'PRP'), ('was', 'VBD'), ('the', 'DT'), ('non', 'JJ'), ('turkish', 'JJ'), ('eastern', 'JJ'), ('european', 'JJ'), ('jews', 'NNS'), ('who', 'WP'), ('passed', 'VBD'), ('through', 'IN'), ('turkey', 'NN'), ('en', 'IN'), ('route', 'NN'), ('to', 'TO'), ('palestine', 'VB'), ('their', 'PRP$'), ('story', 'NN'), ('is', 'VBZ'), ('very', 'RB'), ('interesting', 'JJ'), ('and', 'CC'), ('you', 'PRP'), ('have', 'VBP'), ('rescued', 'VBN'), ('it', 'PRP'), ('from', 'IN'), ('obscurity', 'NN'), ('many', 'JJ'), ('studies', 'NNS'), ('have', 'VBP'), ('been', 'VBN'), ('made', 'VBN'), ('of', 'IN'), ('the', 'DT'), ('holocaust', 'NN'), ('but', 'CC'), ('most', 'JJS'), ('of', 'IN'), ('them', 'PRP'), ('do', 'VBP'), ('not', 'RB'), ('focus', 'VB'), ('on', 'IN'), ('the', 'DT'), ('eastern', 'JJ'), ('european', 'JJ'), ('or', 'CC'), ('middle', 'JJ'), ('eastern', 'JJ'), ('jews', 'VBZ'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('scholarship', 'NN'), ('has', 'VBZ'), ('centered', 'VBN'), ('on', 'IN'), ('the', 'DT'), ('western', 'JJ'), ('european', 'JJ'), ('jews', 'NN'), ('of', 'IN'), ('whom', 'WP'), ('million', 'CD'), ('were', 'VBD'), ('massacred', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('nazis', 'JJ'), ('my', 'PRP$'), ('study', 'NN'), ('deals', 'NNS'), ('with', 'IN'), ('much', 'JJ'), ('smaller', 'JJR'), ('number', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('have', 'VBP'), ('tried', 'VBN'), ('to', 'TO'), ('round', 'VB'), ('out', 'RP'), ('the', 'DT'), ('picture', 'NN'), ('and', 'CC'), ('hope', 'VB'), ('my', 'PRP$'), ('book', 'NN'), ('will', 'MD'), ('persuade', 'VB'), ('other', 'JJ'), ('scholars', 'NNS'), ('to', 'TO'), ('undertake', 'VB'), ('further', 'JJ'), ('investigations', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('history', 'NN'), ('of', 'IN'), ('eastern', 'JJ'), ('jews', 'NNS'), ('when', 'WRB'), ('it', 'PRP'), ('comes', 'VBZ'), ('to', 'TO'), ('numbers', 'NNS'), ('the', 'DT'), ('german', 'JJ'), ('jews', 'NNS'), ('were', 'VBD'), ('also', 'RB'), ('relatively', 'RB'), ('small', 'JJ'), ('in', 'IN'), ('number', 'NN'), ('most', 'JJS'), ('of', 'IN'), ('the', 'DT'), ('millions', 'NNS'), ('slain', 'VBP'), ('were', 'VBD'), ('polish', 'JJ'), ('jews', 'NNS'), ('the', 'DT'), ('rescue', 'NN'), ('of', 'IN'), ('100', 'CD'), ('000', 'CD'), ('eastern', 'JJ'), ('european', 'JJ'), ('jews', 'NN'), ('may', 'MD'), ('not', 'RB'), ('seem', 'VB'), ('so', 'RB'), ('significant', 'JJ'), ('compared', 'VBN'), ('with', 'IN'), ('the', 'DT'), ('total', 'NN'), ('of', 'IN'), ('million', 'CD'), ('who', 'WP'), ('were', 'VBD'), ('murdered', 'VBN'), ('but', 'CC'), ('it', 'PRP'), ('meant', 'VBD'), ('lot', 'NN'), ('to', 'TO'), ('those', 'DT'), ('who', 'WP'), ('were', 'VBD'), ('saved', 'VBN'), ('about', 'IN'), ('three', 'CD'), ('fourths', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('book', 'NN'), ('consists', 'VBZ'), ('of', 'IN'), ('documents', 'NNS'), ('translations', 'NNS'), ('of', 'IN'), ('many', 'JJ'), ('documents', 'NNS'), ('they', 'PRP'), ('are', 'VBP'), ('included', 'VBN'), ('because', 'IN'), ('the', 'DT'), ('story', 'NN'), ('is', 'VBZ'), ('not', 'RB'), ('well', 'RB'), ('known', 'VBN'), ('not', 'RB'), ('only', 'RB'), ('are', 'VBP'), ('people', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('west', 'NN'), ('unaware', 'NN'), ('of', 'IN'), ('the', 'DT'), ('courageous', 'JJ'), ('actions', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('diplomats', 'NNS'), ('even', 'RB'), ('the', 'DT'), ('people', 'NNS'), ('of', 'IN'), ('turkey', 'NN'), ('did', 'VBD'), ('not', 'RB'), ('know', 'VB'), ('the', 'DT'), ('story', 'NN'), ('felt', 'VBD'), ('that', 'IN'), ('they', 'PRP'), ('would', 'MD'), ('not', 'RB'), ('fully', 'RB'), ('understand', 'VB'), ('this', 'DT'), ('remarkable', 'JJ'), ('achievement', 'NN'), ('unless', 'IN'), ('they', 'PRP'), ('could', 'MD'), ('see', 'VB'), ('the', 'DT'), ('documents', 'NNS'), ('what', 'WP'), ('languages', 'NNS'), ('are', 'VBP'), ('used', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('documents', 'NNS'), ('most', 'JJS'), ('of', 'IN'), ('them', 'PRP'), ('are', 'VBP'), ('in', 'IN'), ('turkish', 'JJ'), ('or', 'CC'), ('french', 'JJ'), ('some', 'DT'), ('are', 'VBP'), ('in', 'IN'), ('hebrew', 'NN'), ('there', 'EX'), ('is', 'VBZ'), ('great', 'JJ'), ('deal', 'NN'), ('of', 'IN'), ('material', 'NN'), ('in', 'IN'), ('hebrew', 'NN'), ('about', 'IN'), ('the', 'DT'), ('organization', 'NN'), ('of', 'IN'), ('the', 'DT'), ('boats', 'NNS'), ('going', 'VBG'), ('to', 'TO'), ('palestine', 'VB'), ('the', 'DT'), ('passengers', 'NNS'), ('and', 'CC'), ('so', 'RB'), ('on', 'IN'), ('but', 'CC'), ('did', 'VBD'), ('not', 'RB'), ('go', 'VB'), ('into', 'IN'), ('those', 'DT'), ('details', 'NNS'), ('extensively', 'RB'), ('describe', 'VBP'), ('mostly', 'RB'), ('what', 'WP'), ('turkey', 'NN'), ('did', 'VBD'), ('so', 'RB'), ('most', 'JJS'), ('of', 'IN'), ('my', 'PRP$'), ('documents', 'NNS'), ('are', 'VBP'), ('in', 'IN'), ('turkish', 'JJ'), ('or', 'CC'), ('french', 'JJ'), ('few', 'JJ'), ('documents', 'NNS'), ('are', 'VBP'), ('in', 'IN'), ('english', 'JJ'), ('the', 'DT'), ('jewish', 'JJ'), ('groups', 'NNS'), ('in', 'IN'), ('istanbul', 'NN'), ('did', 'VBD'), ('not', 'RB'), ('necessarily', 'RB'), ('cooperate', 'VB'), ('with', 'IN'), ('one', 'CD'), ('another', 'DT'), ('to', 'TO'), ('rescue', 'VB'), ('jews', 'NNS'), ('in', 'IN'), ('fact', 'NN'), ('they', 'PRP'), ('often', 'RB'), ('fought', 'VBD'), ('with', 'IN'), ('one', 'CD'), ('another', 'DT'), ('they', 'PRP'), ('took', 'VBD'), ('turns', 'NNS'), ('trying', 'VBG'), ('to', 'TO'), ('get', 'VB'), ('the', 'DT'), ('turkish', 'JJ'), ('government', 'NN'), ('to', 'TO'), ('deport', 'VB'), ('rival', 'JJ'), ('groups', 'NNS'), ('for', 'IN'), ('example', 'NN'), ('some', 'DT'), ('of', 'IN'), ('the', 'DT'), ('kibbutz', 'NN'), ('groups', 'NNS'), ('felt', 'VBD'), ('that', 'IN'), ('the', 'DT'), ('jewish', 'JJ'), ('agency', 'NN'), ('was', 'VBD'), ('run', 'VBN'), ('by', 'IN'), ('western', 'JJ'), ('european', 'JJ'), ('jews', 'NNS'), ('who', 'WP'), ('were', 'VBD'), ('interested', 'JJ'), ('only', 'RB'), ('in', 'IN'), ('helping', 'VBG'), ('western', 'JJ'), ('european', 'JJ'), ('jews', 'NNS'), ('finally', 'RB'), ('in', 'IN'), ('1944', 'CD'), ('president', 'NN'), ('roosevelt', 'VBD'), ('sent', 'JJ'), ('personal', 'JJ'), ('representative', 'NN'), ('ira', 'NN'), ('hirschman', 'NN'), ('who', 'WP'), ('had', 'VBD'), ('been', 'VBN'), ('an', 'DT'), ('executive', 'NN'), ('of', 'IN'), ('bloomingdale', 'JJ'), ('department', 'NN'), ('store', 'NN'), ('in', 'IN'), ('new', 'JJ'), ('york', 'NN'), ('city', 'NN'), ('and', 'CC'), ('hirschman', 'NN'), ('managed', 'VBD'), ('to', 'TO'), ('reconcile', 'VB'), ('their', 'PRP$'), ('differences', 'NNS'), ('the', 'DT'), ('documents', 'NNS'), ('related', 'VBN'), ('to', 'TO'), ('his', 'PRP$'), ('mission', 'NN'), ('are', 'VBP'), ('in', 'IN'), ('english', 'JJ'), ('also', 'RB'), ('obtained', 'VBD'), ('many', 'JJ'), ('documents', 'NNS'), ('from', 'IN'), ('serge', 'JJ'), ('klarsfeld', 'NN'), ('holocaust', 'NN'), ('historian', 'NN'), ('in', 'IN'), ('france', 'NN'), ('who', 'WP'), ('mainly', 'RB'), ('worked', 'VBD'), ('on', 'IN'), ('the', 'DT'), ('french', 'JJ'), ('jews', 'NN'), ('his', 'PRP$'), ('father', 'NN'), ('was', 'VBD'), ('killed', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('nazis', 'JJ'), ('.)', 'NN'), ('he', 'PRP'), ('gave', 'VBD'), ('me', 'PRP'), ('materials', 'NNS'), ('he', 'PRP'), ('had', 'VBD'), ('gathered', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('german', 'JJ'), ('archives', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('jews', 'NNS'), ('so', 'RB'), ('didn', 'JJ'), ('personally', 'RB'), ('consult', 'VBP'), ('the', 'DT'), ('german', 'JJ'), ('archives', 'NNS'), ('believe', 'VBP'), ('that', 'IN'), ('much', 'RB'), ('more', 'JJR'), ('can', 'MD'), ('be', 'VB'), ('learned', 'VBN'), ('from', 'IN'), ('the', 'DT'), ('german', 'JJ'), ('archives', 'NNS'), ('and', 'CC'), ('hope', 'VBP'), ('someone', 'NN'), ('someday', 'NN'), ('will', 'MD'), ('make', 'VB'), ('the', 'DT'), ('effort', 'NN'), ('this', 'DT'), ('new', 'JJ'), ('book', 'NN'), ('fits', 'NNS'), ('in', 'IN'), ('well', 'RB'), ('with', 'IN'), ('your', 'PRP$'), ('teaching', 'VBG'), ('doesn', 'NN'), ('it', 'PRP'), ('right', 'RB'), ('giving', 'VBG'), ('course', 'NN'), ('on', 'IN'), ('the', 'DT'), ('history', 'NN'), ('of', 'IN'), ('the', 'DT'), ('jews', 'NN'), ('of', 'IN'), ('the', 'DT'), ('ottoman', 'NN'), ('empire', 'NN'), ('first', 'RB'), ('gave', 'VBD'), ('the', 'DT'), ('course', 'NN'), ('two', 'CD'), ('years', 'NNS'), ('ago', 'RB'), ('in', 'IN'), ('addition', 'NN'), ('to', 'TO'), ('research', 'NN'), ('writing', 'NN'), ('and', 'CC'), ('teaching', 'VBG'), ('ve', 'RB'), ('been', 'VBN'), ('actively', 'RB'), ('involved', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('commemoration', 'NN'), ('of', 'IN'), ('the', 'DT'), ('500th', 'JJ'), ('anniversary', 'NN'), ('of', 'IN'), ('the', 'DT'), ('coming', 'VBG'), ('of', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('ottoman', 'JJ'), ('empire', 'NN'), ('among', 'IN'), ('other', 'JJ'), ('things', 'NNS'), ('helped', 'VBD'), ('organize', 'VB'), ('large', 'JJ'), ('international', 'JJ'), ('conference', 'NN'), ('on', 'IN'), ('the', 'DT'), ('subject', 'NN'), ('which', 'WDT'), ('was', 'VBD'), ('held', 'VBN'), ('in', 'IN'), ('istanbul', 'NN'), ('in', 'IN'), ('1992', 'CD'), ('now', 'RB'), ('that', 'IN'), ('your', 'PRP$'), ('books', 'NNS'), ('are', 'VBP'), ('finished', 'VBN'), ('and', 'CC'), ('the', 'DT'), ('conference', 'NN'), ('has', 'VBZ'), ('taken', 'VBN'), ('place', 'NN'), ('what', 'WP'), ('do', 'VBP'), ('you', 'PRP'), ('plan', 'VB'), ('to', 'TO'), ('do', 'VB'), ('next', 'JJ'), ('working', 'VBG'), ('on', 'IN'), ('two', 'CD'), ('new', 'JJ'), ('books', 'NNS'), ('one', 'CD'), ('is', 'VBZ'), ('history', 'NN'), ('of', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('war', 'NN'), ('for', 'IN'), ('independence', 'NN'), ('which', 'WDT'), ('took', 'VBD'), ('place', 'NN'), ('after', 'IN'), ('world', 'NN'), ('war', 'NN'), ('during', 'IN'), ('the', 'DT'), ('years', 'NNS'), ('1918', 'CD'), ('to', 'TO'), ('1923', 'CD'), ('the', 'DT'), ('turks', 'NNS'), ('warded', 'VBD'), ('off', 'RP'), ('the', 'DT'), ('efforts', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('victorious', 'JJ'), ('european', 'JJ'), ('powers', 'NNS'), ('to', 'TO'), ('occupy', 'VB'), ('turkey', 'NN'), ('and', 'CC'), ('end', 'VB'), ('its', 'PRP$'), ('independence', 'NN'), ('the', 'DT'), ('second', 'JJ'), ('book', 'NN'), ('is', 'VBZ'), ('study', 'NN'), ('of', 'IN'), ('sultan', 'JJ'), ('abdul', 'NN'), ('hamid', 'NN'), ('ii', 'VBZ'), ('the', 'DT'), ('last', 'JJ'), ('major', 'JJ'), ('sultan', 'NN'), ('who', 'WP'), ('ruled', 'VBD'), ('from', 'IN'), ('1876', 'CD'), ('to', 'TO'), ('1909', 'CD'), ('he', 'PRP'), ('was', 'VBD'), ('an', 'DT'), ('important', 'JJ'), ('modernizer', 'NN'), ('in', 'IN'), ('his', 'PRP$'), ('own', 'JJ'), ('way', 'NN'), ('although', 'IN'), ('he', 'PRP'), ('also', 'RB'), ('suppressed', 'VBD'), ('all', 'DT'), ('sorts', 'NNS'), ('of', 'IN'), ('political', 'JJ'), ('movements', 'NNS'), ('stanford', 'JJ'), ('shaw', 'NN'), ('received', 'VBN'), ('in', 'IN'), ('history', 'NN'), ('and', 'CC'), ('an', 'DT'), ('in', 'IN'), ('british', 'JJ'), ('history', 'NN'), ('he', 'PRP'), ('then', 'RB'), ('shifted', 'VBD'), ('to', 'TO'), ('near', 'IN'), ('eastern', 'JJ'), ('history', 'NN'), ('earning', 'VBG'), ('second', 'JJ'), ('and', 'CC'), ('ph', 'NN'), ('at', 'IN'), ('princeton', 'NN'), ('as', 'IN'), ('doctoral', 'JJ'), ('candidate', 'NN'), ('at', 'IN'), ('princeton', 'NN'), ('he', 'PRP'), ('spent', 'VBD'), ('two', 'CD'), ('years', 'NNS'), ('abroad', 'RB'), ('studying', 'VBG'), ('at', 'IN'), ('the', 'DT'), ('school', 'NN'), ('of', 'IN'), ('oriental', 'JJ'), ('and', 'CC'), ('african', 'JJ'), ('studies', 'NNS'), ('university', 'NN'), ('of', 'IN'), ('london', 'NN'), ('the', 'DT'), ('university', 'NN'), ('of', 'IN'), ('cairo', 'NN'), ('the', 'DT'), ('american', 'JJ'), ('university', 'NN'), ('at', 'IN'), ('cairo', 'NN'), ('and', 'CC'), ('the', 'DT'), ('university', 'NN'), ('of', 'IN'), ('istanbul', 'NN'), ('he', 'PRP'), ('taught', 'VBD'), ('at', 'IN'), ('harvard', 'NN'), ('before', 'IN'), ('coming', 'VBG'), ('to', 'TO'), ('ucla', 'VB'), ('in', 'IN'), ('1966', 'CD'), ('his', 'PRP$'), ('postdoctoral', 'JJ'), ('research', 'NN'), ('has', 'VBZ'), ('been', 'VBN'), ('supported', 'VBN'), ('by', 'IN'), ('the', 'DT'), ('john', 'NN'), ('simon', 'NN'), ('guggenheim', 'NN'), ('foundation', 'NN'), ('the', 'DT'), ('american', 'JJ'), ('research', 'NN'), ('institute', 'NN'), ('in', 'IN'), ('turkey', 'NN'), ('the', 'DT'), ('social', 'JJ'), ('science', 'NN'), ('research', 'NN'), ('council', 'VBZ'), ('the', 'DT'), ('national', 'JJ'), ('endowment', 'NN'), ('for', 'IN'), ('the', 'DT'), ('humanities', 'NNS'), ('the', 'DT'), ('fulbright', 'JJ'), ('program', 'NN'), ('and', 'CC'), ('isop', 'NN'), ('he', 'PRP'), ('has', 'VBZ'), ('received', 'VBN'), ('honorary', 'JJ'), ('degrees', 'NNS'), ('from', 'IN'), ('harvard', 'NN'), ('university', 'NN'), ('and', 'CC'), ('bosporus', 'NN'), ('university', 'NN'), ('bebek', 'NN'), ('istanbul', 'NN'), ('turkey', 'NN'), ('and', 'CC'), ('medals', 'NNS'), ('of', 'IN'), ('honor', 'NN'), ('for', 'IN'), ('lifetime', 'JJ'), ('contributions', 'NNS'), ('to', 'TO'), ('the', 'DT'), ('fields', 'NNS'), ('of', 'IN'), ('islamic', 'JJ'), ('and', 'CC'), ('turkish', 'JJ'), ('studies', 'NNS'), ('from', 'IN'), ('the', 'DT'), ('center', 'NN'), ('for', 'IN'), ('research', 'NN'), ('in', 'IN'), ('islamic', 'JJ'), ('history', 'NN'), ('art', 'NN'), ('and', 'CC'), ('culture', 'NN'), ('in', 'IN'), ('istanbul', 'NN'), ('and', 'CC'), ('from', 'IN'), ('the', 'DT'), ('american', 'JJ'), ('friends', 'NNS'), ('of', 'IN'), ('turkey', 'NN'), ('in', 'IN'), ('washington', 'NN'), ('in', 'IN'), ('addition', 'NN'), ('to', 'TO'), ('undertaking', 'VBG'), ('many', 'JJ'), ('professional', 'JJ'), ('service', 'NN'), ('activities', 'NNS'), ('and', 'CC'), ('public', 'JJ'), ('lectures', 'NNS'), ('in', 'IN'), ('both', 'DT'), ('the', 'DT'), ('united', 'JJ'), ('states', 'NNS'), ('and', 'CC'), ('turkey', 'NN'), ('shaw', 'NN'), ('has', 'VBZ'), ('also', 'RB'), ('produced', 'VBN'), ('eight', 'CD'), ('books', 'NNS'), ('and', 'CC'), ('one', 'CD'), ('edited', 'VBN'), ('volume', 'NN'), ('his', 'PRP$'), ('history', 'NN'), ('of', 'IN'), ('the', 'DT'), ('ottoman', 'NN'), ('empire', 'NN'), ('and', 'CC'), ('modem', 'NN'), ('turkey', 'NN'), ('vols', 'NNS'), ('.)', 'WDT'), ('has', 'VBZ'), ('been', 'VBN'), ('published', 'VBN'), ('in', 'IN'), ('many', 'JJ'), ('editions', 'NNS'), ('six', 'CD'), ('editions', 'NNS'), ('or', 'CC'), ('reprints', 'NNS'), ('from', 'IN'), ('1977', 'CD'), ('1991', 'CD'), ('),', 'NN'), ('and', 'CC'), ('translated', 'VBN'), ('into', 'IN'), ('turkish', 'JJ'), ('1983', 'CD'), ('1991', 'CD'), ('and', 'CC'), ('french', 'JJ'), ('1984', 'CD'), (').', 'VB'), ('his', 'PRP$'), ('book', 'NN'), ('the', 'DT'), ('jews', 'NN'), ('of', 'IN'), ('the', 'DT'), ('ottoman', 'NN'), ('empire', 'NN'), ('and', 'CC'), ('the', 'DT'), ('turkish', 'JJ'), ('republic', 'NN'), ('macmillan', 'NN'), ('london', 'NN'), ('and', 'CC'), ('new', 'JJ'), ('york', 'NN'), ('university', 'NN'), ('press', 'NN'), ('1992', 'CD'), ('will', 'MD'), ('be', 'VB'), ('published', 'VBN'), ('in', 'IN'), ('turkish', 'JJ'), ('translation', 'NN'), ('by', 'IN'), ('the', 'DT'), ('turkish', 'JJ'), ('historical', 'JJ'), ('society', 'NN'), ('istanbul', 'VB'), ('his', 'PRP$'), ('turkey', 'NN'), ('and', 'CC'), ('the', 'DT'), ('holocaust', 'NN'), ('turkey', 'NN'), ('role', 'NN'), ('in', 'IN'), ('rescuing', 'VBG'), ('turkish', 'JJ'), ('and', 'CC'), ('european', 'JJ'), ('jewry', 'NN'), ('from', 'IN'), ('nazi', 'JJ'), ('persecution', 'NN'), ('1933', 'CD'), ('1945', 'CD'), ('will', 'MD'), ('be', 'VB'), ('published', 'VBN'), ('by', 'IN'), ('macmillan', 'NN'), ('publishers', 'NNS'), ('london', 'VBP'), ('and', 'CC'), ('new', 'JJ'), ('york', 'NN'), ('university', 'NN'), ('press', 'NN'), ('in', 'IN'), ('1993', 'CD'), ('pamphlet', 'NN'), ('summarizing', 'VBG'), ('the', 'DT'), ('book', 'NN'), ('was', 'VBD'), ('published', 'VBN'), ('in', 'IN'), ('ankara', 'NN'), ('turkey', 'NN'), ('in', 'IN'), ('1992', 'CD'), ('serdar', 'NN'), ('argic', 'NN')] | ['tell', 'kmagnacca', 'high', 'arromdian', 'asala', 'sdpa', 'arf', 'write', 'humane', 'behavior', 'tolerance', 'turk', 'legend', 'even', 'year', 'ago', 'accept', 'ten', 'thousand', 'jew', 'spain', 'flee', 'spanish', 'inquisition', 'many', 'jewish', 'family', 'escape', 'nazi', 'armenian', 'hitler', 'nazi', 'germany', 'take', 'refugee', 'turkiye', 'turkish', 'people', 'unselfishly', 'give', 'home', 'protection', 'freedom', 'jew', 'century', 'include', 'thousand', 'thousand', 'second', 'world', 'war', 'get', 'life', 'cup', 'turkish', 'coffee', 'history', 'jew', 'islamic', 'country', 'chapter', 'part', 'ii', 'jarusalem', 'zalman', 'shazar', 'center', 'jewish', 'history', 'baron', 'salo', 'social', 'religious', 'history', 'jew', 'new', 'york', 'columbia', 'university', 'press', 'vols', 'iii', 'xviii', 'benardete', 'mair', 'jose', 'hispanic', 'culture', 'character', 'sephardic', 'jew', 'new', 'york', 'sepher', 'hermon', 'press', 'correct', 'edition', 'original', 'publication', 'lewis', 'bernard', 'ed', 'christian', 'jew', 'ottoman', 'empire', 'new', 'york', 'holmes', 'meier', 'vol', 'central', 'land', 'la', 'turquie', 'dan', 'les', 'archive', 'de', 'grand', 'orient', 'de', 'france', 'le', 'log', 'jean', 'louis', 'bacque', 'graumont', 'paul', 'dumont', 'eds', 'economie', 'et', 'societes', 'dans', 'empire', 'ottoman', 'paris', 'centre', 'national', 'de', 'la', 'reserche', 'scientifique', 'inalcik', 'halil', 'turkish', 'jewish', 'relation', 'ottoman', 'empire', 'sevilla', 'sharon', 'moshe', 'turkiye', 'yahudileri', 'tarihsel', 'bakis', 'jerusalem', 'hebrew', 'university', 'source', 'john', 'dewey', 'new', 'republic', 'vol', 'nov', 'pp', 'happy', 'minority', 'jew', 'christian', 'nation', 'protect', 'one', 'recall', 'jew', 'take', 'abode', 'fanatic', 'turkey', 'expel', 'europe', 'especially', 'spain', 'saintly', 'christian', 'live', 'century', 'least', 'much', 'tranquility', 'liberty', 'fellow', 'turkish', 'subject', 'expose', 'alike', 'rapacity', 'common', 'ruler', 'one', 'brought', 'american', 'gladstonian', 'foreign', 'missionary', 'tradition', 'condition', 'jew', 'turkey', 'almost', 'mathematical', 'demonstration', 'religious', 'difference', 'influence', 'tragedy', 'turkey', 'combine', 'aspiration', 'political', 'separation', 'every', 'nation', 'world', 'would', 'treat', 'treasonable', 'one', 'readily', 'reach', 'conclusion', 'jew', 'turkey', 'fortunate', 'also', 'state', 'armenians', 'traitorously', 'turn', 'turkish', 'city', 'russian', 'invader', 'boast', 'raise', 'army', 'one', 'hundred', 'fifty', 'thousand', 'men', 'fight', 'civil', 'war', 'burn', 'least', 'hundred', 'turkish', 'village', 'exterminate', 'population', 'turkey', 'holocaust', 'interview', 'stanford', 'shaw', 'history', 'recently', 'complete', 'two', 'book', 'jew', 'ottoman', 'empire', 'turkish', 'republic', 'turkey', 'holocaust', 'turkey', 'role', 'rescue', 'turkish', 'european', 'jewry', 'nazi', 'persecution', 'shaw', 'chair', 'undergraduate', 'interdepartmental', 'degree', 'program', 'near', 'eastern', 'study', 'organize', 'program', 'study', 'ottoman', 'turkish', 'jewry', 'affiliate', 'von', 'grunebaum', 'center', 'near', 'eastern', 'study', 'editor', 'come', 'write', 'two', 'book', 'turkey', 'european', 'turkish', 'jew', 'shaw', 'basically', 'ottoman', 'historian', 'also', 'jewish', 'spent', 'twenty', 'five', 'year', 'study', 'ottoman', 'history', 'time', 'go', 'along', 'whenever', 'find', 'material', 'ottoman', 'jew', 'collect', 'never', 'anything', 'couple', 'year', 'ago', 'suddenly', 'realize', 'anniversary', 'jew', 'expel', 'spain', 'come', 'turkey', 'sephardic', 'temple', 'wilshire', 'avenue', 'invite', 'give', 'series', 'three', 'lecture', 'ottoman', 'jewry', 'lecture', 'greatly', 'appreciate', 'become', 'motivate', 'undertake', 'research', 'develop', 'book', 'jew', 'ottoman', 'empire', 'turkish', 'republic', 'book', 'quite', 'different', 'work', 'jewish', 'historian', 'tend', 'look', 'jew', 'country', 'viewpoint', 'jew', 'jewish', 'community', 'rely', 'mainly', 'jewish', 'source', 'view', 'subject', 'ottoman', 'historian', 'approach', 'jew', 'ottoman', 'empire', 'largely', 'point', 'view', 'ottoman', 'society', 'use', 'largely', 'ottoman', 'source', 'finish', 'book', 'send', 'press', 'come', 'across', 'additional', 'document', 'relate', 'turkish', 'jew', 'world', 'war', 'ii', 'complete', 'book', 'say', 'turkey', 'good', 'deal', 'rescue', 'jew', 'world', 'war', 'ii', 'actually', 'many', 'detail', 'find', 'batch', 'document', 'foreign', 'ministry', 'archive', 'relating', 'action', 'take', 'turkish', 'diplomat', 'help', 'jew', 'holocaust', 'late', 'add', 'new', 'information', 'book', 'press', 'decide', 'write', 'second', 'book', 'conduct', 'research', 'mainly', 'archive', 'foreign', 'ministry', 'ankara', 'turkish', 'embassy', 'consulate', 'paris', 'result', 'second', 'book', 'turkey', 'holocaust', 'detail', 'turkey', 'help', 'rescue', 'jew', 'nazis', 'exactly', 'story', 'take', 'place', 'number', 'year', 'book', 'present', 'material', 'three', 'part', 'first', 'deal', 'period', 'holocaust', 'nazi', 'come', 'power', 'germany', 'immediately', 'start', 'dismiss', 'jew', 'anti', 'nazi', 'german', 'universities', 'hospital', 'scientific', 'institute', 'like', 'turkey', 'moment', 'begin', 'process', 'reform', 'university', 'saw', 'jew', 'fire', 'position', 'germany', 'good', 'source', 'new', 'talent', 'help', 'modernize', 'turkish', 'university', 'within', 'three', 'month', 'nazi', 'start', 'dismiss', 'jew', 'turkey', 'arrange', 'take', 'many', 'bring', 'turkey', 'give', 'appointment', 'professor', 'turkish', 'university', 'head', 'scientific', 'institute', 'medical', 'personnel', 'hospital', 'major', 'jewish', 'professor', 'come', 'turkey', 'ernst', 'reuter', 'german', 'political', 'scientist', 'spend', 'war', 'year', 'teach', 'political', 'science', 'turkey', 'world', 'war', 'ii', 'mayor', 'berlin', 'berlin', 'airlift', 'fritz', 'neimark', 'major', 'german', 'jewish', 'economist', 'come', 'turkey', 'help', 'establish', 'modern', 'school', 'economics', 'istanbul', 'man', 'name', 'reichenbach', 'rescue', 'nazi', 'turkey', 'spend', 'war', 'year', 'turkey', 'eventually', 'come', 'ucla', 'become', 'professor', 'philosophy', 'german', 'jewish', 'emigre', 'engage', 'cultural', 'activity', 'turkey', 'one', 'karl', 'ebert', 'lead', 'theatrical', 'producer', 'berlin', 'expel', 'nazi', 'go', 'turkey', 'organize', 'turkish', 'national', 'theater', 'turkish', 'national', 'opera', 'company', 'ankara', 'help', 'paul', 'hindemuth', 'first', 'section', 'book', 'cover', 'first', 'phase', 'jew', 'persecute', 'germany', 'rescue', 'turkey', 'oddly', 'enough', 'german', 'emigre', 'turkey', 'seem', 'think', 'badly', 'germany', 'regard', 'german', 'jew', 'join', 'anti', 'nazi', 'activity', 'local', 'turkish', 'jewish', 'community', 'even', 'find', 'letter', 'nazi', 'representative', 'turkey', 'praise', 'german', 'jewish', 'refugee', 'work', 'promote', 'idea', 'german', 'culture', 'even', 'though', 'people', 'persecute', 'nazi', 'rescue', 'turk', 'share', 'nazis', 'feeling', 'aryan', 'racial', 'superiority', 'turk', 'second', 'part', 'book', 'deal', 'holocaust', 'begin', 'nazis', 'occupied', 'france', 'europe', 'time', 'especially', 'france', 'turkish', 'jew', 'migrate', 'europe', 'various', 'reason', 'turn', 'century', 'onward', 'settle', 'europe', 'turkish', 'war', 'independence', 'world', 'war', 'greece', 'threaten', 'overrun', 'turkey', 'greek', 'persecute', 'jew', 'throughout', 'nineteenth', 'century', 'jew', 'fear', 'might', 'happen', 'greek', 'take', 'turkey', 'many', 'jew', 'flee', 'france', 'many', 'also', 'abandon', 'turkish', 'citizenship', 'become', 'french', 'citizen', 'suddenly', 'nazi', 'invade', 'france', 'start', 'introduce', 'sort', 'anti', 'jewish', 'law', 'turkish', 'jew', 'soon', 'find', 'worth', 'much', 'french', 'jew', 'worth', 'lot', 'turkish', 'jew', 'turkey', 'remain', 'neutral', 'world', 'war', 'ii', 'retain', 'embassy', 'consulate', 'nazi', 'occupied', 'country', 'finally', 'enter', 'war', 'side', 'ally', 'end', 'war', 'therefore', 'turkey', 'position', 'defend', 'citizen', 'anti', 'jewish', 'measure', 'action', 'turkish', 'diplomat', 'take', 'form', 'second', 'chapter', 'book', 'turkish', 'diplomat', 'station', 'france', 'particular', 'intervene', 'protect', 'jew', 'turkish', 'citizenship', 'nazi', 'turkish', 'jew', 'retain', 'turkish', 'citizenship', 'generally', 'problem', 'arrest', 'send', 'concentration', 'camp', 'turkish', 'diplomat', 'would', 'communicate', 'commander', 'camp', 'official', 'say', 'effect', 'people', 'turkish', 'citizen', 'turkish', 'jew', 'would', 'release', 'business', 'confiscate', 'turkish', 'diplomat', 'would', 'protest', 'business', 'would', 'restore', 'nazi', 'general', 'want', 'keep', 'friendship', 'turkey', 'hop', 'able', 'use', 'turkey', 'gateway', 'invasion', 'middle', 'east', 'also', 'want', 'obtain', 'chromium', 'manganese', 'turkey', 'order', 'keep', 'turkish', 'friendship', 'usually', 'accept', 'intervention', 'behalf', 'turkish', 'jew', 'turkish', 'diplomat', 'sometimes', 'go', 'concentration', 'camp', 'secure', 'release', 'turkish', 'jew', 'time', 'even', 'board', 'train', 'haul', 'turkish', 'jew', 'auschwitz', 'extermination', 'succeed', 'get', 'train', 'foreign', 'jew', 'send', 'concentration', 'camp', 'place', 'call', 'drancy', 'paris', 'intercession', 'turkish', 'consul', 'take', 'place', 'great', 'problem', 'come', 'turkish', 'jew', 'abandon', 'turkish', 'citizenship', 'become', 'french', 'citizen', 'consul', 'declare', 'people', 'turkish', 'citizen', 'book', 'include', 'photograph', 'jew', 'line', 'front', 'turkish', 'consulate', 'either', 'get', 'passport', 'return', 'turkey', 'get', 'restoration', 'turkish', 'citizenship', 'bureaucratic', 'matter', 'process', 'application', 'would', 'take', 'time', 'meantime', 'real', 'emergency', 'nazi', 'would', 'arrest', 'jew', 'street', 'almost', 'nothing', 'nazi', 'would', 'even', 'arrest', 'radio', 'telephone', 'apartment', 'radio', 'telephone', 'forbid', 'jews', 'take', 'care', 'former', 'turkish', 'jews', 'turkish', 'diplomat', 'invent', 'document', 'call', 'gayri', 'muntazem', 'vatandash', 'irregular', 'fellow', 'citizen', 'document', 'say', 'effect', 'person', 'former', 'turkish', 'citizen', 'apply', 'restoration', 'turkish', 'citizenship', 'meantime', 'would', 'appreciate', 'would', 'treat', 'turkish', 'citizen', 'diplomat', 'write', 'document', 'turkish', 'put', 'seal', 'since', 'nazi', 'could', 'read', 'turkish', 'whole', 'accept', 'paper', 'certificate', 'citizenship', 'mean', 'turkish', 'diplomat', 'able', 'rescue', 'many', 'jew', 'relinquish', 'turkish', 'citizenship', 'actually', 'nazis', 'two', 'mind', 'turkish', 'defense', 'jew', 'one', 'hand', 'nazi', 'foreign', 'ministry', 'want', 'retain', 'friendship', 'turkey', 'favor', 'accept', 'intervention', 'hand', 'himmler', 'eichmann', 'want', 'jew', 'exterminate', 'time', 'himmler', 'eichmann', 'able', 'prevail', 'turkish', 'jew', 'send', 'auschwitz', 'turkish', 'consul', 'could', 'anything', 'statistic', 'many', 'turkish', 'jew', 'rescue', 'turkish', 'jew', 'europe', 'world', 'war', 'ii', 'live', 'france', 'information', 'section', 'book', 'relate', 'situation', 'france', 'publish', 'letter', 'turkish', 'consul', 'send', 'nazi', 'official', 'letter', 'come', 'back', 'reply', 'generally', 'nazi', 'say', 'turkish', 'consul', 'would', 'present', 'document', 'certify', 'arrest', 'individual', 'turkish', 'citizen', 'promise', 'send', 'france', 'nazi', 'would', 'release', 'concentration', 'camp', 'turkish', 'consul', 'also', 'organize', 'special', 'train', 'take', 'turkish', 'jew', 'nazi', 'occupied', 'territory', 'back', 'turkey', 'train', 'run', 'regularly', 'nazi', 'give', 'turkish', 'jew', 'visa', 'could', 'pass', 'nazi', 'territory', 'train', 'often', 'hold', 'nazi', 'influence', 'government', 'eastern', 'europe', 'croatia', 'serbia', 'bulgaria', 'government', 'really', 'want', 'jew', 'escape', 'result', 'turkish', 'consul', 'effort', 'turkish', 'jew', 'france', 'save', 'another', 'send', 'auschwitz', 'die', 'remain', 'either', 'escape', 'across', 'border', 'spain', 'flee', 'area', 'southern', 'france', 'occupy', 'italian', 'treat', 'jew', 'much', 'good', 'nazi', 'end', 'however', 'italy', 'fell', 'war', 'end', 'jew', 'well', 'incidentally', 'turkish', 'diplomat', 'nazi', 'occupied', 'greece', 'also', 'work', 'rescue', 'jew', 'country', 'second', 'part', 'book', 'deal', 'turkish', 'diplomat', 'act', 'rescue', 'jew', 'turkish', 'citizenship', 'turkish', 'origin', 'nazi', 'persecution', 'yes', 'aside', 'might', 'add', 'intervention', 'behalf', 'turkish', 'jew', 'turk', 'cite', 'treaty', 'germany', 'state', 'turkish', 'citizen', 'german', 'territory', 'would', 'treat', 'german', 'citizen', 'turkey', 'basis', 'turk', 'maintain', 'nazi', 'could', 'discriminate', 'turkish', 'citizen', 'jews', 'nazi', 'claim', 'vichy', 'government', 'agree', 'discriminate', 'treat', 'jew', 'equally', 'turkey', 'protest', 'say', 'divide', 'citizen', 'accord', 'religion', 'turkish', 'constitution', 'require', 'citizen', 'treat', 'equally', 'regardless', 'religion', 'therefore', 'cannot', 'single', 'turkish', 'jew', 'american', 'consul', 'paris', 'contrast', 'accept', 'nazi', 'argument', 'tell', 'american', 'jew', 'persecute', 'nazi', 'anything', 'american', 'jew', 'treat', 'jews', 'third', 'part', 'book', 'take', 'place', 'turkey', 'principal', 'center', 'holocaust', 'activity', 'aim', 'rescue', 'eastern', 'european', 'jew', 'kwish', 'agency', 'organization', 'establish', 'jew', 'palestine', 'help', 'resettle', 'jew', 'palestine', 'set', 'office', 'istanbul', 'leadership', 'chaim', 'barlas', 'jewish', 'organization', 'palestine', 'especially', 'kibbutz', 'also', 'send', 'representative', 'istanbul', 'set', 'headquarters', 'group', 'first', 'try', 'contact', 'jew', 'eastern', 'europe', 'find', 'happen', 'today', 'know', 'holocaust', 'time', 'people', 'know', 'go', 'imagine', 'nazi', 'could', 'thing', 'first', 'step', 'get', 'information', 'turkish', 'government', 'let', 'use', 'turkish', 'mail', 'send', 'letter', 'relative', 'friend', 'eastern', 'europe', 'jewish', 'organization', 'find', 'happen', 'receive', 'reply', 'later', 'nazi', 'begin', 'intercept', 'letter', 'jew', 'receive', 'assistance', 'also', 'vatican', 'nuncio', 'angelo', 'roncali', 'serve', 'vatican', 'representative', 'istanbul', 'later', 'become', 'pope', 'john', 'xxiii', 'vatican', 'representative', 'war', 'use', 'facility', 'catholic', 'church', 'supplement', 'turkish', 'government', 'assist', 'jewish', 'agency', 'contact', 'jew', 'eastern', 'europe', 'cooperation', 'turkish', 'government', 'agency', 'send', 'hard', 'currency', 'food', 'clothing', 'even', 'railroad', 'steamship', 'ticket', 'jew', 'czechoslovakia', 'bulgaria', 'romania', 'hungary', 'able', 'help', 'much', 'poland', 'nazi', 'wipe', 'almost', 'polish', 'jew', 'whenever', 'possible', 'rescue', 'agency', 'arrange', 'jew', 'get', 'eastern', 'europe', 'either', 'train', 'called', 'orient', 'express', 'route', 'istanbul', 'boat', 'black', 'sea', 'istanbul', 'turkey', 'eager', 'refugee', 'remain', 'within', 'border', 'war', 'blockade', 'suffer', 'terrible', 'shortage', 'food', 'clothing', 'government', 'therefore', 'facilitate', 'movement', 'non', 'turkish', 'jewish', 'refugee', 'turkey', 'palestine', 'either', 'taurus', 'express', 'railroad', 'mountain', 'syria', 'palestine', 'small', 'boat', 'across', 'eastern', 'mediterranean', 'southern', 'turkey', 'palestine', 'effort', 'bitterly', 'oppose', 'nazi', 'also', 'british', 'want', 'jewish', 'immigration', 'palestine', 'fear', 'would', 'hurt', 'relation', 'arab', 'british', 'constantly', 'pressure', 'turkish', 'government', 'stop', 'traffic', 'send', 'jew', 'back', 'case', 'turkish', 'government', 'yield', 'british', 'pressure', 'send', 'boat', 'back', 'example', 'one', 'incident', 'steamship', 'struma', 'jewish', 'refugee', 'romania', 'send', 'back', 'turkish', 'government', 'result', 'intervention', 'british', 'ambassador', 'ship', 'sink', 'soviet', 'submarine', 'lose', 'except', 'one', 'person', 'nevertheless', 'tell', 'turkish', 'government', 'allow', 'eastern', 'european', 'jew', 'pass', 'turkish', 'territory', 'move', 'palestine', 'second', 'world', 'war', 'turkish', 'authority', 'also', 'provide', 'refugee', 'facility', 'money', 'give', 'permission', 'send', 'money', 'food', 'country', 'many', 'jew', 'pass', 'turkey', 'may', 'still', 'live', 'israel', 'yes', 'child', 'let', 'return', 'moment', 'first', 'group', 'turkish', 'jew', 'come', 'europe', 'go', 'palestine', 'stay', 'turkey', 'non', 'turkish', 'eastern', 'european', 'jew', 'pass', 'turkey', 'en', 'route', 'palestine', 'story', 'interesting', 'rescue', 'obscurity', 'many', 'study', 'make', 'holocaust', 'focus', 'eastern', 'european', 'middle', 'eastern', 'jews', 'scholarship', 'center', 'western', 'european', 'jew', 'million', 'massacre', 'nazis', 'study', 'deal', 'much', 'small', 'number', 'people', 'try', 'round', 'picture', 'hope', 'book', 'persuade', 'scholar', 'undertake', 'investigation', 'history', 'eastern', 'jew', 'come', 'number', 'german', 'jew', 'also', 'relatively', 'small', 'number', 'million', 'slay', 'polish', 'jew', 'rescue', 'eastern', 'european', 'jew', 'may', 'seem', 'significant', 'compare', 'total', 'million', 'murder', 'mean', 'lot', 'save', 'three', 'fourth', 'book', 'consist', 'document', 'translation', 'many', 'document', 'include', 'story', 'well', 'know', 'people', 'west', 'unaware', 'courageous', 'action', 'turkish', 'diplomat', 'even', 'people', 'turkey', 'know', 'story', 'felt', 'would', 'fully', 'understand', 'remarkable', 'achievement', 'unless', 'could', 'see', 'document', 'language', 'use', 'document', 'turkish', 'french', 'hebrew', 'great', 'deal', 'material', 'hebrew', 'organization', 'boat', 'go', 'palestine', 'passenger', 'go', 'detail', 'extensively', 'describe', 'mostly', 'turkey', 'document', 'turkish', 'french', 'document', 'english', 'jewish', 'group', 'istanbul', 'necessarily', 'cooperate', 'one', 'another', 'rescue', 'jew', 'fact', 'often', 'fight', 'one', 'another', 'take', 'turn', 'try', 'get', 'turkish', 'government', 'deport', 'rival', 'group', 'example', 'kibbutz', 'group', 'felt', 'jewish', 'agency', 'run', 'western', 'european', 'jew', 'interested', 'help', 'western', 'european', 'jew', 'finally', 'president', 'roosevelt', 'sent', 'personal', 'representative', 'ira', 'hirschman', 'executive', 'bloomingdale', 'department', 'store', 'new', 'york', 'city', 'hirschman', 'manage', 'reconcile', 'difference', 'document', 'relate', 'mission', 'english', 'also', 'obtain', 'many', 'document', 'serge', 'klarsfeld', 'holocaust', 'historian', 'france', 'mainly', 'work', 'french', 'jew', 'father', 'kill', 'nazis', 'give', 'material', 'gather', 'german', 'archive', 'turkish', 'jew', 'personally', 'consult', 'german', 'archive', 'believe', 'much', 'learn', 'german', 'archive', 'hope', 'someone', 'someday', 'make', 'effort', 'new', 'book', 'fit', 'well', 'teach', 'right', 'give', 'course', 'history', 'jew', 'ottoman', 'empire', 'first', 'give', 'course', 'two', 'year', 'ago', 'addition', 'research', 'writing', 'teach', 'actively', 'involve', 'commemoration', 'anniversary', 'come', 'jew', 'ottoman', 'empire', 'among', 'thing', 'help', 'organize', 'large', 'international', 'conference', 'subject', 'hold', 'istanbul', 'book', 'finish', 'conference', 'take', 'place', 'plan', 'next', 'work', 'two', 'new', 'book', 'one', 'history', 'turkish', 'war', 'independence', 'take', 'place', 'world', 'war', 'year', 'turk', 'ward', 'effort', 'victorious', 'european', 'power', 'occupy', 'turkey', 'end', 'independence', 'second', 'book', 'study', 'sultan', 'abdul', 'hamid', 'ii', 'last', 'major', 'sultan', 'rule', 'important', 'modernizer', 'way', 'although', 'also', 'suppress', 'sort', 'political', 'movement', 'stanford', 'shaw', 'receive', 'history', 'british', 'history', 'shift', 'near', 'eastern', 'history', 'earn', 'second', 'ph', 'princeton', 'doctoral', 'candidate', 'princeton', 'spend', 'two', 'year', 'abroad', 'study', 'school', 'oriental', 'african', 'study', 'university', 'london', 'university', 'cairo', 'american', 'university', 'cairo', 'university', 'istanbul', 'teach', 'harvard', 'come', 'ucla', 'postdoctoral', 'research', 'support', 'john', 'simon', 'guggenheim', 'foundation', 'american', 'research', 'institute', 'turkey', 'social', 'science', 'research', 'council', 'national', 'endowment', 'humanity', 'fulbright', 'program', 'isop', 'receive', 'honorary', 'degree', 'harvard', 'university', 'bosporus', 'university', 'bebek', 'istanbul', 'turkey', 'medal', 'honor', 'lifetime', 'contribution', 'field', 'islamic', 'turkish', 'study', 'center', 'research', 'islamic', 'history', 'art', 'culture', 'istanbul', 'american', 'friend', 'turkey', 'washington', 'addition', 'undertake', 'many', 'professional', 'service', 'activity', 'public', 'lecture', 'united', 'state', 'turkey', 'shaw', 'also', 'produce', 'eight', 'book', 'one', 'edit', 'volume', 'history', 'ottoman', 'empire', 'modem', 'turkey', 'vols', 'publish', 'many', 'edition', 'six', 'edition', 'reprint', 'translate', 'turkish', 'french', 'book', 'jew', 'ottoman', 'empire', 'turkish', 'republic', 'macmillan', 'london', 'new', 'york', 'university', 'press', 'publish', 'turkish', 'translation', 'turkish', 'historical', 'society', 'istanbul', 'turkey', 'holocaust', 'turkey', 'role', 'rescue', 'turkish', 'european', 'jewry', 'nazi', 'persecution', 'publish', 'macmillan', 'publisher', 'london', 'new', 'york', 'university', 'press', 'pamphlet', 'summarize', 'book', 'publish', 'ankara', 'turkey', 'serdar', 'argic'] | ['arromdian_asala', 'asala_sdpa', 'sdpa_arf', 'even_year', 'year_ago', 'ten_thousand', 'spanish_inquisition', 'nazi_armenian', 'nazi_germany', 'turkish_people', 'thousand_thousand', 'second_world', 'world_war', 'get_life', 'jewish_history', 'new_york', 'columbia_university', 'university_press', 'new_york', 'christian_jew', 'jew_ottoman', 'ottoman_empire', 'new_york', 'de_la', 'ottoman_empire', 'hebrew_university', 'john_dewey', 'jew_christian', 'christian_nation', 'christian_live', 'least_much', 'jew_turkey', 'every_nation', 'world_would', 'would_treat', 'reach_conclusion', 'jew_turkey', 'also_state', 'raise_army', 'one_hundred', 'hundred_fifty', 'men_fight', 'civil_war', 'turkish_village', 'village_exterminate', 'interview_stanford', 'stanford_shaw', 'two_book', 'jew_ottoman', 'ottoman_empire', 'turkish_republic', 'republic_turkey', 'european_jewry', 'near_eastern', 'near_eastern', 'two_book', 'turkish_jew', 'five_year', 'year_study', 'time_go', 'go_along', 'never_anything', 'couple_year', 'year_ago', 'greatly_appreciate', 'jew_ottoman', 'ottoman_empire', 'turkish_republic', 'quite_different', 'tend_look', 'jewish_community', 'view_subject', 'jew_ottoman', 'ottoman_empire', 'point_view', 'come_across', 'turkish_jew', 'world_war', 'war_ii', 'book_say', 'say_turkey', 'good_deal', 'rescue_jew', 'world_war', 'war_ii', 'actually_many', 'foreign_ministry', 'action_take', 'turkish_diplomat', 'add_new', 'new_information', 'write_second', 'foreign_ministry', 'rescue_jew', 'take_place', 'number_year', 'three_part', 'come_power', 'good_source', 'three_month', 'jew_turkey', 'take_many', 'professor_turkish', 'political_science', 'world_war', 'war_ii', 'man_name', 'oddly_enough', 'seem_think', 'jewish_community', 'even_find', 'even_though', 'though_people', 'part_book', 'book_deal', 'time_especially', 'turkish_jew', 'various_reason', 'war_independence', 'world_war', 'might_happen', 'many_jew', 'turkish_citizenship', 'anti_jewish', 'jewish_law', 'turkish_jew', 'soon_find', 'worth_much', 'turkish_jew', 'jew_turkey', 'world_war', 'war_ii', 'enter_war', 'end_war', 'anti_jewish', 'turkish_diplomat', 'take_form', 'turkish_diplomat', 'turkish_citizenship', 'turkish_jew', 'turkish_citizenship', 'concentration_camp', 'turkish_diplomat', 'official_say', 'say_effect', 'effect_people', 'turkish_citizen', 'turkish_jew', 'jew_would', 'turkish_diplomat', 'want_keep', 'able_use', 'middle_east', 'also_want', 'order_keep', 'turkish_jew', 'turkish_diplomat', 'concentration_camp', 'turkish_jew', 'jew_time', 'time_even', 'turkish_jew', 'concentration_camp', 'place_call', 'turkish_consul', 'take_place', 'great_problem', 'problem_come', 'turkish_jew', 'turkish_citizenship', 'turkish_citizen', 'book_include', 'either_get', 'turkish_citizenship', 'application_would', 'would_take', 'take_time', 'almost_nothing', 'would_even', 'take_care', 'turkish_diplomat', 'fellow_citizen', 'say_effect', 'turkish_citizen', 'turkish_citizenship', 'would_appreciate', 'appreciate_would', 'would_treat', 'turkish_citizen', 'nazi_could', 'could_read', 'turkish_diplomat', 'many_jew', 'turkish_citizenship', 'one_hand', 'foreign_ministry', 'turkish_jew', 'turkish_consul', 'turkish_jew', 'turkish_jew', 'world_war', 'war_ii', 'turkish_consul', 'come_back', 'say_turkish', 'turkish_consul', 'would_present', 'turkish_citizen', 'concentration_camp', 'turkish_consul', 'turkish_jew', 'occupied_territory', 'turkish_jew', 'eastern_europe', 'government_really', 'really_want', 'turkish_consul', 'turkish_jew', 'across_border', 'much_good', 'war_end', 'turkish_diplomat', 'also_work', 'rescue_jew', 'part_book', 'book_deal', 'turkish_diplomat', 'rescue_jew', 'turkish_citizenship', 'might_add', 'turkish_jew', 'turkish_citizen', 'would_treat', 'nazi_could', 'turkish_citizen', 'turkish_jew', 'american_jew', 'american_jew', 'part_book', 'take_place', 'eastern_european', 'european_jew', 'jew_palestine', 'jew_palestine', 'also_send', 'group_first', 'first_try', 'try_contact', 'eastern_europe', 'find_happen', 'time_people', 'people_know', 'know_go', 'nazi_could', 'thing_first', 'first_step', 'get_information', 'turkish_government', 'let_use', 'mail_send', 'send_letter', 'eastern_europe', 'find_happen', 'receive_reply', 'catholic_church', 'turkish_government', 'eastern_europe', 'turkish_government', 'government_agency', 'hard_currency', 'able_help', 'help_much', 'eastern_europe', 'black_sea', 'remain_within', 'within_border', 'non_turkish', 'would_hurt', 'turkish_government', 'government_stop', 'turkish_government', 'example_one', 'send_back', 'turkish_government', 'except_one', 'one_person', 'turkish_government', 'government_allow', 'eastern_european', 'european_jew', 'second_world', 'world_war', 'also_provide', 'give_permission', 'send_money', 'country_many', 'many_jew', 'may_still', 'first_group', 'turkish_jew', 'jew_come', 'go_palestine', 'non_turkish', 'eastern_european', 'european_jew', 'en_route', 'eastern_european', 'middle_eastern', 'european_jew', 'much_small', 'small_number', 'number_people', 'people_try', 'jew_come', 'come_number', 'jew_also', 'relatively_small', 'small_number', 'eastern_european', 'european_jew', 'may_seem', 'mean_lot', 'well_know', 'know_people', 'turkish_diplomat', 'even_people', 'people_turkey', 'could_see', 'great_deal', 'go_palestine', 'go_detail', 'one_another', 'rescue_jew', 'one_another', 'another_take', 'take_turn', 'try_get', 'turkish_government', 'european_jew', 'european_jew', 'new_york', 'york_city', 'also_obtain', 'turkish_jew', 'hope_someone', 'make_effort', 'new_book', 'fit_well', 'right_give', 'course_history', 'jew_ottoman', 'ottoman_empire', 'first_give', 'two_year', 'year_ago', 'jew_ottoman', 'ottoman_empire', 'among_thing', 'international_conference', 'take_place', 'work_two', 'two_new', 'new_book', 'book_one', 'war_independence', 'take_place', 'world_war', 'way_although', 'stanford_shaw', 'near_eastern', 'eastern_history', 'spend_two', 'two_year', 'study_university', 'american_university', 'research_institute', 'social_science', 'harvard_university', 'turkish_study', 'united_state', 'book_one', 'history_ottoman', 'ottoman_empire', 'jew_ottoman', 'ottoman_empire', 'turkish_republic', 'new_york', 'york_university', 'university_press', 'turkish_historical', 'historical_society', 'european_jewry', 'new_york', 'york_university', 'university_press', 'book_publish', 'serdar_argic'] | talk_politics_mideast_76013 |@lemmatized tell:3 kmagnacca:1 high:1 arromdian:1 asala:1 sdpa:1 arf:1 write:4 humane:1 behavior:1 tolerance:1 turk:6 legend:1 even:7 year:9 ago:3 accept:5 ten:1 thousand:4 jew:90 spain:4 flee:3 spanish:1 inquisition:1 many:13 jewish:22 family:1 escape:3 nazi:38 armenian:1 hitler:1 germany:6 take:15 refugee:6 turkiye:2 turkish:100 people:8 unselfishly:1 give:8 home:1 protection:1 freedom:1 century:4 include:3 second:9 world:10 war:19 get:7 life:1 cup:1 coffee:1 history:13 islamic:3 country:5 chapter:2 part:5 ii:7 jarusalem:1 zalman:1 shazar:1 center:5 baron:1 salo:1 social:2 religious:2 new:11 york:6 columbia:1 university:13 press:6 vols:2 iii:1 xviii:1 benardete:1 mair:1 jose:1 hispanic:1 culture:3 character:1 sephardic:2 sepher:1 hermon:1 correct:1 edition:3 original:1 publication:1 lewis:1 bernard:1 ed:1 christian:3 ottoman:18 empire:10 holmes:1 meier:1 vol:2 central:1 land:1 la:2 turquie:1 dan:1 les:1 archive:6 de:3 grand:1 orient:2 france:12 le:1 log:1 jean:1 louis:1 bacque:1 graumont:1 paul:2 dumont:1 eds:1 economie:1 et:1 societes:1 dans:1 paris:4 centre:1 national:4 reserche:1 scientifique:1 inalcik:1 halil:1 relation:2 sevilla:1 sharon:1 moshe:1 yahudileri:1 tarihsel:1 bakis:1 jerusalem:1 hebrew:3 source:4 john:3 dewey:1 republic:4 nov:1 pp:1 happy:1 minority:1 nation:2 protect:2 one:12 recall:1 abode:1 fanatic:1 turkey:55 expel:3 europe:11 especially:3 saintly:1 live:3 least:2 much:6 tranquility:1 liberty:1 fellow:2 subject:3 expose:1 alike:1 rapacity:1 common:1 ruler:1 brought:1 american:7 gladstonian:1 foreign:5 missionary:1 tradition:1 condition:1 almost:3 mathematical:1 demonstration:1 difference:2 influence:2 tragedy:1 combine:1 aspiration:1 political:4 separation:1 every:1 would:15 treat:7 treasonable:1 readily:1 reach:1 conclusion:1 fortunate:1 also:14 state:3 armenians:1 traitorously:1 turn:3 city:2 russian:1 invader:1 boast:1 raise:1 army:1 hundred:2 fifty:1 men:1 fight:2 civil:1 burn:1 village:1 exterminate:2 population:1 holocaust:11 interview:1 stanford:2 shaw:5 recently:1 complete:2 two:6 book:26 role:2 rescue:16 european:12 jewry:4 persecution:3 chair:1 undergraduate:1 interdepartmental:1 degree:2 program:3 near:3 eastern:16 study:10 organize:4 affiliate:1 von:1 grunebaum:1 editor:1 come:13 basically:1 historian:4 spent:1 twenty:1 five:1 time:6 go:7 along:1 whenever:2 find:6 material:4 collect:1 never:1 anything:3 couple:1 suddenly:2 realize:1 anniversary:2 temple:1 wilshire:1 avenue:1 invite:1 series:1 three:4 lecture:3 greatly:1 appreciate:2 become:5 motivate:1 undertake:3 research:7 develop:1 quite:1 different:1 work:5 tend:1 look:1 viewpoint:1 community:2 rely:1 mainly:3 view:2 approach:1 largely:2 point:1 society:2 use:5 finish:2 send:14 across:3 additional:1 document:14 relate:3 say:5 good:3 deal:6 actually:2 detail:3 batch:1 ministry:3 relating:1 action:3 diplomat:12 help:9 late:1 add:2 information:3 decide:1 conduct:1 ankara:3 embassy:2 consulate:3 result:3 nazis:6 exactly:1 story:4 place:6 number:4 present:2 first:7 period:1 power:2 immediately:1 start:3 dismiss:2 anti:4 german:14 universities:1 hospital:2 scientific:2 institute:3 like:1 moment:2 begin:3 process:2 reform:1 saw:1 fire:1 position:2 talent:1 modernize:1 within:2 month:1 arrange:2 bring:1 appointment:1 professor:3 head:1 medical:1 personnel:1 major:3 ernst:1 reuter:1 scientist:1 spend:3 teach:4 science:2 mayor:1 berlin:3 airlift:1 fritz:1 neimark:1 economist:1 establish:2 modern:1 school:2 economics:1 istanbul:12 man:1 name:1 reichenbach:1 eventually:1 ucla:2 philosophy:1 emigre:2 engage:1 cultural:1 activity:4 karl:1 ebert:1 lead:1 theatrical:1 producer:1 theater:1 opera:1 company:1 hindemuth:1 section:2 cover:1 phase:1 persecute:4 oddly:1 enough:1 seem:2 think:1 badly:1 regard:1 join:1 local:1 letter:5 representative:5 praise:1 promote:1 idea:1 though:1 share:1 feeling:1 aryan:1 racial:1 superiority:1 occupied:4 migrate:1 various:1 reason:1 onward:1 settle:1 independence:3 greece:2 threaten:1 overrun:1 greek:2 throughout:1 nineteenth:1 fear:2 might:2 happen:3 abandon:2 citizenship:9 french:7 citizen:14 invade:1 introduce:1 sort:2 law:1 soon:1 worth:2 lot:2 remain:3 neutral:1 retain:3 finally:2 enter:1 side:1 ally:1 end:4 therefore:3 defend:1 measure:1 form:1 station:1 particular:1 intervene:1 generally:2 problem:2 arrest:4 concentration:4 camp:5 communicate:1 commander:1 official:2 effect:2 release:3 business:2 confiscate:1 protest:2 restore:1 general:1 want:6 keep:2 friendship:3 hop:1 able:4 gateway:1 invasion:1 middle:2 east:1 obtain:2 chromium:1 manganese:1 order:1 usually:1 intervention:4 behalf:2 sometimes:1 secure:1 board:1 train:6 haul:1 auschwitz:3 extermination:1 succeed:1 call:2 drancy:1 intercession:1 consul:8 great:2 declare:1 photograph:1 line:1 front:1 either:4 passport:1 return:2 restoration:2 bureaucratic:1 matter:1 application:1 meantime:2 real:1 emergency:1 street:1 nothing:1 radio:2 telephone:2 apartment:1 forbid:1 jews:5 care:1 former:2 invent:1 gayri:1 muntazem:1 vatandash:1 irregular:1 person:2 apply:1 put:1 seal:1 since:1 could:6 read:1 whole:1 paper:1 certificate:1 mean:2 relinquish:1 mind:1 defense:1 hand:2 favor:1 himmler:2 eichmann:2 prevail:1 statistic:1 situation:1 publish:5 back:5 reply:2 certify:1 individual:1 promise:1 special:1 territory:4 run:2 regularly:1 visa:1 pass:4 often:2 hold:2 government:12 croatia:1 serbia:1 bulgaria:2 really:1 effort:4 save:2 another:3 die:1 border:2 area:1 southern:2 occupy:2 italian:1 however:1 italy:1 fell:1 well:3 incidentally:1 act:1 origin:1 yes:2 aside:1 cite:1 treaty:1 basis:1 maintain:1 discriminate:2 claim:1 vichy:1 agree:1 equally:2 divide:1 accord:1 religion:2 constitution:1 require:1 regardless:1 cannot:1 single:1 contrast:1 argument:1 third:1 principal:1 aim:1 kwish:1 agency:5 organization:4 palestine:11 resettle:1 set:2 office:1 leadership:1 chaim:1 barlas:1 kibbutz:2 headquarters:1 group:5 try:3 contact:2 today:1 know:4 imagine:1 thing:2 step:1 let:2 mail:1 relative:1 friend:2 receive:4 later:2 intercept:1 assistance:1 vatican:3 nuncio:1 angelo:1 roncali:1 serve:1 pope:1 xxiii:1 facility:2 catholic:1 church:1 supplement:1 assist:1 cooperation:1 hard:1 currency:1 food:3 clothing:2 railroad:2 steamship:2 ticket:1 czechoslovakia:1 romania:2 hungary:1 poland:1 wipe:1 polish:2 possible:1 called:1 express:2 route:2 boat:4 black:1 sea:1 eager:1 blockade:1 suffer:1 terrible:1 shortage:1 facilitate:1 movement:2 non:2 taurus:1 mountain:1 syria:1 small:3 mediterranean:1 bitterly:1 oppose:1 british:5 immigration:1 hurt:1 arab:1 constantly:1 pressure:2 stop:1 traffic:1 case:1 yield:1 example:2 incident:1 struma:1 ambassador:1 ship:1 sink:1 soviet:1 submarine:1 lose:1 except:1 nevertheless:1 allow:1 move:1 authority:1 provide:1 money:2 permission:1 may:2 still:1 israel:1 child:1 stay:1 en:1 interesting:1 obscurity:1 make:2 focus:1 scholarship:1 western:3 million:3 massacre:1 round:1 picture:1 hope:2 persuade:1 scholar:1 investigation:1 relatively:1 slay:1 significant:1 compare:1 total:1 murder:1 fourth:1 consist:1 translation:2 west:1 unaware:1 courageous:1 felt:2 fully:1 understand:1 remarkable:1 achievement:1 unless:1 see:1 language:1 passenger:1 extensively:1 describe:1 mostly:1 english:2 necessarily:1 cooperate:1 fact:1 deport:1 rival:1 interested:1 president:1 roosevelt:1 sent:1 personal:1 ira:1 hirschman:2 executive:1 bloomingdale:1 department:1 store:1 manage:1 reconcile:1 mission:1 serge:1 klarsfeld:1 father:1 kill:1 gather:1 personally:1 consult:1 believe:1 learn:1 someone:1 someday:1 fit:1 right:1 course:2 addition:2 writing:1 actively:1 involve:1 commemoration:1 among:1 large:1 international:1 conference:2 plan:1 next:1 ward:1 victorious:1 sultan:2 abdul:1 hamid:1 last:1 rule:1 important:1 modernizer:1 way:1 although:1 suppress:1 shift:1 earn:1 ph:1 princeton:2 doctoral:1 candidate:1 abroad:1 oriental:1 african:1 london:3 cairo:2 harvard:2 postdoctoral:1 support:1 simon:1 guggenheim:1 foundation:1 council:1 endowment:1 humanity:1 fulbright:1 isop:1 honorary:1 bosporus:1 bebek:1 medal:1 honor:1 lifetime:1 contribution:1 field:1 art:1 washington:1 professional:1 service:1 public:1 united:1 produce:1 eight:1 edit:1 volume:1 modem:1 six:1 reprint:1 translate:1 macmillan:2 historical:1 publisher:1 pamphlet:1 summarize:1 serdar:1 argic:1 |@bigram arromdian_asala:1 asala_sdpa:1 sdpa_arf:1 even_year:1 year_ago:3 ten_thousand:1 spanish_inquisition:1 nazi_armenian:1 nazi_germany:1 turkish_people:1 thousand_thousand:1 second_world:2 world_war:9 get_life:1 jewish_history:1 new_york:6 columbia_university:1 university_press:3 christian_jew:1 jew_ottoman:7 ottoman_empire:9 de_la:1 hebrew_university:1 john_dewey:1 jew_christian:1 christian_nation:1 christian_live:1 least_much:1 jew_turkey:4 every_nation:1 world_would:1 would_treat:3 reach_conclusion:1 also_state:1 raise_army:1 one_hundred:1 hundred_fifty:1 men_fight:1 civil_war:1 turkish_village:1 village_exterminate:1 interview_stanford:1 stanford_shaw:2 two_book:2 turkish_republic:3 republic_turkey:1 european_jewry:2 near_eastern:3 turkish_jew:21 five_year:1 year_study:1 time_go:1 go_along:1 never_anything:1 couple_year:1 greatly_appreciate:1 quite_different:1 tend_look:1 jewish_community:2 view_subject:1 point_view:1 come_across:1 war_ii:5 book_say:1 say_turkey:1 good_deal:1 rescue_jew:5 actually_many:1 foreign_ministry:3 action_take:1 turkish_diplomat:11 add_new:1 new_information:1 write_second:1 take_place:5 number_year:1 three_part:1 come_power:1 good_source:1 three_month:1 take_many:1 professor_turkish:1 political_science:1 man_name:1 oddly_enough:1 seem_think:1 even_find:1 even_though:1 though_people:1 part_book:3 book_deal:2 time_especially:1 various_reason:1 war_independence:2 might_happen:1 many_jew:3 turkish_citizenship:8 anti_jewish:2 jewish_law:1 soon_find:1 worth_much:1 enter_war:1 end_war:1 take_form:1 concentration_camp:4 official_say:1 say_effect:2 effect_people:1 turkish_citizen:7 jew_would:1 want_keep:1 able_use:1 middle_east:1 also_want:1 order_keep:1 jew_time:1 time_even:1 place_call:1 turkish_consul:6 great_problem:1 problem_come:1 book_include:1 either_get:1 application_would:1 would_take:1 take_time:1 almost_nothing:1 would_even:1 take_care:1 fellow_citizen:1 would_appreciate:1 appreciate_would:1 nazi_could:3 could_read:1 one_hand:1 come_back:1 say_turkish:1 would_present:1 occupied_territory:1 eastern_europe:5 government_really:1 really_want:1 across_border:1 much_good:1 war_end:1 also_work:1 might_add:1 american_jew:2 eastern_european:5 european_jew:7 jew_palestine:2 also_send:1 group_first:1 first_try:1 try_contact:1 find_happen:2 time_people:1 people_know:1 know_go:1 thing_first:1 first_step:1 get_information:1 turkish_government:8 let_use:1 mail_send:1 send_letter:1 receive_reply:1 catholic_church:1 government_agency:1 hard_currency:1 able_help:1 help_much:1 black_sea:1 remain_within:1 within_border:1 non_turkish:2 would_hurt:1 government_stop:1 example_one:1 send_back:1 except_one:1 one_person:1 government_allow:1 also_provide:1 give_permission:1 send_money:1 country_many:1 may_still:1 first_group:1 jew_come:2 go_palestine:2 en_route:1 middle_eastern:1 much_small:1 small_number:2 number_people:1 people_try:1 come_number:1 jew_also:1 relatively_small:1 may_seem:1 mean_lot:1 well_know:1 know_people:1 even_people:1 people_turkey:1 could_see:1 great_deal:1 go_detail:1 one_another:2 another_take:1 take_turn:1 try_get:1 york_city:1 also_obtain:1 hope_someone:1 make_effort:1 new_book:2 fit_well:1 right_give:1 course_history:1 first_give:1 two_year:2 among_thing:1 international_conference:1 work_two:1 two_new:1 book_one:2 way_although:1 eastern_history:1 spend_two:1 study_university:1 american_university:1 research_institute:1 social_science:1 harvard_university:1 turkish_study:1 united_state:1 history_ottoman:1 york_university:2 turkish_historical:1 historical_society:1 book_publish:1 serdar_argic:1 |
2,189 |
Senile keratoses. Have nothing to do with the liver.
--
----------------------------------------------------------------------------
Gordon Banks N3JXP | "Skepticism is the chastity of the intellect, and
[email protected] | it is shameful to surrender it too soon." | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.med/59109 | 13 | sci_med_59109 | [('senile', 'NN'), ('keratoses', 'NNS'), ('have', 'VBP'), ('nothing', 'NN'), ('to', 'TO'), ('do', 'VB'), ('with', 'IN'), ('the', 'DT'), ('liver', 'NN'), ('--', ':'), ('----------------------------------------------------------------------------', 'JJ'), ('gordon', 'JJ'), ('banks', 'NNS'), ('n3jxp', 'JJ'), ('skepticism', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('chastity', 'NN'), ('of', 'IN'), ('the', 'DT'), ('intellect', 'NN'), ('and', 'CC'), ('it', 'PRP'), ('is', 'VBZ'), ('shameful', 'JJ'), ('to', 'TO'), ('surrender', 'VB'), ('it', 'PRP'), ('too', 'RB'), ('soon', 'RB'), ('."', 'JJ')] | ['senile', 'keratoses', 'nothing', 'liver', 'gordon', 'bank', 'skepticism', 'chastity', 'intellect', 'shameful', 'surrender', 'soon'] | ['gordon_bank', 'bank_skepticism', 'skepticism_chastity', 'chastity_intellect', 'intellect_shameful', 'shameful_surrender', 'surrender_soon'] | sci_med_59109 |@lemmatized senile:1 keratoses:1 nothing:1 liver:1 gordon:1 bank:1 skepticism:1 chastity:1 intellect:1 shameful:1 surrender:1 soon:1 |@bigram gordon_bank:1 bank_skepticism:1 skepticism_chastity:1 chastity_intellect:1 intellect_shameful:1 shameful_surrender:1 surrender_soon:1 |
2,190 | / iftccu:talk.politics.guns / [email protected] / 12:07 am Apr 15, 1993 /
Also, you need to consider our legal system. Since any of these things
CAN be lethal, you are going to have a hard time explaining why you applied
lethal force when you DIDN'T think it was necessary. (If you thought lethal
force was necessary, you wouldn't be using rubber bullets, would you?) Ouch.
If you are justified in shooting them at all, you are justified in using
the best self defense ammunition you can get your hands on. It might actually
IMPROVE the legal outcome.
This is why hollow points hold up in court. They are safer for you, safer
for innocent by standers, (don't as a rule go through the perp) and actually
safer for the perp. If you are using military hard ball, you may have to
shoot him 'MANY' times, where one or two hollow points might stop him and
do the job. As a rule, the fewer wound channels, the better the chance
for his surviving the incident. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.guns/54166 | 16 | talk_politics_guns_54166 | [('iftccu', 'JJ'), ('talk', 'NN'), ('politics', 'NNS'), ('guns', 'VBP'), ('12', 'CD'), ('07', 'CD'), ('am', 'VBP'), ('apr', 'RB'), ('15', 'CD'), ('1993', 'CD'), ('also', 'RB'), ('you', 'PRP'), ('need', 'VBP'), ('to', 'TO'), ('consider', 'VB'), ('our', 'PRP$'), ('legal', 'JJ'), ('system', 'NN'), ('since', 'IN'), ('any', 'DT'), ('of', 'IN'), ('these', 'DT'), ('things', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('lethal', 'VBN'), ('you', 'PRP'), ('are', 'VBP'), ('going', 'VBG'), ('to', 'TO'), ('have', 'VB'), ('hard', 'JJ'), ('time', 'NN'), ('explaining', 'VBG'), ('why', 'WRB'), ('you', 'PRP'), ('applied', 'VBD'), ('lethal', 'JJ'), ('force', 'NN'), ('when', 'WRB'), ('you', 'PRP'), ('didn', 'VBP'), ('think', 'VB'), ('it', 'PRP'), ('was', 'VBD'), ('necessary', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('thought', 'VBD'), ('lethal', 'JJ'), ('force', 'NN'), ('was', 'VBD'), ('necessary', 'JJ'), ('you', 'PRP'), ('wouldn', 'VBP'), ('be', 'VB'), ('using', 'VBG'), ('rubber', 'JJ'), ('bullets', 'NNS'), ('would', 'MD'), ('you', 'PRP'), ('?)', 'VB'), ('ouch', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('justified', 'VBN'), ('in', 'IN'), ('shooting', 'VBG'), ('them', 'PRP'), ('at', 'IN'), ('all', 'DT'), ('you', 'PRP'), ('are', 'VBP'), ('justified', 'VBN'), ('in', 'IN'), ('using', 'VBG'), ('the', 'DT'), ('best', 'JJS'), ('self', 'NN'), ('defense', 'NN'), ('ammunition', 'NN'), ('you', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('your', 'PRP$'), ('hands', 'NNS'), ('on', 'IN'), ('it', 'PRP'), ('might', 'MD'), ('actually', 'RB'), ('improve', 'VB'), ('the', 'DT'), ('legal', 'JJ'), ('outcome', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('why', 'WRB'), ('hollow', 'JJ'), ('points', 'NNS'), ('hold', 'VBP'), ('up', 'RP'), ('in', 'IN'), ('court', 'NN'), ('they', 'PRP'), ('are', 'VBP'), ('safer', 'VBG'), ('for', 'IN'), ('you', 'PRP'), ('safer', 'VBP'), ('for', 'IN'), ('innocent', 'NN'), ('by', 'IN'), ('standers', 'NNS'), ('don', 'RB'), ('as', 'IN'), ('rule', 'NN'), ('go', 'VBP'), ('through', 'IN'), ('the', 'DT'), ('perp', 'NN'), ('and', 'CC'), ('actually', 'RB'), ('safer', 'VB'), ('for', 'IN'), ('the', 'DT'), ('perp', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('are', 'VBP'), ('using', 'VBG'), ('military', 'JJ'), ('hard', 'JJ'), ('ball', 'NN'), ('you', 'PRP'), ('may', 'MD'), ('have', 'VB'), ('to', 'TO'), ('shoot', 'VB'), ('him', 'PRP'), ('many', 'JJ'), ('times', 'NNS'), ('where', 'WRB'), ('one', 'CD'), ('or', 'CC'), ('two', 'CD'), ('hollow', 'JJ'), ('points', 'NNS'), ('might', 'MD'), ('stop', 'VB'), ('him', 'PRP'), ('and', 'CC'), ('do', 'VB'), ('the', 'DT'), ('job', 'NN'), ('as', 'IN'), ('rule', 'NN'), ('the', 'DT'), ('fewer', 'JJR'), ('wound', 'NN'), ('channels', 'VBZ'), ('the', 'DT'), ('better', 'JJR'), ('the', 'DT'), ('chance', 'NN'), ('for', 'IN'), ('his', 'PRP$'), ('surviving', 'VBG'), ('the', 'DT'), ('incident', 'NN')] | ['iftccu', 'talk', 'politics', 'gun', 'apr', 'also', 'need', 'consider', 'legal', 'system', 'since', 'thing', 'lethal', 'go', 'hard', 'time', 'explain', 'apply', 'lethal', 'force', 'think', 'necessary', 'think', 'lethal', 'force', 'necessary', 'use', 'rubber', 'bullet', 'would', 'ouch', 'justify', 'shoot', 'justify', 'use', 'best', 'self', 'defense', 'ammunition', 'get', 'hand', 'might', 'actually', 'improve', 'legal', 'outcome', 'hollow', 'point', 'hold', 'court', 'safer', 'safer', 'innocent', 'stander', 'rule', 'go', 'perp', 'actually', 'safer', 'perp', 'use', 'military', 'hard', 'ball', 'may', 'shoot', 'many', 'time', 'one', 'two', 'hollow', 'point', 'might', 'stop', 'job', 'rule', 'wound', 'channel', 'good', 'chance', 'survive', 'incident'] | ['iftccu_talk', 'talk_politics', 'politics_gun', 'also_need', 'legal_system', 'system_since', 'go_hard', 'hard_time', 'lethal_force', 'lethal_force', 'use_best', 'self_defense', 'get_hand', 'might_actually', 'use_military', 'many_time', 'time_one', 'one_two', 'point_might', 'good_chance'] | talk_politics_guns_54166 |@lemmatized iftccu:1 talk:1 politics:1 gun:1 apr:1 also:1 need:1 consider:1 legal:2 system:1 since:1 thing:1 lethal:3 go:2 hard:2 time:2 explain:1 apply:1 force:2 think:2 necessary:2 use:3 rubber:1 bullet:1 would:1 ouch:1 justify:2 shoot:2 best:1 self:1 defense:1 ammunition:1 get:1 hand:1 might:2 actually:2 improve:1 outcome:1 hollow:2 point:2 hold:1 court:1 safer:3 innocent:1 stander:1 rule:2 perp:2 military:1 ball:1 may:1 many:1 one:1 two:1 stop:1 job:1 wound:1 channel:1 good:1 chance:1 survive:1 incident:1 |@bigram iftccu_talk:1 talk_politics:1 politics_gun:1 also_need:1 legal_system:1 system_since:1 go_hard:1 hard_time:1 lethal_force:2 use_best:1 self_defense:1 get_hand:1 might_actually:1 use_military:1 many_time:1 time_one:1 one_two:1 point_might:1 good_chance:1 |
2,191 |
Where do insparations/Miracles fit in? I was a new reader to the bible
and Qu'ran at the same time in my life and I can tell you that I would
have drifted in my faith if Those books were not exposed to me.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20740 | 15 | soc_religion_christian_20740 | [('where', 'WRB'), ('do', 'VB'), ('insparations', 'NNS'), ('miracles', 'VB'), ('fit', 'NN'), ('in', 'IN'), ('was', 'VBD'), ('new', 'JJ'), ('reader', 'NN'), ('to', 'TO'), ('the', 'DT'), ('bible', 'JJ'), ('and', 'CC'), ('qu', 'JJ'), ('ran', 'NN'), ('at', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('time', 'NN'), ('in', 'IN'), ('my', 'PRP$'), ('life', 'NN'), ('and', 'CC'), ('can', 'MD'), ('tell', 'VB'), ('you', 'PRP'), ('that', 'WDT'), ('would', 'MD'), ('have', 'VB'), ('drifted', 'VBN'), ('in', 'IN'), ('my', 'PRP$'), ('faith', 'NN'), ('if', 'IN'), ('those', 'DT'), ('books', 'NNS'), ('were', 'VBD'), ('not', 'RB'), ('exposed', 'VBN'), ('to', 'TO'), ('me', 'PRP')] | ['insparations', 'miracles', 'fit', 'new', 'reader', 'bible', 'qu', 'ran', 'time', 'life', 'tell', 'would', 'drift', 'faith', 'book', 'expose'] | ['new_reader', 'time_life', 'tell_would'] | soc_religion_christian_20740 |@lemmatized insparations:1 miracles:1 fit:1 new:1 reader:1 bible:1 qu:1 ran:1 time:1 life:1 tell:1 would:1 drift:1 faith:1 book:1 expose:1 |@bigram new_reader:1 time_life:1 tell_would:1 |
2,192 | COCHRANE,JAMES SHAPLEIGH writes
This group killed itself to fulfill its interpretation of prophecy
and to book a suite in Paradise, taking innocent kids along for the
ride. I hardly think the feds were motivated by persecution. If they
were, all Koresh would have had to do was surrender quietly to the
authorities, without firing a shot, to get the American people behind
him and put the feds in the hot seat. But no, God told him to play
the tough guy. There's great strength in yielding, but few appreciate
this.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.religion.misc/83704 | 19 | talk_religion_misc_83704 | [('cochrane', 'NN'), ('james', 'NNS'), ('shapleigh', 'VBP'), ('writes', 'VBZ'), ('this', 'DT'), ('group', 'NN'), ('killed', 'VBD'), ('itself', 'PRP'), ('to', 'TO'), ('fulfill', 'VB'), ('its', 'PRP$'), ('interpretation', 'NN'), ('of', 'IN'), ('prophecy', 'NN'), ('and', 'CC'), ('to', 'TO'), ('book', 'NN'), ('suite', 'NN'), ('in', 'IN'), ('paradise', 'NN'), ('taking', 'VBG'), ('innocent', 'JJ'), ('kids', 'NNS'), ('along', 'IN'), ('for', 'IN'), ('the', 'DT'), ('ride', 'NN'), ('hardly', 'RB'), ('think', 'VBP'), ('the', 'DT'), ('feds', 'NNS'), ('were', 'VBD'), ('motivated', 'VBN'), ('by', 'IN'), ('persecution', 'NN'), ('if', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('all', 'DT'), ('koresh', 'NNS'), ('would', 'MD'), ('have', 'VB'), ('had', 'VBN'), ('to', 'TO'), ('do', 'VB'), ('was', 'VBD'), ('surrender', 'VB'), ('quietly', 'RB'), ('to', 'TO'), ('the', 'DT'), ('authorities', 'NNS'), ('without', 'IN'), ('firing', 'VBG'), ('shot', 'NN'), ('to', 'TO'), ('get', 'VB'), ('the', 'DT'), ('american', 'JJ'), ('people', 'NNS'), ('behind', 'IN'), ('him', 'PRP'), ('and', 'CC'), ('put', 'VBD'), ('the', 'DT'), ('feds', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('hot', 'JJ'), ('seat', 'NN'), ('but', 'CC'), ('no', 'DT'), ('god', 'NN'), ('told', 'VBD'), ('him', 'PRP'), ('to', 'TO'), ('play', 'VB'), ('the', 'DT'), ('tough', 'JJ'), ('guy', 'NN'), ('there', 'RB'), ('great', 'JJ'), ('strength', 'NN'), ('in', 'IN'), ('yielding', 'NN'), ('but', 'CC'), ('few', 'JJ'), ('appreciate', 'NN'), ('this', 'DT')] | ['cochrane', 'james', 'shapleigh', 'write', 'group', 'kill', 'fulfill', 'interpretation', 'prophecy', 'book', 'suite', 'paradise', 'take', 'innocent', 'kid', 'along', 'ride', 'hardly', 'think', 'fed', 'motivate', 'persecution', 'koresh', 'would', 'surrender', 'quietly', 'authority', 'without', 'fire', 'shot', 'get', 'american', 'people', 'behind', 'put', 'fed', 'hot', 'seat', 'god', 'tell', 'play', 'tough', 'guy', 'great', 'strength', 'yielding', 'appreciate'] | ['would_surrender', 'fire_shot', 'american_people', 'god_tell', 'tough_guy'] | talk_religion_misc_83704 |@lemmatized cochrane:1 james:1 shapleigh:1 write:1 group:1 kill:1 fulfill:1 interpretation:1 prophecy:1 book:1 suite:1 paradise:1 take:1 innocent:1 kid:1 along:1 ride:1 hardly:1 think:1 fed:2 motivate:1 persecution:1 koresh:1 would:1 surrender:1 quietly:1 authority:1 without:1 fire:1 shot:1 get:1 american:1 people:1 behind:1 put:1 hot:1 seat:1 god:1 tell:1 play:1 tough:1 guy:1 great:1 strength:1 yielding:1 appreciate:1 |@bigram would_surrender:1 fire_shot:1 american_people:1 god_tell:1 tough_guy:1 |
2,193 | I am currently writing a paper on computer protocols security. I would
appreciate your help. I currently have no insight into these topics except
that they relate to security in multilevel security network. Please semd me
any references, books, FAQs or contact persons names and Internet addresses.
The topics I am interested in:
1. The "firewall gateway model" as implemented in Internet gateways.
2. Kerberos Authentication Service
Please send me a private e-mail at [email protected] and/or post it on the board.
Thanks a lot, | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15333 | 11 | sci_crypt_15333 | [('am', 'VBP'), ('currently', 'RB'), ('writing', 'VBG'), ('paper', 'NN'), ('on', 'IN'), ('computer', 'NN'), ('protocols', 'NNS'), ('security', 'NN'), ('would', 'MD'), ('appreciate', 'VB'), ('your', 'PRP$'), ('help', 'NN'), ('currently', 'RB'), ('have', 'VBP'), ('no', 'DT'), ('insight', 'NN'), ('into', 'IN'), ('these', 'DT'), ('topics', 'NNS'), ('except', 'IN'), ('that', 'IN'), ('they', 'PRP'), ('relate', 'VBP'), ('to', 'TO'), ('security', 'NN'), ('in', 'IN'), ('multilevel', 'NN'), ('security', 'NN'), ('network', 'NN'), ('please', 'NN'), ('semd', 'VB'), ('me', 'PRP'), ('any', 'DT'), ('references', 'NNS'), ('books', 'NNS'), ('faqs', 'VBP'), ('or', 'CC'), ('contact', 'JJ'), ('persons', 'NNS'), ('names', 'NNS'), ('and', 'CC'), ('internet', 'NN'), ('addresses', 'VBZ'), ('the', 'DT'), ('topics', 'NNS'), ('am', 'VBP'), ('interested', 'JJ'), ('in', 'IN'), ('the', 'DT'), ('firewall', 'JJ'), ('gateway', 'NN'), ('model', 'NN'), ('as', 'IN'), ('implemented', 'VBN'), ('in', 'IN'), ('internet', 'NN'), ('gateways', 'NNS'), ('kerberos', 'VBP'), ('authentication', 'NN'), ('service', 'NN'), ('please', 'NN'), ('send', 'VB'), ('me', 'PRP'), ('private', 'JJ'), ('mail', 'NN'), ('at', 'IN'), ('and', 'CC'), ('or', 'CC'), ('post', 'VB'), ('it', 'PRP'), ('on', 'IN'), ('the', 'DT'), ('board', 'NN'), ('thanks', 'VBZ'), ('lot', 'NN')] | ['currently', 'write', 'paper', 'computer', 'protocol', 'security', 'would', 'appreciate', 'help', 'currently', 'insight', 'topic', 'except', 'relate', 'security', 'multilevel', 'security', 'network', 'please', 'semd', 'reference', 'book', 'faqs', 'contact', 'person', 'name', 'internet', 'address', 'topic', 'interested', 'firewall', 'gateway', 'model', 'implement', 'internet', 'gateway', 'kerberos', 'authentication', 'service', 'please', 'send', 'private', 'mail', 'post', 'board', 'thank', 'lot'] | ['write_paper', 'would_appreciate', 'appreciate_help', 'reference_book', 'internet_address', 'please_send', 'private_mail', 'mail_post'] | sci_crypt_15333 |@lemmatized currently:2 write:1 paper:1 computer:1 protocol:1 security:3 would:1 appreciate:1 help:1 insight:1 topic:2 except:1 relate:1 multilevel:1 network:1 please:2 semd:1 reference:1 book:1 faqs:1 contact:1 person:1 name:1 internet:2 address:1 interested:1 firewall:1 gateway:2 model:1 implement:1 kerberos:1 authentication:1 service:1 send:1 private:1 mail:1 post:1 board:1 thank:1 lot:1 |@bigram write_paper:1 would_appreciate:1 appreciate_help:1 reference_book:1 internet_address:1 please_send:1 private_mail:1 mail_post:1 |
2,194 |
|>
|> Final Solution for the Gaza ghetto ?
|> ------------------------------------
|>
|> While Israeli Jews fete the uprising of the Warsaw ghetto, they
|> repress by violent means the uprising of the Gaza ghetto and
|> attempt to starve the Gazans.
|>
|> [...]
|>
|> The Jews in the Warsaw ghetto were fighting to keep themselves and
|> their families from being sent to Nazi gas chambers. Groups like Hamas
|> and the Islamic Jihad fight with the expressed purpose of driving all
|> Jews into the sea. Perhaps, we should persuade Jewish people to help
^^^^^^^^^^^^^^^^^^
|> these wnderful "freedom fighters" attain this ultimate goal.
|>
|> Maybe the "freedom fighters" will choose to spare the co-operative Jews.
|> Is that what you are counting on, Elias - the pity of murderers.
|>
|> You say your mother was Jewish. How ashamed she must be of her son. I
|> am sorry, Mrs. Davidsson.
|>
|> Harry.
O.K., its my turn:
DRIVING THE JEWS INTO THE SEA ?!
I am sick and tired of this 'DRIVING THE JEWS INTO THE SEA' sentance attributed
to Islamic movements and the PLO; it simply can't be proven as part of their
plan !
(Pro Israeli activists repeat it like parrots without checking its authenticity
since it was coined by Bnai Brith)
What Hamas and Islamic Jihad believe in, as far as I can get from the Arab media,
is an Islamic state that protects the rights of all its inhabitants under Koranic
Law. This would be a reversal of the 1948 situation in which the Jews in
Palestine took control of the land and its (mostly Muslim) inhabitants.
However, whoever committed crimes against humanity (torture, blowing up their
homes, murders,...) must be treated and tried as a war criminal. The political
thought of these movements shows that a freedom of choice will be given to the
Jews in living under the new law or leaving to the destintion of their choice.
As for the PLO, I am at a loss to explain what is going inside Arafat's mind.
Although their political thinking seems far fetched with Israel acting as a true
super-power in the region, the Islamic movements are using the same weapon the
Jews used to establish their state : Religion.
Ahmed.
Forget the syntax, Ahmed, and focus on the semnatics. The fact is that
the PLO does not recognize Israel's right to exist. This is perfectly
obvious from the PLO covenant (Cairo, 1968). The covenant calls for
the destruction of the "Zionist entity". As far as I know the
Israel-destruction clauses still exist in the document which specifies
the purpose for the existence of the PLO. If you would like, I can
post the relevant caluses.
Now the Hamas ideal is far more radical, it seems. I know it has been
posted here several times, and while I do not have a copy of it, I am
sure that someone does and he (or she, of course) would be more than
happy to repost it.
Regardless of phrasing, groups like Hamas, and the Hezbollah, and
even the newly moderate and politically-correct PLO, have at the very
heart of their ideologies the need for the destrcution of Israel.
It just seems to me that Mr. Davidsson's suggestion that Jews support
people envolved in these organizations is not a particularly appealing
one to many Jews. | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/76335 | 17 | talk_politics_mideast_76335 | [('|>', 'JJ'), ('|>', 'NNP'), ('final', 'JJ'), ('solution', 'NN'), ('for', 'IN'), ('the', 'DT'), ('gaza', 'NN'), ('ghetto', 'NN'), ('|>', 'NNP'), ('------------------------------------', 'NNP'), ('|>', 'NNP'), ('|>', 'NNP'), ('while', 'IN'), ('israeli', 'JJ'), ('jews', 'NNS'), ('fete', 'VBP'), ('the', 'DT'), ('uprising', 'NN'), ('of', 'IN'), ('the', 'DT'), ('warsaw', 'NN'), ('ghetto', 'NN'), ('they', 'PRP'), ('|>', 'VBP'), ('repress', 'NN'), ('by', 'IN'), ('violent', 'NN'), ('means', 'VBZ'), ('the', 'DT'), ('uprising', 'NN'), ('of', 'IN'), ('the', 'DT'), ('gaza', 'NN'), ('ghetto', 'NN'), ('and', 'CC'), ('|>', 'JJ'), ('attempt', 'NN'), ('to', 'TO'), ('starve', 'VB'), ('the', 'DT'), ('gazans', 'NNS'), ('|>', 'VBP'), ('|>', 'JJ'), ('[...]', 'NNP'), ('|>', 'NNP'), ('|>', 'VBD'), ('the', 'DT'), ('jews', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('warsaw', 'NN'), ('ghetto', 'NN'), ('were', 'VBD'), ('fighting', 'VBG'), ('to', 'TO'), ('keep', 'VB'), ('themselves', 'PRP'), ('and', 'CC'), ('|>', 'VB'), ('their', 'PRP$'), ('families', 'NNS'), ('from', 'IN'), ('being', 'VBG'), ('sent', 'VBN'), ('to', 'TO'), ('nazi', 'VB'), ('gas', 'NN'), ('chambers', 'NNS'), ('groups', 'NNS'), ('like', 'IN'), ('hamas', 'NN'), ('|>', 'NN'), ('and', 'CC'), ('the', 'DT'), ('islamic', 'JJ'), ('jihad', 'NN'), ('fight', 'NN'), ('with', 'IN'), ('the', 'DT'), ('expressed', 'VBN'), ('purpose', 'NN'), ('of', 'IN'), ('driving', 'VBG'), ('all', 'DT'), ('|>', 'JJ'), ('jews', 'NNS'), ('into', 'IN'), ('the', 'DT'), ('sea', 'NN'), ('perhaps', 'RB'), ('we', 'PRP'), ('should', 'MD'), ('persuade', 'VB'), ('jewish', 'JJ'), ('people', 'NNS'), ('to', 'TO'), ('help', 'VB'), ('^^^^^^^^^^^^^^^^^^', 'VB'), ('|>', 'VB'), ('these', 'DT'), ('wnderful', 'JJ'), ('freedom', 'NN'), ('fighters', 'NNS'), ('attain', 'VBP'), ('this', 'DT'), ('ultimate', 'JJ'), ('goal', 'NN'), ('|>', 'NNP'), ('|>', 'NNP'), ('maybe', 'RB'), ('the', 'DT'), ('freedom', 'NN'), ('fighters', 'NNS'), ('will', 'MD'), ('choose', 'VB'), ('to', 'TO'), ('spare', 'VB'), ('the', 'DT'), ('co', 'NN'), ('operative', 'JJ'), ('jews', 'NN'), ('|>', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('what', 'WP'), ('you', 'PRP'), ('are', 'VBP'), ('counting', 'VBG'), ('on', 'IN'), ('elias', 'PDT'), ('the', 'DT'), ('pity', 'NN'), ('of', 'IN'), ('murderers', 'NNS'), ('|>', 'VBP'), ('|>', 'IN'), ('you', 'PRP'), ('say', 'VBP'), ('your', 'PRP$'), ('mother', 'NN'), ('was', 'VBD'), ('jewish', 'JJ'), ('how', 'WRB'), ('ashamed', 'JJ'), ('she', 'PRP'), ('must', 'MD'), ('be', 'VB'), ('of', 'IN'), ('her', 'PRP$'), ('son', 'NN'), ('|>', 'NNP'), ('am', 'VBP'), ('sorry', 'JJ'), ('mrs', 'NN'), ('davidsson', 'NN'), ('|>', 'NNP'), ('|>', 'NNP'), ('harry', 'NN'), ('.,', 'VBD'), ('its', 'PRP$'), ('my', 'PRP$'), ('turn', 'NN'), ('driving', 'VBG'), ('the', 'DT'), ('jews', 'NN'), ('into', 'IN'), ('the', 'DT'), ('sea', 'NN'), ('?!', 'NNP'), ('am', 'VBP'), ('sick', 'JJ'), ('and', 'CC'), ('tired', 'JJ'), ('of', 'IN'), ('this', 'DT'), ('driving', 'VBG'), ('the', 'DT'), ('jews', 'NN'), ('into', 'IN'), ('the', 'DT'), ('sea', 'NN'), ('sentance', 'NN'), ('attributed', 'VBD'), ('to', 'TO'), ('islamic', 'VB'), ('movements', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('plo', 'NN'), ('it', 'PRP'), ('simply', 'RB'), ('can', 'MD'), ('be', 'VB'), ('proven', 'VBN'), ('as', 'IN'), ('part', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('plan', 'NN'), ('pro', 'VBZ'), ('israeli', 'JJ'), ('activists', 'NNS'), ('repeat', 'VBP'), ('it', 'PRP'), ('like', 'IN'), ('parrots', 'NNS'), ('without', 'IN'), ('checking', 'VBG'), ('its', 'PRP$'), ('authenticity', 'NN'), ('since', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('coined', 'VBN'), ('by', 'IN'), ('bnai', 'NN'), ('brith', 'NN'), ('what', 'WP'), ('hamas', 'NN'), ('and', 'CC'), ('islamic', 'JJ'), ('jihad', 'NN'), ('believe', 'VBP'), ('in', 'IN'), ('as', 'RB'), ('far', 'RB'), ('as', 'IN'), ('can', 'MD'), ('get', 'VB'), ('from', 'IN'), ('the', 'DT'), ('arab', 'JJ'), ('media', 'NNS'), ('is', 'VBZ'), ('an', 'DT'), ('islamic', 'JJ'), ('state', 'NN'), ('that', 'WDT'), ('protects', 'VBZ'), ('the', 'DT'), ('rights', 'NNS'), ('of', 'IN'), ('all', 'DT'), ('its', 'PRP$'), ('inhabitants', 'NNS'), ('under', 'IN'), ('koranic', 'JJ'), ('law', 'NN'), ('this', 'DT'), ('would', 'MD'), ('be', 'VB'), ('reversal', 'NN'), ('of', 'IN'), ('the', 'DT'), ('1948', 'CD'), ('situation', 'NN'), ('in', 'IN'), ('which', 'WDT'), ('the', 'DT'), ('jews', 'NN'), ('in', 'IN'), ('palestine', 'JJ'), ('took', 'VBD'), ('control', 'NN'), ('of', 'IN'), ('the', 'DT'), ('land', 'NN'), ('and', 'CC'), ('its', 'PRP$'), ('mostly', 'RB'), ('muslim', 'JJ'), ('inhabitants', 'NNS'), ('however', 'RB'), ('whoever', 'RB'), ('committed', 'JJ'), ('crimes', 'NNS'), ('against', 'IN'), ('humanity', 'NN'), ('torture', 'NN'), ('blowing', 'VBG'), ('up', 'RP'), ('their', 'PRP$'), ('homes', 'NNS'), ('murders', 'NNS'), (',...)', 'VBP'), ('must', 'MD'), ('be', 'VB'), ('treated', 'VBN'), ('and', 'CC'), ('tried', 'VBN'), ('as', 'IN'), ('war', 'NN'), ('criminal', 'VBP'), ('the', 'DT'), ('political', 'JJ'), ('thought', 'NN'), ('of', 'IN'), ('these', 'DT'), ('movements', 'NNS'), ('shows', 'VBZ'), ('that', 'IN'), ('freedom', 'NN'), ('of', 'IN'), ('choice', 'NN'), ('will', 'MD'), ('be', 'VB'), ('given', 'VBN'), ('to', 'TO'), ('the', 'DT'), ('jews', 'NNS'), ('in', 'IN'), ('living', 'VBG'), ('under', 'IN'), ('the', 'DT'), ('new', 'JJ'), ('law', 'NN'), ('or', 'CC'), ('leaving', 'VBG'), ('to', 'TO'), ('the', 'DT'), ('destintion', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('choice', 'NN'), ('as', 'IN'), ('for', 'IN'), ('the', 'DT'), ('plo', 'NN'), ('am', 'VBP'), ('at', 'IN'), ('loss', 'NN'), ('to', 'TO'), ('explain', 'VB'), ('what', 'WP'), ('is', 'VBZ'), ('going', 'VBG'), ('inside', 'IN'), ('arafat', 'JJ'), ('mind', 'NN'), ('although', 'IN'), ('their', 'PRP$'), ('political', 'JJ'), ('thinking', 'NN'), ('seems', 'VBZ'), ('far', 'RB'), ('fetched', 'VBN'), ('with', 'IN'), ('israel', 'JJ'), ('acting', 'VBG'), ('as', 'IN'), ('true', 'JJ'), ('super', 'JJ'), ('power', 'NN'), ('in', 'IN'), ('the', 'DT'), ('region', 'NN'), ('the', 'DT'), ('islamic', 'JJ'), ('movements', 'NNS'), ('are', 'VBP'), ('using', 'VBG'), ('the', 'DT'), ('same', 'JJ'), ('weapon', 'IN'), ('the', 'DT'), ('jews', 'NNS'), ('used', 'VBN'), ('to', 'TO'), ('establish', 'VB'), ('their', 'PRP$'), ('state', 'NN'), ('religion', 'NN'), ('ahmed', 'VBD'), ('forget', 'VB'), ('the', 'DT'), ('syntax', 'NN'), ('ahmed', 'VBD'), ('and', 'CC'), ('focus', 'VB'), ('on', 'IN'), ('the', 'DT'), ('semnatics', 'NNS'), ('the', 'DT'), ('fact', 'NN'), ('is', 'VBZ'), ('that', 'IN'), ('the', 'DT'), ('plo', 'NN'), ('does', 'VBZ'), ('not', 'RB'), ('recognize', 'VB'), ('israel', 'NNS'), ('right', 'RB'), ('to', 'TO'), ('exist', 'VB'), ('this', 'DT'), ('is', 'VBZ'), ('perfectly', 'RB'), ('obvious', 'JJ'), ('from', 'IN'), ('the', 'DT'), ('plo', 'NN'), ('covenant', 'NN'), ('cairo', 'NN'), ('1968', 'CD'), (').', 'IN'), ('the', 'DT'), ('covenant', 'NN'), ('calls', 'VBZ'), ('for', 'IN'), ('the', 'DT'), ('destruction', 'NN'), ('of', 'IN'), ('the', 'DT'), ('zionist', 'NN'), ('entity', 'NN'), ('".', 'NNP'), ('as', 'RB'), ('far', 'RB'), ('as', 'IN'), ('know', 'VBP'), ('the', 'DT'), ('israel', 'JJ'), ('destruction', 'NN'), ('clauses', 'NNS'), ('still', 'RB'), ('exist', 'VBP'), ('in', 'IN'), ('the', 'DT'), ('document', 'NN'), ('which', 'WDT'), ('specifies', 'VBZ'), ('the', 'DT'), ('purpose', 'NN'), ('for', 'IN'), ('the', 'DT'), ('existence', 'NN'), ('of', 'IN'), ('the', 'DT'), ('plo', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('would', 'MD'), ('like', 'VB'), ('can', 'MD'), ('post', 'VB'), ('the', 'DT'), ('relevant', 'JJ'), ('caluses', 'NNS'), ('now', 'RB'), ('the', 'DT'), ('hamas', 'NN'), ('ideal', 'NN'), ('is', 'VBZ'), ('far', 'RB'), ('more', 'RBR'), ('radical', 'JJ'), ('it', 'PRP'), ('seems', 'VBZ'), ('know', 'VBP'), ('it', 'PRP'), ('has', 'VBZ'), ('been', 'VBN'), ('posted', 'VBN'), ('here', 'RB'), ('several', 'JJ'), ('times', 'NNS'), ('and', 'CC'), ('while', 'NN'), ('do', 'VBP'), ('not', 'RB'), ('have', 'VB'), ('copy', 'NN'), ('of', 'IN'), ('it', 'PRP'), ('am', 'VBP'), ('sure', 'JJ'), ('that', 'IN'), ('someone', 'NN'), ('does', 'VBZ'), ('and', 'CC'), ('he', 'PRP'), ('or', 'CC'), ('she', 'PRP'), ('of', 'IN'), ('course', 'NN'), ('would', 'MD'), ('be', 'VB'), ('more', 'JJR'), ('than', 'IN'), ('happy', 'JJ'), ('to', 'TO'), ('repost', 'VB'), ('it', 'PRP'), ('regardless', 'RB'), ('of', 'IN'), ('phrasing', 'VBG'), ('groups', 'NNS'), ('like', 'IN'), ('hamas', 'NN'), ('and', 'CC'), ('the', 'DT'), ('hezbollah', 'NN'), ('and', 'CC'), ('even', 'RB'), ('the', 'DT'), ('newly', 'RB'), ('moderate', 'JJ'), ('and', 'CC'), ('politically', 'RB'), ('correct', 'JJ'), ('plo', 'NNS'), ('have', 'VBP'), ('at', 'IN'), ('the', 'DT'), ('very', 'JJ'), ('heart', 'NN'), ('of', 'IN'), ('their', 'PRP$'), ('ideologies', 'NNS'), ('the', 'DT'), ('need', 'NN'), ('for', 'IN'), ('the', 'DT'), ('destrcution', 'NN'), ('of', 'IN'), ('israel', 'NN'), ('it', 'PRP'), ('just', 'RB'), ('seems', 'VBZ'), ('to', 'TO'), ('me', 'PRP'), ('that', 'IN'), ('mr', 'VBZ'), ('davidsson', 'JJ'), ('suggestion', 'NN'), ('that', 'IN'), ('jews', 'VBZ'), ('support', 'NN'), ('people', 'NNS'), ('envolved', 'VBN'), ('in', 'IN'), ('these', 'DT'), ('organizations', 'NNS'), ('is', 'VBZ'), ('not', 'RB'), ('particularly', 'RB'), ('appealing', 'VBG'), ('one', 'CD'), ('to', 'TO'), ('many', 'JJ'), ('jews', 'NNS')] | ['final', 'solution', 'gaza', 'ghetto', 'israeli', 'jew', 'fete', 'uprising', 'warsaw', 'ghetto', 'repress', 'violent', 'mean', 'uprising', 'gaza', 'ghetto', 'attempt', 'starve', 'gazans', 'jew', 'warsaw', 'ghetto', 'fight', 'keep', 'family', 'send', 'nazi', 'gas', 'chamber', 'group', 'like', 'hamas', 'islamic', 'jihad', 'fight', 'express', 'purpose', 'drive', 'jew', 'sea', 'perhaps', 'persuade', 'jewish', 'people', 'help', 'wnderful', 'freedom', 'fighter', 'attain', 'ultimate', 'goal', 'maybe', 'freedom', 'fighter', 'choose', 'spare', 'co', 'operative', 'jew', 'count', 'elia', 'pity', 'murderer', 'say', 'mother', 'jewish', 'ashamed', 'must', 'son', 'sorry', 'mr', 'davidsson', 'harry', 'turn', 'drive', 'jew', 'sea', 'sick', 'tired', 'drive', 'jew', 'sea', 'sentance', 'attribute', 'islamic', 'movement', 'plo', 'simply', 'prove', 'part', 'plan', 'pro', 'israeli', 'activist', 'repeat', 'like', 'parrot', 'without', 'check', 'authenticity', 'since', 'coin', 'bnai', 'brith', 'hamas', 'islamic', 'jihad', 'believe', 'far', 'get', 'arab', 'medium', 'islamic', 'state', 'protect', 'right', 'inhabitant', 'koranic', 'law', 'would', 'reversal', 'situation', 'jew', 'palestine', 'take', 'control', 'land', 'mostly', 'muslim', 'inhabitant', 'however', 'whoever', 'committed', 'crime', 'humanity', 'torture', 'blow', 'home', 'murder', 'must', 'treat', 'try', 'war', 'criminal', 'political', 'thought', 'movement', 'show', 'freedom', 'choice', 'give', 'jew', 'live', 'new', 'law', 'leave', 'destintion', 'choice', 'plo', 'loss', 'explain', 'go', 'inside', 'arafat', 'mind', 'although', 'political', 'thinking', 'seem', 'far', 'fetch', 'israel', 'act', 'true', 'super', 'power', 'region', 'islamic', 'movement', 'use', 'weapon', 'jew', 'use', 'establish', 'state', 'religion', 'ahmed', 'forget', 'syntax', 'ahmed', 'focus', 'semnatics', 'fact', 'plo', 'recognize', 'israel', 'right', 'exist', 'perfectly', 'obvious', 'plo', 'covenant', 'cairo', 'covenant', 'call', 'destruction', 'zionist', 'entity', 'far', 'know', 'israel', 'destruction', 'clause', 'still', 'exist', 'document', 'specify', 'purpose', 'existence', 'plo', 'would', 'like', 'post', 'relevant', 'caluses', 'hamas', 'ideal', 'far', 'radical', 'seem', 'know', 'post', 'several', 'time', 'copy', 'sure', 'someone', 'course', 'would', 'happy', 'repost', 'regardless', 'phrase', 'group', 'like', 'hamas', 'hezbollah', 'even', 'newly', 'moderate', 'politically', 'correct', 'plo', 'heart', 'ideology', 'need', 'destrcution', 'israel', 'seem', 'mr', 'davidsson', 'suggestion', 'jews', 'support', 'people', 'envolved', 'organization', 'particularly', 'appeal', 'one', 'many', 'jew'] | ['final_solution', 'solution_gaza', 'gaza_ghetto', 'ghetto_israeli', 'israeli_jew', 'warsaw_ghetto', 'gaza_ghetto', 'warsaw_ghetto', 'gas_chamber', 'group_like', 'hamas_islamic', 'drive_jew', 'jew_sea', 'jewish_people', 'people_help', 'freedom_fighter', 'freedom_fighter', 'say_mother', 'mr_davidsson', 'drive_jew', 'jew_sea', 'sick_tired', 'drive_jew', 'jew_sea', 'islamic_movement', 'part_plan', 'without_check', 'hamas_islamic', 'far_get', 'islamic_state', 'protect_right', 'law_would', 'jew_palestine', 'take_control', 'crime_humanity', 'must_treat', 'war_criminal', 'freedom_choice', 'choice_give', 'jew_live', 'live_new', 'explain_go', 'go_inside', 'seem_far', 'islamic_movement', 'use_weapon', 'establish_state', 'state_religion', 'far_know', 'still_exist', 'would_like', 'seem_know', 'know_post', 'several_time', 'sure_someone', 'course_would', 'would_happy', 'group_like', 'politically_correct', 'mr_davidsson', 'support_people', 'one_many', 'many_jew'] | talk_politics_mideast_76335 |@lemmatized final:1 solution:1 gaza:2 ghetto:4 israeli:2 jew:10 fete:1 uprising:2 warsaw:2 repress:1 violent:1 mean:1 attempt:1 starve:1 gazans:1 fight:2 keep:1 family:1 send:1 nazi:1 gas:1 chamber:1 group:2 like:4 hamas:4 islamic:5 jihad:2 express:1 purpose:2 drive:3 sea:3 perhaps:1 persuade:1 jewish:2 people:2 help:1 wnderful:1 freedom:3 fighter:2 attain:1 ultimate:1 goal:1 maybe:1 choose:1 spare:1 co:1 operative:1 count:1 elia:1 pity:1 murderer:1 say:1 mother:1 ashamed:1 must:2 son:1 sorry:1 mr:2 davidsson:2 harry:1 turn:1 sick:1 tired:1 sentance:1 attribute:1 movement:3 plo:6 simply:1 prove:1 part:1 plan:1 pro:1 activist:1 repeat:1 parrot:1 without:1 check:1 authenticity:1 since:1 coin:1 bnai:1 brith:1 believe:1 far:4 get:1 arab:1 medium:1 state:2 protect:1 right:2 inhabitant:2 koranic:1 law:2 would:3 reversal:1 situation:1 palestine:1 take:1 control:1 land:1 mostly:1 muslim:1 however:1 whoever:1 committed:1 crime:1 humanity:1 torture:1 blow:1 home:1 murder:1 treat:1 try:1 war:1 criminal:1 political:2 thought:1 show:1 choice:2 give:1 live:1 new:1 leave:1 destintion:1 loss:1 explain:1 go:1 inside:1 arafat:1 mind:1 although:1 thinking:1 seem:3 fetch:1 israel:4 act:1 true:1 super:1 power:1 region:1 use:2 weapon:1 establish:1 religion:1 ahmed:2 forget:1 syntax:1 focus:1 semnatics:1 fact:1 recognize:1 exist:2 perfectly:1 obvious:1 covenant:2 cairo:1 call:1 destruction:2 zionist:1 entity:1 know:2 clause:1 still:1 document:1 specify:1 existence:1 post:2 relevant:1 caluses:1 ideal:1 radical:1 several:1 time:1 copy:1 sure:1 someone:1 course:1 happy:1 repost:1 regardless:1 phrase:1 hezbollah:1 even:1 newly:1 moderate:1 politically:1 correct:1 heart:1 ideology:1 need:1 destrcution:1 suggestion:1 jews:1 support:1 envolved:1 organization:1 particularly:1 appeal:1 one:1 many:1 |@bigram final_solution:1 solution_gaza:1 gaza_ghetto:2 ghetto_israeli:1 israeli_jew:1 warsaw_ghetto:2 gas_chamber:1 group_like:2 hamas_islamic:2 drive_jew:3 jew_sea:3 jewish_people:1 people_help:1 freedom_fighter:2 say_mother:1 mr_davidsson:2 sick_tired:1 islamic_movement:2 part_plan:1 without_check:1 far_get:1 islamic_state:1 protect_right:1 law_would:1 jew_palestine:1 take_control:1 crime_humanity:1 must_treat:1 war_criminal:1 freedom_choice:1 choice_give:1 jew_live:1 live_new:1 explain_go:1 go_inside:1 seem_far:1 use_weapon:1 establish_state:1 state_religion:1 far_know:1 still_exist:1 would_like:1 seem_know:1 know_post:1 several_time:1 sure_someone:1 course_would:1 would_happy:1 politically_correct:1 support_people:1 one_many:1 many_jew:1 |
2,195 |
(Attempting to define 'objective morality'):
So long as you keep that "almost" in there, freedom will be a
mostly valuable thing, to most people. That is, I think you're really
saying, "a real big lot of people agree freedom is subjectively valuable
to them". That's good, and a quite nice starting point for a moral
system, but it's NOT UNIVERSAL, and thus not "objective".
It isn't in Sahara.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/54181 | 0 | alt_atheism_54181 | [('attempting', 'VBG'), ('to', 'TO'), ('define', 'VB'), ('objective', 'JJ'), ('morality', 'NN'), ("'):", 'NNS'), ('so', 'RB'), ('long', 'RB'), ('as', 'IN'), ('you', 'PRP'), ('keep', 'VBP'), ('that', 'DT'), ('almost', 'RB'), ('in', 'IN'), ('there', 'EX'), ('freedom', 'NN'), ('will', 'MD'), ('be', 'VB'), ('mostly', 'RB'), ('valuable', 'JJ'), ('thing', 'NN'), ('to', 'TO'), ('most', 'JJS'), ('people', 'NNS'), ('that', 'WDT'), ('is', 'VBZ'), ('think', 'VBP'), ('you', 'PRP'), ('re', 'VBP'), ('really', 'RB'), ('saying', 'VBG'), ('real', 'JJ'), ('big', 'JJ'), ('lot', 'NN'), ('of', 'IN'), ('people', 'NNS'), ('agree', 'VBP'), ('freedom', 'NN'), ('is', 'VBZ'), ('subjectively', 'RB'), ('valuable', 'JJ'), ('to', 'TO'), ('them', 'PRP'), ('".', 'VB'), ('that', 'DT'), ('good', 'JJ'), ('and', 'CC'), ('quite', 'JJ'), ('nice', 'JJ'), ('starting', 'VBG'), ('point', 'NN'), ('for', 'IN'), ('moral', 'JJ'), ('system', 'NN'), ('but', 'CC'), ('it', 'PRP'), ('not', 'RB'), ('universal', 'JJ'), ('and', 'CC'), ('thus', 'RB'), ('not', 'RB'), ('objective', 'JJ'), ('".', 'NN'), ('it', 'PRP'), ('isn', 'VBZ'), ('in', 'IN'), ('sahara', 'NN')] | ['attempt', 'define', 'objective', 'morality', 'long', 'keep', 'almost', 'freedom', 'mostly', 'valuable', 'thing', 'people', 'think', 'really', 'say', 'real', 'big', 'lot', 'people', 'agree', 'freedom', 'subjectively', 'valuable', 'good', 'quite', 'nice', 'start', 'point', 'moral', 'system', 'universal', 'thus', 'objective', 'sahara'] | ['objective_morality', 'thing_people', 'people_think', 'think_really', 'really_say', 'say_real', 'lot_people', 'people_agree', 'start_point', 'moral_system'] | alt_atheism_54181 |@lemmatized attempt:1 define:1 objective:2 morality:1 long:1 keep:1 almost:1 freedom:2 mostly:1 valuable:2 thing:1 people:2 think:1 really:1 say:1 real:1 big:1 lot:1 agree:1 subjectively:1 good:1 quite:1 nice:1 start:1 point:1 moral:1 system:1 universal:1 thus:1 sahara:1 |@bigram objective_morality:1 thing_people:1 people_think:1 think_really:1 really_say:1 say_real:1 lot_people:1 people_agree:1 start_point:1 moral_system:1 |
2,196 |
Ahhh, of course. Israeli morality pales in the face of charming events
like the string of PLO-run skyjackings in the mid 80's (remember those
TWA jokes?), and not to forget the Achille Lauro and however many airline
bombings they have committed, not to mention bombings on the streets of
Israel (It's gotten to a point where children are told not to go near any
bags or containers whose origins they don't know, because they could be
bombs), or last weeks Katyusha rocket attack on Northern Israel by Fatah,
those wonderful "mainstream moderates" with whom Israel is attempting
to negotiate.
Let's not forget the fact that more Palestinians are killed by Palestinians
than by Israelis. Ahh yes, those charming humanitarian death squads.
I've actually seen a videotape of an interrogation (DSee the documentary
_Deadly Currents_--very neutral and balanced--seriously)--It was rather
inquisition-esque. essentially, to prove his loyalty to "the cause" of
whichever group it was that was interogating him, he had to turn in someone
else, or else face death in one of the many fun-filled ways that the death-
squads love so much--beatings, dismemberment, acid, pouring melted plastic
on the face of the 'guilty party,' and of course beheading, always my
favorite. Did you catch the photos in the Washington Post a while back
the execution of a "collaborator?" 3 photos:
1) one Palestinian leading another at gunpoint.
2) The "collaborator" on his knees, the gun pointed at his temple.
3) The executioner standing on the corpse of the "collaborator
shouting about how this is what happens to collaborators.
Wonderful justice system, and lots of regard for Human rights.
Remember Black September?
Ok, so they just tried to take over Jordan, big deal.
I'm rambling now, but are you getting what I'm saying? | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.mideast/75889 | 17 | talk_politics_mideast_75889 | [('ahhh', 'NN'), ('of', 'IN'), ('course', 'NN'), ('israeli', 'JJ'), ('morality', 'NN'), ('pales', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('face', 'NN'), ('of', 'IN'), ('charming', 'VBG'), ('events', 'NNS'), ('like', 'IN'), ('the', 'DT'), ('string', 'NN'), ('of', 'IN'), ('plo', 'JJ'), ('run', 'NN'), ('skyjackings', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('mid', 'NN'), ('80', 'CD'), ('remember', 'NN'), ('those', 'DT'), ('twa', 'JJ'), ('jokes', 'NNS'), ('?),', 'NNS'), ('and', 'CC'), ('not', 'RB'), ('to', 'TO'), ('forget', 'VB'), ('the', 'DT'), ('achille', 'NN'), ('lauro', 'NN'), ('and', 'CC'), ('however', 'RB'), ('many', 'JJ'), ('airline', 'NN'), ('bombings', 'NNS'), ('they', 'PRP'), ('have', 'VBP'), ('committed', 'VBN'), ('not', 'RB'), ('to', 'TO'), ('mention', 'VB'), ('bombings', 'NNS'), ('on', 'IN'), ('the', 'DT'), ('streets', 'NNS'), ('of', 'IN'), ('israel', 'NN'), ('it', 'PRP'), ('gotten', 'VBZ'), ('to', 'TO'), ('point', 'VB'), ('where', 'WRB'), ('children', 'NNS'), ('are', 'VBP'), ('told', 'VBN'), ('not', 'RB'), ('to', 'TO'), ('go', 'VB'), ('near', 'IN'), ('any', 'DT'), ('bags', 'NNS'), ('or', 'CC'), ('containers', 'NNS'), ('whose', 'WP$'), ('origins', 'NNS'), ('they', 'PRP'), ('don', 'VBP'), ('know', 'VBP'), ('because', 'IN'), ('they', 'PRP'), ('could', 'MD'), ('be', 'VB'), ('bombs', 'JJ'), ('),', 'NNP'), ('or', 'CC'), ('last', 'JJ'), ('weeks', 'NNS'), ('katyusha', 'VBD'), ('rocket', 'NN'), ('attack', 'NN'), ('on', 'IN'), ('northern', 'JJ'), ('israel', 'NN'), ('by', 'IN'), ('fatah', 'NN'), ('those', 'DT'), ('wonderful', 'JJ'), ('mainstream', 'JJ'), ('moderates', 'NNS'), ('with', 'IN'), ('whom', 'WP'), ('israel', 'NN'), ('is', 'VBZ'), ('attempting', 'VBG'), ('to', 'TO'), ('negotiate', 'VB'), ('let', 'NN'), ('not', 'RB'), ('forget', 'VB'), ('the', 'DT'), ('fact', 'NN'), ('that', 'IN'), ('more', 'JJR'), ('palestinians', 'NNS'), ('are', 'VBP'), ('killed', 'VBN'), ('by', 'IN'), ('palestinians', 'NNS'), ('than', 'IN'), ('by', 'IN'), ('israelis', 'JJ'), ('ahh', 'JJ'), ('yes', 'NNS'), ('those', 'DT'), ('charming', 'VBG'), ('humanitarian', 'JJ'), ('death', 'NN'), ('squads', 'NNS'), ('ve', 'VBP'), ('actually', 'RB'), ('seen', 'VBN'), ('videotape', 'NN'), ('of', 'IN'), ('an', 'DT'), ('interrogation', 'NN'), ('dsee', 'NN'), ('the', 'DT'), ('documentary', 'NN'), ('_deadly', 'RB'), ('currents_', 'VBZ'), ('--', ':'), ('very', 'RB'), ('neutral', 'JJ'), ('and', 'CC'), ('balanced', 'VBN'), ('--', ':'), ('seriously', 'RB'), (')--', 'IN'), ('it', 'PRP'), ('was', 'VBD'), ('rather', 'RB'), ('inquisition', 'JJ'), ('esque', 'NN'), ('essentially', 'RB'), ('to', 'TO'), ('prove', 'VB'), ('his', 'PRP$'), ('loyalty', 'NN'), ('to', 'TO'), ('the', 'DT'), ('cause', 'NN'), ('of', 'IN'), ('whichever', 'WDT'), ('group', 'NN'), ('it', 'PRP'), ('was', 'VBD'), ('that', 'DT'), ('was', 'VBD'), ('interogating', 'VBG'), ('him', 'PRP'), ('he', 'PRP'), ('had', 'VBD'), ('to', 'TO'), ('turn', 'VB'), ('in', 'IN'), ('someone', 'NN'), ('else', 'RB'), ('or', 'CC'), ('else', 'RB'), ('face', 'JJ'), ('death', 'NN'), ('in', 'IN'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('many', 'JJ'), ('fun', 'NN'), ('filled', 'VBD'), ('ways', 'NNS'), ('that', 'IN'), ('the', 'DT'), ('death', 'NN'), ('squads', 'NNS'), ('love', 'VBP'), ('so', 'RB'), ('much', 'JJ'), ('--', ':'), ('beatings', 'NNS'), ('dismemberment', 'JJ'), ('acid', 'IN'), ('pouring', 'VBG'), ('melted', 'VBN'), ('plastic', 'NN'), ('on', 'IN'), ('the', 'DT'), ('face', 'NN'), ('of', 'IN'), ('the', 'DT'), ('guilty', 'JJ'), ('party', 'NN'), (",'", 'NN'), ('and', 'CC'), ('of', 'IN'), ('course', 'NN'), ('beheading', 'NN'), ('always', 'RB'), ('my', 'PRP$'), ('favorite', 'JJ'), ('did', 'VBD'), ('you', 'PRP'), ('catch', 'VB'), ('the', 'DT'), ('photos', 'NN'), ('in', 'IN'), ('the', 'DT'), ('washington', 'NN'), ('post', 'NN'), ('while', 'IN'), ('back', 'RB'), ('the', 'DT'), ('execution', 'NN'), ('of', 'IN'), ('collaborator', 'NN'), ('?"', 'NNP'), ('photos', 'VBZ'), ('one', 'CD'), ('palestinian', 'NN'), ('leading', 'VBG'), ('another', 'DT'), ('at', 'IN'), ('gunpoint', 'NN'), ('the', 'DT'), ('collaborator', 'NN'), ('on', 'IN'), ('his', 'PRP$'), ('knees', 'NNS'), ('the', 'DT'), ('gun', 'NN'), ('pointed', 'VBD'), ('at', 'IN'), ('his', 'PRP$'), ('temple', 'NN'), ('the', 'DT'), ('executioner', 'NN'), ('standing', 'VBG'), ('on', 'IN'), ('the', 'DT'), ('corpse', 'NN'), ('of', 'IN'), ('the', 'DT'), ('collaborator', 'NN'), ('shouting', 'VBG'), ('about', 'IN'), ('how', 'WRB'), ('this', 'DT'), ('is', 'VBZ'), ('what', 'WP'), ('happens', 'VBZ'), ('to', 'TO'), ('collaborators', 'NNS'), ('wonderful', 'JJ'), ('justice', 'NN'), ('system', 'NN'), ('and', 'CC'), ('lots', 'NNS'), ('of', 'IN'), ('regard', 'NN'), ('for', 'IN'), ('human', 'JJ'), ('rights', 'NNS'), ('remember', 'VB'), ('black', 'JJ'), ('september', 'NNP'), ('ok', 'MD'), ('so', 'RB'), ('they', 'PRP'), ('just', 'RB'), ('tried', 'VBD'), ('to', 'TO'), ('take', 'VB'), ('over', 'RP'), ('jordan', 'NN'), ('big', 'JJ'), ('deal', 'NN'), ('rambling', 'NN'), ('now', 'RB'), ('but', 'CC'), ('are', 'VBP'), ('you', 'PRP'), ('getting', 'VBG'), ('what', 'WP'), ('saying', 'VBG')] | ['ahhh', 'course', 'israeli', 'morality', 'pale', 'face', 'charm', 'event', 'like', 'string', 'plo', 'run', 'skyjackings', 'mid', 'remember', 'twa', 'joke', 'forget', 'achille', 'lauro', 'however', 'many', 'airline', 'bombing', 'commit', 'mention', 'bombing', 'street', 'israel', 'get', 'point', 'child', 'tell', 'go', 'near', 'bag', 'container', 'whose', 'origin', 'know', 'could', 'bombs', 'last', 'week', 'katyusha', 'rocket', 'attack', 'northern', 'israel', 'fatah', 'wonderful', 'mainstream', 'moderate', 'israel', 'attempt', 'negotiate', 'let', 'forget', 'fact', 'palestinian', 'kill', 'palestinian', 'israelis', 'ahh', 'yes', 'charm', 'humanitarian', 'death', 'squad', 'actually', 'see', 'videotape', 'interrogation', 'dsee', 'documentary', 'neutral', 'balance', 'seriously', 'rather', 'inquisition', 'esque', 'essentially', 'prove', 'loyalty', 'cause', 'whichever', 'group', 'interogating', 'turn', 'someone', 'else', 'else', 'face', 'death', 'one', 'many', 'fun', 'fill', 'way', 'death', 'squad', 'love', 'much', 'beating', 'dismemberment', 'acid', 'pour', 'melt', 'plastic', 'face', 'guilty', 'party', 'course', 'beheading', 'always', 'favorite', 'catch', 'photo', 'washington', 'post', 'back', 'execution', 'collaborator', 'photos', 'one', 'palestinian', 'lead', 'another', 'gunpoint', 'collaborator', 'knee', 'gun', 'point', 'temple', 'executioner', 'stand', 'corpse', 'collaborator', 'shout', 'happen', 'collaborator', 'wonderful', 'justice', 'system', 'lot', 'regard', 'human', 'right', 'remember', 'black', 'september', 'ok', 'try', 'take', 'jordan', 'big', 'deal', 'rambling', 'get', 'say'] | ['however_many', 'get_point', 'child_tell', 'tell_go', 'know_could', 'last_week', 'rocket_attack', 'northern_israel', 'let_forget', 'actually_see', 'someone_else', 'one_many', 'washington_post', 'post_back', 'gun_point', 'justice_system', 'human_right', 'try_take', 'big_deal', 'get_say'] | talk_politics_mideast_75889 |@lemmatized ahhh:1 course:2 israeli:1 morality:1 pale:1 face:3 charm:2 event:1 like:1 string:1 plo:1 run:1 skyjackings:1 mid:1 remember:2 twa:1 joke:1 forget:2 achille:1 lauro:1 however:1 many:2 airline:1 bombing:2 commit:1 mention:1 street:1 israel:3 get:2 point:2 child:1 tell:1 go:1 near:1 bag:1 container:1 whose:1 origin:1 know:1 could:1 bombs:1 last:1 week:1 katyusha:1 rocket:1 attack:1 northern:1 fatah:1 wonderful:2 mainstream:1 moderate:1 attempt:1 negotiate:1 let:1 fact:1 palestinian:3 kill:1 israelis:1 ahh:1 yes:1 humanitarian:1 death:3 squad:2 actually:1 see:1 videotape:1 interrogation:1 dsee:1 documentary:1 neutral:1 balance:1 seriously:1 rather:1 inquisition:1 esque:1 essentially:1 prove:1 loyalty:1 cause:1 whichever:1 group:1 interogating:1 turn:1 someone:1 else:2 one:2 fun:1 fill:1 way:1 love:1 much:1 beating:1 dismemberment:1 acid:1 pour:1 melt:1 plastic:1 guilty:1 party:1 beheading:1 always:1 favorite:1 catch:1 photo:1 washington:1 post:1 back:1 execution:1 collaborator:4 photos:1 lead:1 another:1 gunpoint:1 knee:1 gun:1 temple:1 executioner:1 stand:1 corpse:1 shout:1 happen:1 justice:1 system:1 lot:1 regard:1 human:1 right:1 black:1 september:1 ok:1 try:1 take:1 jordan:1 big:1 deal:1 rambling:1 say:1 |@bigram however_many:1 get_point:1 child_tell:1 tell_go:1 know_could:1 last_week:1 rocket_attack:1 northern_israel:1 let_forget:1 actually_see:1 someone_else:1 one_many:1 washington_post:1 post_back:1 gun_point:1 justice_system:1 human_right:1 try_take:1 big_deal:1 get_say:1 |
2,197 |
I would rather be at a higher risk of being killed than actually killed by
^^^^ ^^^^^^^^
mistake. Though I do agree with the concept that the type D and E murderers
are a massive waste of space and resources I don't agree with the concept:
killing is wrong
if you kill we will punish you
our punishment will be to kill you.
Seems to be lacking in consistency.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/alt.atheism/51215 | 0 | alt_atheism_51215 | [('would', 'MD'), ('rather', 'RB'), ('be', 'VB'), ('at', 'IN'), ('higher', 'JJR'), ('risk', 'NN'), ('of', 'IN'), ('being', 'VBG'), ('killed', 'VBN'), ('than', 'IN'), ('actually', 'RB'), ('killed', 'VBN'), ('by', 'IN'), ('^^^^', 'NNP'), ('^^^^^^^^', 'NNP'), ('mistake', 'VB'), ('though', 'IN'), ('do', 'JJ'), ('agree', 'VB'), ('with', 'IN'), ('the', 'DT'), ('concept', 'NN'), ('that', 'IN'), ('the', 'DT'), ('type', 'NN'), ('and', 'CC'), ('murderers', 'NNS'), ('are', 'VBP'), ('massive', 'JJ'), ('waste', 'NN'), ('of', 'IN'), ('space', 'NN'), ('and', 'CC'), ('resources', 'NNS'), ('don', 'VBP'), ('agree', 'JJ'), ('with', 'IN'), ('the', 'DT'), ('concept', 'NN'), ('killing', 'NN'), ('is', 'VBZ'), ('wrong', 'JJ'), ('if', 'IN'), ('you', 'PRP'), ('kill', 'VBP'), ('we', 'PRP'), ('will', 'MD'), ('punish', 'VB'), ('you', 'PRP'), ('our', 'PRP$'), ('punishment', 'NN'), ('will', 'MD'), ('be', 'VB'), ('to', 'TO'), ('kill', 'VB'), ('you', 'PRP'), ('seems', 'VBZ'), ('to', 'TO'), ('be', 'VB'), ('lacking', 'VBG'), ('in', 'IN'), ('consistency', 'NN')] | ['would', 'rather', 'high', 'risk', 'kill', 'actually', 'kill', 'mistake', 'though', 'agree', 'concept', 'type', 'murderer', 'massive', 'waste', 'space', 'resource', 'agree', 'concept', 'killing', 'wrong', 'kill', 'punish', 'punishment', 'kill', 'seem', 'lack', 'consistency'] | ['would_rather', 'high_risk', 'seem_lack'] | alt_atheism_51215 |@lemmatized would:1 rather:1 high:1 risk:1 kill:4 actually:1 mistake:1 though:1 agree:2 concept:2 type:1 murderer:1 massive:1 waste:1 space:1 resource:1 killing:1 wrong:1 punish:1 punishment:1 seem:1 lack:1 consistency:1 |@bigram would_rather:1 high_risk:1 seem_lack:1 |
2,198 |
The screws are Torx screws and the tool isn't to hard to find. It's a
matter of finding one with a long enough shaft to do the trick.
No it is not a good idea to take that fan out. Why because it will
cause stuff to over heat. Internal hard drives, motherboard...You name
it and this can cause damage. I've known people to have hard drive
failures because of fans that didn't work right....
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/comp.sys.mac.hardware/50462 | 4 | comp_sys_mac_hardware_50462 | [('the', 'DT'), ('screws', 'NNS'), ('are', 'VBP'), ('torx', 'JJ'), ('screws', 'NNS'), ('and', 'CC'), ('the', 'DT'), ('tool', 'NN'), ('isn', 'NN'), ('to', 'TO'), ('hard', 'VB'), ('to', 'TO'), ('find', 'VB'), ('it', 'PRP'), ('matter', 'JJR'), ('of', 'IN'), ('finding', 'VBG'), ('one', 'CD'), ('with', 'IN'), ('long', 'JJ'), ('enough', 'RB'), ('shaft', 'NN'), ('to', 'TO'), ('do', 'VB'), ('the', 'DT'), ('trick', 'NN'), ('no', 'DT'), ('it', 'PRP'), ('is', 'VBZ'), ('not', 'RB'), ('good', 'JJ'), ('idea', 'NN'), ('to', 'TO'), ('take', 'VB'), ('that', 'DT'), ('fan', 'NN'), ('out', 'RP'), ('why', 'WRB'), ('because', 'IN'), ('it', 'PRP'), ('will', 'MD'), ('cause', 'VB'), ('stuff', 'NN'), ('to', 'TO'), ('over', 'IN'), ('heat', 'NN'), ('internal', 'JJ'), ('hard', 'JJ'), ('drives', 'NNS'), ('motherboard', 'VBP'), ('...', ':'), ('you', 'PRP'), ('name', 'VBP'), ('it', 'PRP'), ('and', 'CC'), ('this', 'DT'), ('can', 'MD'), ('cause', 'VB'), ('damage', 'NN'), ('ve', 'FW'), ('known', 'VBN'), ('people', 'NNS'), ('to', 'TO'), ('have', 'VB'), ('hard', 'JJ'), ('drive', 'NN'), ('failures', 'NNS'), ('because', 'IN'), ('of', 'IN'), ('fans', 'NNS'), ('that', 'WDT'), ('didn', 'VBP'), ('work', 'NN'), ('right', 'RB'), ('....', 'VB')] | ['screw', 'torx', 'screw', 'tool', 'hard', 'find', 'matter', 'find', 'one', 'long', 'enough', 'shaft', 'trick', 'good', 'idea', 'take', 'fan', 'cause', 'stuff', 'heat', 'internal', 'hard', 'drive', 'motherboard', 'name', 'cause', 'damage', 'know', 'people', 'hard', 'drive', 'failure', 'fan', 'work', 'right'] | ['hard_find', 'find_one', 'long_enough', 'good_idea', 'internal_hard', 'hard_drive', 'know_people', 'hard_drive', 'work_right'] | comp_sys_mac_hardware_50462 |@lemmatized screw:2 torx:1 tool:1 hard:3 find:2 matter:1 one:1 long:1 enough:1 shaft:1 trick:1 good:1 idea:1 take:1 fan:2 cause:2 stuff:1 heat:1 internal:1 drive:2 motherboard:1 name:1 damage:1 know:1 people:1 failure:1 work:1 right:1 |@bigram hard_find:1 find_one:1 long_enough:1 good_idea:1 internal_hard:1 hard_drive:2 know_people:1 work_right:1 |
2,199 | Hi there,
Does anyone know about any greek database/word processor that
can do things like count occurrences of a word, letter et al?
I'm posting this up for a friend who studies greek.
Thanks,
Nico.
P.S. Can you email as I seldom look into usenet nowadays.
--
+--------------------------------------+-------------------------------------+
+--------------------------------------+-------------------------------------+ | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/soc.religion.christian/20588 | 15 | soc_religion_christian_20588 | [('hi', 'NN'), ('there', 'EX'), ('does', 'VBZ'), ('anyone', 'NN'), ('know', 'VB'), ('about', 'IN'), ('any', 'DT'), ('greek', 'JJ'), ('database', 'NN'), ('word', 'NN'), ('processor', 'NN'), ('that', 'WDT'), ('can', 'MD'), ('do', 'VB'), ('things', 'NNS'), ('like', 'IN'), ('count', 'NN'), ('occurrences', 'NNS'), ('of', 'IN'), ('word', 'NN'), ('letter', 'NN'), ('et', 'VBP'), ('al', 'NN'), ('posting', 'NN'), ('this', 'DT'), ('up', 'RP'), ('for', 'IN'), ('friend', 'NN'), ('who', 'WP'), ('studies', 'NNS'), ('greek', 'VBP'), ('thanks', 'NNS'), ('nico', 'RB'), ('can', 'MD'), ('you', 'PRP'), ('email', 'VB'), ('as', 'IN'), ('seldom', 'JJ'), ('look', 'NN'), ('into', 'IN'), ('usenet', 'JJ'), ('nowadays', 'NNS'), ('--', ':'), ('+--------------------------------------+-------------------------------------+', 'JJ'), ('+--------------------------------------+-------------------------------------+', 'JJ')] | ['hi', 'anyone', 'know', 'greek', 'database', 'word', 'processor', 'thing', 'like', 'count', 'occurrence', 'word', 'letter', 'et', 'al', 'posting', 'friend', 'study', 'greek', 'thanks', 'nico', 'email', 'seldom', 'look', 'usenet', 'nowadays'] | ['hi_anyone', 'anyone_know', 'word_processor', 'thing_like', 'et_al'] | soc_religion_christian_20588 |@lemmatized hi:1 anyone:1 know:1 greek:2 database:1 word:2 processor:1 thing:1 like:1 count:1 occurrence:1 letter:1 et:1 al:1 posting:1 friend:1 study:1 thanks:1 nico:1 email:1 seldom:1 look:1 usenet:1 nowadays:1 |@bigram hi_anyone:1 anyone_know:1 word_processor:1 thing_like:1 et_al:1 |
2,200 | [deleted]
[] And as far as fully-automatic weapons, you can be a lot better
[]armed if you want to hit what you aim at.
[]
Define "armed better". Go shoot a revolver and a semi-auto like the
Colt .45. Does one fires faster than the other? Nope. Aside from which
faster rate of fire is usually not desirable. Sure it makes the other
guys duck for cover, but just *YOU* trying hitting anything with a Thompson
in hose-mode. This is why the military is limiting it's M-16 now to
3-round burst-fire. Simple semi-auto would be better, but the troops
like to be able to rock and roll even if it is wasteful of ammo (something
often in short supply when the enemy is plentiful).
A revolver is equally capable as a semi-auto in the same caliber.
- A revolver also has the advantage that if it misfires you just pull
the trigger again.
- A double-action revolver (almost all of them) can be hand-cocked first,
but will fire merely by pulling the trigger.
- A misfire in a revolver merely means you must pull the trigger again
to rotate to the next round.
- A revolver can be carried with the 6th chamber empty and under the
hammer for maximum safety, but still can be drawn and fired with an
easy motion, even one handed.
- Speedloaders for a revolver allow reloads almost as fast as magazines
on semi-autos. Can be faster depending on users.
- A misfire in a semi-auto will require you to clear a jammed shell
first, time spent which can be fatal. And a vital second or so is often
lost as you realize "hey, it's jammed!" before starting to do anything
about clearing it.
- Most semi-autos must have the slide worked to chamber the first round
and cock the hammer. Some police carry their semi-autos with the
chamber loaded and hammer cocked, but a safety engaged. I do not consider
this safe however. You must trade-off safety to get the same speed
of employment as a revolver.
- There are some double-action semi-autos out there, but the complexity of
operation of many of them requires more training.
Some police departments switched to Glocks, and then started quietly
switching many officers back to the old revolvers. Too many were having
accidents, partly due to the poor training they received. Not that Glocks
require rocket scientists, but some cops are baffled by something as complex
as the timer on a VCR.
Anyone who goes anyone saying that the criminals obviously outgun
the police don't know nothing about firearms. Turn off COPS and Hunter
and pay attention. I do not seek here to say "semi-autos are junk"
merely that assuming they are better for all jobs is stupid. A cop
with a revolver on his hip and a shotgun in the rack is more than
equipped for anything short of a riot.
Gun control is hitting what you aim at. If you whip out a
wonder-nine and fire real fast you may find you don't hit anything.
Good controlled fire from a revolver is more likely to get you a hit.
I own a 9mm Beretta myself but consider it inferior as a carry weapon
to something like the Ruger Security Six revolver. If I haven't hit
what I'm aiming at in the first 5 shots, something is quite seriously
wrong somewheres. While I might like having the backup capacity of those
extra shots in certain cases, overwhelmingly the # of shots fired in
criminal encounters is less than 5.
What do crooks overwhelmingly use in crime? Why the same nice simple
.38 revolvers that the police often use. Well actually some police
prefer the much heftier .357 Magnum, but anyway.....
ObPlea: Don't flame me, I prefer semi-autos for most things. But they
introduce unneccessary complications to something as nerve-wracking
as an abrupt encounter with a lone criminal.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/talk.politics.guns/54120 | 16 | talk_politics_guns_54120 | [('deleted', 'VBN'), ('[]', 'NN'), ('and', 'CC'), ('as', 'RB'), ('far', 'RB'), ('as', 'IN'), ('fully', 'RB'), ('automatic', 'JJ'), ('weapons', 'NNS'), ('you', 'PRP'), ('can', 'MD'), ('be', 'VB'), ('lot', 'RB'), ('better', 'JJR'), ('[]', 'NN'), ('armed', 'VBN'), ('if', 'IN'), ('you', 'PRP'), ('want', 'VBP'), ('to', 'TO'), ('hit', 'VB'), ('what', 'WP'), ('you', 'PRP'), ('aim', 'VBP'), ('at', 'IN'), ('[]', 'NNP'), ('define', 'NN'), ('armed', 'VBD'), ('better', 'JJR'), ('".', 'NN'), ('go', 'VBP'), ('shoot', 'JJ'), ('revolver', 'NN'), ('and', 'CC'), ('semi', 'JJ'), ('auto', 'NN'), ('like', 'IN'), ('the', 'DT'), ('colt', 'NN'), ('45', 'CD'), ('does', 'VBZ'), ('one', 'CD'), ('fires', 'VBZ'), ('faster', 'JJR'), ('than', 'IN'), ('the', 'DT'), ('other', 'JJ'), ('nope', 'JJ'), ('aside', 'IN'), ('from', 'IN'), ('which', 'WDT'), ('faster', 'RBR'), ('rate', 'NN'), ('of', 'IN'), ('fire', 'NN'), ('is', 'VBZ'), ('usually', 'RB'), ('not', 'RB'), ('desirable', 'JJ'), ('sure', 'JJ'), ('it', 'PRP'), ('makes', 'VBZ'), ('the', 'DT'), ('other', 'JJ'), ('guys', 'NNS'), ('duck', 'NN'), ('for', 'IN'), ('cover', 'NN'), ('but', 'CC'), ('just', 'RB'), ('you', 'PRP'), ('trying', 'VBG'), ('hitting', 'VBG'), ('anything', 'NN'), ('with', 'IN'), ('thompson', 'NN'), ('in', 'IN'), ('hose', 'JJ'), ('mode', 'NN'), ('this', 'DT'), ('is', 'VBZ'), ('why', 'WRB'), ('the', 'DT'), ('military', 'NN'), ('is', 'VBZ'), ('limiting', 'VBG'), ('it', 'PRP'), ('16', 'CD'), ('now', 'RB'), ('to', 'TO'), ('round', 'VB'), ('burst', 'RB'), ('fire', 'NN'), ('simple', 'NN'), ('semi', 'JJ'), ('auto', 'NN'), ('would', 'MD'), ('be', 'VB'), ('better', 'JJR'), ('but', 'CC'), ('the', 'DT'), ('troops', 'NNS'), ('like', 'IN'), ('to', 'TO'), ('be', 'VB'), ('able', 'JJ'), ('to', 'TO'), ('rock', 'VB'), ('and', 'CC'), ('roll', 'VB'), ('even', 'RB'), ('if', 'IN'), ('it', 'PRP'), ('is', 'VBZ'), ('wasteful', 'JJ'), ('of', 'IN'), ('ammo', 'JJ'), ('something', 'NN'), ('often', 'RB'), ('in', 'IN'), ('short', 'JJ'), ('supply', 'NN'), ('when', 'WRB'), ('the', 'DT'), ('enemy', 'NN'), ('is', 'VBZ'), ('plentiful', 'JJ'), (').', 'JJ'), ('revolver', 'NN'), ('is', 'VBZ'), ('equally', 'RB'), ('capable', 'JJ'), ('as', 'IN'), ('semi', 'JJ'), ('auto', 'NN'), ('in', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('caliber', 'NN'), ('revolver', 'NN'), ('also', 'RB'), ('has', 'VBZ'), ('the', 'DT'), ('advantage', 'NN'), ('that', 'IN'), ('if', 'IN'), ('it', 'PRP'), ('misfires', 'VBZ'), ('you', 'PRP'), ('just', 'RB'), ('pull', 'VB'), ('the', 'DT'), ('trigger', 'NN'), ('again', 'RB'), ('double', 'JJ'), ('action', 'NN'), ('revolver', 'NN'), ('almost', 'RB'), ('all', 'DT'), ('of', 'IN'), ('them', 'PRP'), ('can', 'MD'), ('be', 'VB'), ('hand', 'NN'), ('cocked', 'VBN'), ('first', 'RB'), ('but', 'CC'), ('will', 'MD'), ('fire', 'VB'), ('merely', 'RB'), ('by', 'IN'), ('pulling', 'VBG'), ('the', 'DT'), ('trigger', 'NN'), ('misfire', 'NN'), ('in', 'IN'), ('revolver', 'NN'), ('merely', 'RB'), ('means', 'VBZ'), ('you', 'PRP'), ('must', 'MD'), ('pull', 'VB'), ('the', 'DT'), ('trigger', 'NN'), ('again', 'RB'), ('to', 'TO'), ('rotate', 'VB'), ('to', 'TO'), ('the', 'DT'), ('next', 'JJ'), ('round', 'NN'), ('revolver', 'NN'), ('can', 'MD'), ('be', 'VB'), ('carried', 'VBN'), ('with', 'IN'), ('the', 'DT'), ('6th', 'CD'), ('chamber', 'NN'), ('empty', 'JJ'), ('and', 'CC'), ('under', 'IN'), ('the', 'DT'), ('hammer', 'NN'), ('for', 'IN'), ('maximum', 'JJ'), ('safety', 'NN'), ('but', 'CC'), ('still', 'RB'), ('can', 'MD'), ('be', 'VB'), ('drawn', 'VBN'), ('and', 'CC'), ('fired', 'VBN'), ('with', 'IN'), ('an', 'DT'), ('easy', 'JJ'), ('motion', 'NN'), ('even', 'RB'), ('one', 'CD'), ('handed', 'VBD'), ('speedloaders', 'NNS'), ('for', 'IN'), ('revolver', 'NN'), ('allow', 'VBP'), ('reloads', 'VBZ'), ('almost', 'RB'), ('as', 'RB'), ('fast', 'JJ'), ('as', 'IN'), ('magazines', 'NNS'), ('on', 'IN'), ('semi', 'JJ'), ('autos', 'NNS'), ('can', 'MD'), ('be', 'VB'), ('faster', 'RBR'), ('depending', 'VBG'), ('on', 'IN'), ('users', 'NNS'), ('misfire', 'VBP'), ('in', 'IN'), ('semi', 'JJ'), ('auto', 'NN'), ('will', 'MD'), ('require', 'VB'), ('you', 'PRP'), ('to', 'TO'), ('clear', 'VB'), ('jammed', 'NN'), ('shell', 'NN'), ('first', 'JJ'), ('time', 'NN'), ('spent', 'VBN'), ('which', 'WDT'), ('can', 'MD'), ('be', 'VB'), ('fatal', 'JJ'), ('and', 'CC'), ('vital', 'JJ'), ('second', 'NN'), ('or', 'CC'), ('so', 'RB'), ('is', 'VBZ'), ('often', 'RB'), ('lost', 'VBN'), ('as', 'IN'), ('you', 'PRP'), ('realize', 'VBP'), ('hey', 'VB'), ('it', 'PRP'), ('jammed', 'JJ'), ('!"', 'JJ'), ('before', 'IN'), ('starting', 'VBG'), ('to', 'TO'), ('do', 'VB'), ('anything', 'NN'), ('about', 'IN'), ('clearing', 'VBG'), ('it', 'PRP'), ('most', 'JJS'), ('semi', 'JJ'), ('autos', 'NN'), ('must', 'MD'), ('have', 'VB'), ('the', 'DT'), ('slide', 'NN'), ('worked', 'VBD'), ('to', 'TO'), ('chamber', 'VB'), ('the', 'DT'), ('first', 'JJ'), ('round', 'NN'), ('and', 'CC'), ('cock', 'VB'), ('the', 'DT'), ('hammer', 'NN'), ('some', 'DT'), ('police', 'NN'), ('carry', 'VBP'), ('their', 'PRP$'), ('semi', 'JJ'), ('autos', 'NNS'), ('with', 'IN'), ('the', 'DT'), ('chamber', 'NN'), ('loaded', 'VBD'), ('and', 'CC'), ('hammer', 'NN'), ('cocked', 'NNS'), ('but', 'CC'), ('safety', 'NN'), ('engaged', 'VBN'), ('do', 'VBP'), ('not', 'RB'), ('consider', 'VB'), ('this', 'DT'), ('safe', 'JJ'), ('however', 'RB'), ('you', 'PRP'), ('must', 'MD'), ('trade', 'VB'), ('off', 'RP'), ('safety', 'NN'), ('to', 'TO'), ('get', 'VB'), ('the', 'DT'), ('same', 'JJ'), ('speed', 'NN'), ('of', 'IN'), ('employment', 'NN'), ('as', 'IN'), ('revolver', 'NN'), ('there', 'EX'), ('are', 'VBP'), ('some', 'DT'), ('double', 'JJ'), ('action', 'NN'), ('semi', 'NN'), ('autos', 'VBZ'), ('out', 'RP'), ('there', 'RB'), ('but', 'CC'), ('the', 'DT'), ('complexity', 'NN'), ('of', 'IN'), ('operation', 'NN'), ('of', 'IN'), ('many', 'JJ'), ('of', 'IN'), ('them', 'PRP'), ('requires', 'VBZ'), ('more', 'JJR'), ('training', 'VBG'), ('some', 'DT'), ('police', 'NN'), ('departments', 'NNS'), ('switched', 'VBD'), ('to', 'TO'), ('glocks', 'NNS'), ('and', 'CC'), ('then', 'RB'), ('started', 'VBD'), ('quietly', 'RB'), ('switching', 'VBG'), ('many', 'JJ'), ('officers', 'NNS'), ('back', 'RB'), ('to', 'TO'), ('the', 'DT'), ('old', 'JJ'), ('revolvers', 'NNS'), ('too', 'RB'), ('many', 'JJ'), ('were', 'VBD'), ('having', 'VBG'), ('accidents', 'NNS'), ('partly', 'RB'), ('due', 'JJ'), ('to', 'TO'), ('the', 'DT'), ('poor', 'JJ'), ('training', 'NN'), ('they', 'PRP'), ('received', 'VBD'), ('not', 'RB'), ('that', 'IN'), ('glocks', 'NNS'), ('require', 'VBP'), ('rocket', 'NN'), ('scientists', 'NNS'), ('but', 'CC'), ('some', 'DT'), ('cops', 'NNS'), ('are', 'VBP'), ('baffled', 'VBN'), ('by', 'IN'), ('something', 'NN'), ('as', 'RB'), ('complex', 'JJ'), ('as', 'IN'), ('the', 'DT'), ('timer', 'NN'), ('on', 'IN'), ('vcr', 'NN'), ('anyone', 'NN'), ('who', 'WP'), ('goes', 'VBZ'), ('anyone', 'NN'), ('saying', 'VBG'), ('that', 'IN'), ('the', 'DT'), ('criminals', 'NNS'), ('obviously', 'RB'), ('outgun', 'IN'), ('the', 'DT'), ('police', 'NN'), ('don', 'NN'), ('know', 'VBP'), ('nothing', 'NN'), ('about', 'IN'), ('firearms', 'NNS'), ('turn', 'VBP'), ('off', 'RP'), ('cops', 'NNS'), ('and', 'CC'), ('hunter', 'NN'), ('and', 'CC'), ('pay', 'VB'), ('attention', 'NN'), ('do', 'VB'), ('not', 'RB'), ('seek', 'VB'), ('here', 'RB'), ('to', 'TO'), ('say', 'VB'), ('semi', 'JJ'), ('autos', 'NNS'), ('are', 'VBP'), ('junk', 'NN'), ('merely', 'RB'), ('that', 'IN'), ('assuming', 'VBG'), ('they', 'PRP'), ('are', 'VBP'), ('better', 'JJR'), ('for', 'IN'), ('all', 'DT'), ('jobs', 'NNS'), ('is', 'VBZ'), ('stupid', 'JJ'), ('cop', 'NN'), ('with', 'IN'), ('revolver', 'NN'), ('on', 'IN'), ('his', 'PRP$'), ('hip', 'NN'), ('and', 'CC'), ('shotgun', 'NN'), ('in', 'IN'), ('the', 'DT'), ('rack', 'NN'), ('is', 'VBZ'), ('more', 'JJR'), ('than', 'IN'), ('equipped', 'VBN'), ('for', 'IN'), ('anything', 'NN'), ('short', 'JJ'), ('of', 'IN'), ('riot', 'JJ'), ('gun', 'NN'), ('control', 'NN'), ('is', 'VBZ'), ('hitting', 'VBG'), ('what', 'WP'), ('you', 'PRP'), ('aim', 'VBP'), ('at', 'IN'), ('if', 'IN'), ('you', 'PRP'), ('whip', 'VBP'), ('out', 'RP'), ('wonder', 'VBP'), ('nine', 'CD'), ('and', 'CC'), ('fire', 'VB'), ('real', 'JJ'), ('fast', 'IN'), ('you', 'PRP'), ('may', 'MD'), ('find', 'VB'), ('you', 'PRP'), ('don', 'VBP'), ('hit', 'VB'), ('anything', 'NN'), ('good', 'JJ'), ('controlled', 'VBN'), ('fire', 'NN'), ('from', 'IN'), ('revolver', 'NN'), ('is', 'VBZ'), ('more', 'RBR'), ('likely', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('you', 'PRP'), ('hit', 'VBP'), ('own', 'JJ'), ('9mm', 'CD'), ('beretta', 'NN'), ('myself', 'PRP'), ('but', 'CC'), ('consider', 'VB'), ('it', 'PRP'), ('inferior', 'RB'), ('as', 'IN'), ('carry', 'NN'), ('weapon', 'NN'), ('to', 'TO'), ('something', 'NN'), ('like', 'IN'), ('the', 'DT'), ('ruger', 'NN'), ('security', 'NN'), ('six', 'CD'), ('revolver', 'NN'), ('if', 'IN'), ('haven', 'VBN'), ('hit', 'VBD'), ('what', 'WP'), ('aiming', 'VBG'), ('at', 'IN'), ('in', 'IN'), ('the', 'DT'), ('first', 'JJ'), ('shots', 'NNS'), ('something', 'NN'), ('is', 'VBZ'), ('quite', 'RB'), ('seriously', 'RB'), ('wrong', 'JJ'), ('somewheres', 'NNS'), ('while', 'IN'), ('might', 'MD'), ('like', 'VB'), ('having', 'VBG'), ('the', 'DT'), ('backup', 'NN'), ('capacity', 'NN'), ('of', 'IN'), ('those', 'DT'), ('extra', 'JJ'), ('shots', 'NNS'), ('in', 'IN'), ('certain', 'JJ'), ('cases', 'NNS'), ('overwhelmingly', 'RB'), ('the', 'DT'), ('of', 'IN'), ('shots', 'NNS'), ('fired', 'VBN'), ('in', 'IN'), ('criminal', 'JJ'), ('encounters', 'NNS'), ('is', 'VBZ'), ('less', 'JJR'), ('than', 'IN'), ('what', 'WP'), ('do', 'VBP'), ('crooks', 'NNS'), ('overwhelmingly', 'RB'), ('use', 'VBP'), ('in', 'IN'), ('crime', 'NN'), ('why', 'WRB'), ('the', 'DT'), ('same', 'JJ'), ('nice', 'JJ'), ('simple', 'NN'), ('38', 'CD'), ('revolvers', 'NNS'), ('that', 'IN'), ('the', 'DT'), ('police', 'NN'), ('often', 'RB'), ('use', 'RB'), ('well', 'RB'), ('actually', 'RB'), ('some', 'DT'), ('police', 'NN'), ('prefer', 'VBP'), ('the', 'DT'), ('much', 'RB'), ('heftier', 'JJR'), ('357', 'CD'), ('magnum', 'NN'), ('but', 'CC'), ('anyway', 'RB'), ('.....', 'JJ'), ('obplea', 'NN'), ('don', 'NN'), ('flame', 'NN'), ('me', 'PRP'), ('prefer', 'VBP'), ('semi', 'JJ'), ('autos', 'NNS'), ('for', 'IN'), ('most', 'JJS'), ('things', 'NNS'), ('but', 'CC'), ('they', 'PRP'), ('introduce', 'VBP'), ('unneccessary', 'JJ'), ('complications', 'NNS'), ('to', 'TO'), ('something', 'NN'), ('as', 'IN'), ('nerve', 'NN'), ('wracking', 'NN'), ('as', 'IN'), ('an', 'DT'), ('abrupt', 'JJ'), ('encounter', 'NN'), ('with', 'IN'), ('lone', 'JJ'), ('criminal', 'NN')] | ['delete', 'far', 'fully', 'automatic', 'weapon', 'lot', 'good', 'arm', 'want', 'hit', 'aim', 'define', 'arm', 'good', 'go', 'shoot', 'revolver', 'semi', 'auto', 'like', 'colt', 'one', 'fire', 'fast', 'nope', 'aside', 'faster', 'rate', 'fire', 'usually', 'desirable', 'sure', 'make', 'guy', 'duck', 'cover', 'try', 'hit', 'anything', 'thompson', 'hose', 'mode', 'military', 'limit', 'round', 'burst', 'fire', 'simple', 'semi', 'auto', 'would', 'good', 'troop', 'like', 'able', 'rock', 'roll', 'even', 'wasteful', 'ammo', 'something', 'often', 'short', 'supply', 'enemy', 'plentiful', 'revolver', 'equally', 'capable', 'semi', 'auto', 'caliber', 'revolver', 'also', 'advantage', 'misfire', 'pull', 'trigger', 'double', 'action', 'revolver', 'almost', 'hand', 'cock', 'first', 'fire', 'merely', 'pull', 'trigger', 'misfire', 'revolver', 'merely', 'mean', 'must', 'pull', 'trigger', 'rotate', 'next', 'round', 'revolver', 'carry', 'chamber', 'empty', 'hammer', 'maximum', 'safety', 'still', 'draw', 'fire', 'easy', 'motion', 'even', 'one', 'hand', 'speedloaders', 'revolver', 'allow', 'reload', 'almost', 'fast', 'magazine', 'semi', 'auto', 'faster', 'depend', 'user', 'misfire', 'semi', 'auto', 'require', 'clear', 'jammed', 'shell', 'first', 'time', 'spend', 'fatal', 'vital', 'second', 'often', 'lose', 'realize', 'hey', 'jammed', 'start', 'anything', 'clear', 'semi', 'auto', 'must', 'slide', 'work', 'chamber', 'first', 'round', 'cock', 'hammer', 'police', 'carry', 'semi', 'auto', 'chamber', 'load', 'hammer', 'cocked', 'safety', 'engage', 'consider', 'safe', 'however', 'must', 'trade', 'safety', 'get', 'speed', 'employment', 'revolver', 'double', 'action', 'semi', 'autos', 'complexity', 'operation', 'many', 'require', 'train', 'police', 'department', 'switch', 'glocks', 'start', 'quietly', 'switch', 'many', 'officer', 'back', 'old', 'revolver', 'many', 'accident', 'partly', 'due', 'poor', 'training', 'receive', 'glocks', 'require', 'rocket', 'scientist', 'cop', 'baffle', 'something', 'complex', 'timer', 'vcr', 'anyone', 'go', 'anyone', 'say', 'criminal', 'obviously', 'outgun', 'police', 'know', 'nothing', 'firearm', 'turn', 'cop', 'hunter', 'pay', 'attention', 'seek', 'say', 'semi', 'auto', 'junk', 'merely', 'assume', 'good', 'job', 'stupid', 'cop', 'revolver', 'hip', 'shotgun', 'rack', 'equip', 'anything', 'short', 'riot', 'gun', 'control', 'hit', 'aim', 'whip', 'wonder', 'nine', 'fire', 'real', 'fast', 'may', 'find', 'hit', 'anything', 'good', 'control', 'fire', 'revolver', 'likely', 'get', 'hit', 'beretta', 'consider', 'inferior', 'carry', 'weapon', 'something', 'like', 'ruger', 'security', 'six', 'revolver', 'hit', 'aim', 'first', 'shot', 'something', 'quite', 'seriously', 'wrong', 'somewhere', 'might', 'like', 'backup', 'capacity', 'extra', 'shot', 'certain', 'case', 'overwhelmingly', 'shot', 'fire', 'criminal', 'encounter', 'less', 'crook', 'overwhelmingly', 'use', 'crime', 'nice', 'simple', 'revolver', 'police', 'often', 'use', 'well', 'actually', 'police', 'prefer', 'much', 'hefty', 'magnum', 'anyway', 'obplea', 'flame', 'prefer', 'semi', 'auto', 'thing', 'introduce', 'unneccessary', 'complication', 'something', 'nerve', 'wracking', 'abrupt', 'encounter', 'lone', 'criminal'] | ['fully_automatic', 'automatic_weapon', 'lot_good', 'good_go', 'semi_auto', 'sure_make', 'semi_auto', 'would_good', 'like_able', 'rock_roll', 'semi_auto', 'pull_trigger', 'double_action', 'pull_trigger', 'pull_trigger', 'next_round', 'even_one', 'one_hand', 'semi_auto', 'semi_auto', 'first_time', 'time_spend', 'semi_auto', 'first_round', 'semi_auto', 'however_must', 'get_speed', 'double_action', 'police_department', 'rocket_scientist', 'anyone_go', 'anyone_say', 'know_nothing', 'pay_attention', 'semi_auto', 'good_job', 'gun_control', 'may_find', 'anything_good', 'likely_get', 'get_hit', 'carry_weapon', 'something_like', 'first_shot', 'might_like', 'certain_case', 'shot_fire', 'use_crime', 'often_use', 'well_actually', 'semi_auto'] | talk_politics_guns_54120 |@lemmatized delete:1 far:1 fully:1 automatic:1 weapon:2 lot:1 good:5 arm:2 want:1 hit:6 aim:3 define:1 go:2 shoot:1 revolver:13 semi:10 auto:9 like:4 colt:1 one:2 fire:8 fast:3 nope:1 aside:1 faster:2 rate:1 usually:1 desirable:1 sure:1 make:1 guy:1 duck:1 cover:1 try:1 anything:4 thompson:1 hose:1 mode:1 military:1 limit:1 round:3 burst:1 simple:2 would:1 troop:1 able:1 rock:1 roll:1 even:2 wasteful:1 ammo:1 something:5 often:3 short:2 supply:1 enemy:1 plentiful:1 equally:1 capable:1 caliber:1 also:1 advantage:1 misfire:3 pull:3 trigger:3 double:2 action:2 almost:2 hand:2 cock:2 first:4 merely:3 mean:1 must:3 rotate:1 next:1 carry:3 chamber:3 empty:1 hammer:3 maximum:1 safety:3 still:1 draw:1 easy:1 motion:1 speedloaders:1 allow:1 reload:1 magazine:1 depend:1 user:1 require:3 clear:2 jammed:2 shell:1 time:1 spend:1 fatal:1 vital:1 second:1 lose:1 realize:1 hey:1 start:2 slide:1 work:1 police:5 load:1 cocked:1 engage:1 consider:2 safe:1 however:1 trade:1 get:2 speed:1 employment:1 autos:1 complexity:1 operation:1 many:3 train:1 department:1 switch:2 glocks:2 quietly:1 officer:1 back:1 old:1 accident:1 partly:1 due:1 poor:1 training:1 receive:1 rocket:1 scientist:1 cop:3 baffle:1 complex:1 timer:1 vcr:1 anyone:2 say:2 criminal:3 obviously:1 outgun:1 know:1 nothing:1 firearm:1 turn:1 hunter:1 pay:1 attention:1 seek:1 junk:1 assume:1 job:1 stupid:1 hip:1 shotgun:1 rack:1 equip:1 riot:1 gun:1 control:2 whip:1 wonder:1 nine:1 real:1 may:1 find:1 likely:1 beretta:1 inferior:1 ruger:1 security:1 six:1 shot:3 quite:1 seriously:1 wrong:1 somewhere:1 might:1 backup:1 capacity:1 extra:1 certain:1 case:1 overwhelmingly:2 encounter:2 less:1 crook:1 use:2 crime:1 nice:1 well:1 actually:1 prefer:2 much:1 hefty:1 magnum:1 anyway:1 obplea:1 flame:1 thing:1 introduce:1 unneccessary:1 complication:1 nerve:1 wracking:1 abrupt:1 lone:1 |@bigram fully_automatic:1 automatic_weapon:1 lot_good:1 good_go:1 semi_auto:9 sure_make:1 would_good:1 like_able:1 rock_roll:1 pull_trigger:3 double_action:2 next_round:1 even_one:1 one_hand:1 first_time:1 time_spend:1 first_round:1 however_must:1 get_speed:1 police_department:1 rocket_scientist:1 anyone_go:1 anyone_say:1 know_nothing:1 pay_attention:1 good_job:1 gun_control:1 may_find:1 anything_good:1 likely_get:1 get_hit:1 carry_weapon:1 something_like:1 first_shot:1 might_like:1 certain_case:1 shot_fire:1 use_crime:1 often_use:1 well_actually:1 |
2,201 | I need to reduce the speed of a Boxer fan by about 30-50%. I recall
reading somewhere that the right capacitor in series will do it.
If this isn't a case of brain fade, can someone suggest the cap value ?
The specifics; It's a real Boxer Fan (tm). The label says 115 V, .2 amps.
Al Dykes | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.electronics/53700 | 12 | sci_electronics_53700 | [('need', 'NN'), ('to', 'TO'), ('reduce', 'VB'), ('the', 'DT'), ('speed', 'NN'), ('of', 'IN'), ('boxer', 'NN'), ('fan', 'NN'), ('by', 'IN'), ('about', 'IN'), ('30', 'CD'), ('50', 'CD'), ('%.', 'NN'), ('recall', 'NN'), ('reading', 'NN'), ('somewhere', 'RB'), ('that', 'IN'), ('the', 'DT'), ('right', 'JJ'), ('capacitor', 'NN'), ('in', 'IN'), ('series', 'NN'), ('will', 'MD'), ('do', 'VB'), ('it', 'PRP'), ('if', 'IN'), ('this', 'DT'), ('isn', 'JJ'), ('case', 'NN'), ('of', 'IN'), ('brain', 'NN'), ('fade', 'NN'), ('can', 'MD'), ('someone', 'NN'), ('suggest', 'VB'), ('the', 'DT'), ('cap', 'NN'), ('value', 'NN'), ('the', 'DT'), ('specifics', 'NNS'), ('it', 'PRP'), ('real', 'JJ'), ('boxer', 'JJ'), ('fan', 'NN'), ('tm', 'NN'), (').', 'VBD'), ('the', 'DT'), ('label', 'NN'), ('says', 'VBZ'), ('115', 'CD'), ('amps', 'NNS'), ('al', 'JJ'), ('dykes', 'NNS')] | ['need', 'reduce', 'speed', 'boxer', 'fan', 'recall', 'reading', 'somewhere', 'right', 'capacitor', 'series', 'case', 'brain', 'fade', 'someone', 'suggest', 'cap', 'value', 'specific', 'real', 'boxer', 'fan', 'tm', 'label', 'say', 'amp', 'al', 'dyke'] | ['recall_reading', 'someone_suggest'] | sci_electronics_53700 |@lemmatized need:1 reduce:1 speed:1 boxer:2 fan:2 recall:1 reading:1 somewhere:1 right:1 capacitor:1 series:1 case:1 brain:1 fade:1 someone:1 suggest:1 cap:1 value:1 specific:1 real:1 tm:1 label:1 say:1 amp:1 al:1 dyke:1 |@bigram recall_reading:1 someone_suggest:1 |
2,202 |
SW8,SW7 number of 5.25" drives
0,0 1 drive
0,1 2 drives
1,0 3 drives
1,1 4 drives
SW6,SW5 type of display
0,0 reserved
0,1 40x25 color (mono mode)
1,0 80x25 color (mono mode)
1,1 mono 80x25
SW4,SW3 amount of memory on system board
64k chips 256k chips
0,0 64k 256k
0,1 128k 512k
1,0 192k 576k
1,1 256k 640k | /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.electronics/53533 | 12 | sci_electronics_53533 | [('sw8', 'NN'), ('sw7', 'JJ'), ('number', 'NN'), ('of', 'IN'), ('25', 'CD'), ('drives', 'NNS'), ('drive', 'JJ'), ('drives', 'NNS'), ('drives', 'VBZ'), ('drives', 'NNS'), ('sw6', 'JJ'), ('sw5', 'JJ'), ('type', 'NN'), ('of', 'IN'), ('display', 'NN'), ('reserved', 'VBD'), ('40x25', 'CD'), ('color', 'NN'), ('mono', 'NN'), ('mode', 'NN'), ('80x25', 'CD'), ('color', 'NN'), ('mono', 'NN'), ('mode', 'NN'), ('mono', 'VBD'), ('80x25', 'CD'), ('sw4', 'NN'), ('sw3', 'NN'), ('amount', 'NN'), ('of', 'IN'), ('memory', 'NN'), ('on', 'IN'), ('system', 'NN'), ('board', 'NN'), ('64k', 'CD'), ('chips', 'NNS'), ('256k', 'CD'), ('chips', 'NNS'), ('64k', 'CD'), ('256k', 'CD'), ('128k', 'CD'), ('512k', 'CD'), ('192k', 'CD'), ('576k', 'CD'), ('256k', 'CD'), ('640k', 'CD')] | ['number', 'drive', 'drive', 'drive', 'drive', 'drive', 'type', 'display', 'reserve', 'color', 'mono', 'mode', 'color', 'mono', 'mode', 'mono', 'amount', 'memory', 'system', 'board', 'chip', 'chip'] | ['number_drive', 'drive_drive', 'drive_drive', 'drive_drive', 'drive_drive', 'drive_type', 'amount_memory', 'memory_system', 'chip_chip'] | sci_electronics_53533 |@lemmatized number:1 drive:5 type:1 display:1 reserve:1 color:2 mono:3 mode:2 amount:1 memory:1 system:1 board:1 chip:2 |@bigram number_drive:1 drive_drive:4 drive_type:1 amount_memory:1 memory_system:1 chip_chip:1 |
2,203 |
That doesn't worry me at all; they're not going to cheat at something
they can get caught at. And key size is one of the things that can be
verified externally. Feed lots of random key/input pairs into the
chip, then try flipping random key bits, and see what happens to the
output. We already know what *should* happen -- about half the output
bits should vary, on average, from a 1-bit key change or input change.
If they were out to build a weak cryptosystem, it might be the case that
some of the bits are much less powerful than others, in the sense that
they only enter into the encryption very late in the game. By contrast,
DES was designed to use each key bit as early as possible; the 50% output
change rate appears as early as round 5. Again, though, I don't think
NSA is going to cheat that crudely; they're likely to get caught.
Remember that they've promised to let a committee of outside experts see
the cryptosystem design. If you assume something DES-like, a biased
subkey generation schedule will stick out like a sore thumb. The committee
can and should run lots of tests, and retain the output. This can be verified
later against the chip. And yes, the civilian community has at least some
secure storage facilities that I don't think even NSA can get into without
it being noticed, until Fort Meade gets its transporter working again.
(Oops -- I don't think I was supposed to talk about that...) The committee
members can even retain secure copies of the code -- in two halves, which
you have to XOR together to recover the program...
Seriously, there are, I think, problems with this whole scheme. But the
people who invented it aren't stupid, and they've been in the crypto game
and the smoke-and-mirrors game far longer than most of us. They're not
going to lie in ways that can be detected easily, since their credibility
is the *only* thing they can use to sell this system. If they've lied
about the civilian committee, no one will believe them about the absence
of other back doors. If they've lied about the key size, no one will
believe that they haven't copied the programming disk with the U keys.
If they've lied about obvious aspects of the strength of the cryptosystem,
no one will believe the escrow agencies aren't in cahoots with them.
That isn't to say that they aren't lying about all those other things
anyway. And I'm certainly not claiming that NSA can't build a cryptosystem
with a back door that the committee can't find -- look how long it took
for folks to believe that the S-boxes weren't sabotaged. It's entirely
possible that the committee will release an ambiguous report, for just
such reasons. But that's a subtle point (i.e., one you can't explain to
a Senator...).
I don't like the unit key generation process any better than you do.
However -- S1 and S2 are supposed to be under control of the same
escrow agents. If they can't be trusted to keep the seed values secure,
they can't be trusted to keep the half-keys secure.
I still don't know if or when S1 and S2 change. I thought I had seen
something about them being constant, but I just reread Denning's technical
information post, and it doesn't say anything, one way or the other.
| /home/egorov/scikit_learn_data/20news_home/20news-bydate-train/sci.crypt/15609 | 11 | sci_crypt_15609 | [('that', 'DT'), ('doesn', 'NN'), ('worry', 'VB'), ('me', 'PRP'), ('at', 'IN'), ('all', 'DT'), ('they', 'PRP'), ('re', 'VBP'), ('not', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('cheat', 'VB'), ('at', 'IN'), ('something', 'NN'), ('they', 'PRP'), ('can', 'MD'), ('get', 'VB'), ('caught', 'VBN'), ('at', 'IN'), ('and', 'CC'), ('key', 'JJ'), ('size', 'NN'), ('is', 'VBZ'), ('one', 'CD'), ('of', 'IN'), ('the', 'DT'), ('things', 'NNS'), ('that', 'WDT'), ('can', 'MD'), ('be', 'VB'), ('verified', 'VBN'), ('externally', 'RB'), ('feed', 'JJ'), ('lots', 'NNS'), ('of', 'IN'), ('random', 'NN'), ('key', 'JJ'), ('input', 'NN'), ('pairs', 'NNS'), ('into', 'IN'), ('the', 'DT'), ('chip', 'NN'), ('then', 'RB'), ('try', 'VB'), ('flipping', 'VBG'), ('random', 'JJ'), ('key', 'JJ'), ('bits', 'NNS'), ('and', 'CC'), ('see', 'VB'), ('what', 'WP'), ('happens', 'VBZ'), ('to', 'TO'), ('the', 'DT'), ('output', 'NN'), ('we', 'PRP'), ('already', 'RB'), ('know', 'VBP'), ('what', 'WP'), ('should', 'MD'), ('happen', 'VB'), ('--', ':'), ('about', 'IN'), ('half', 'PDT'), ('the', 'DT'), ('output', 'NN'), ('bits', 'NNS'), ('should', 'MD'), ('vary', 'VB'), ('on', 'IN'), ('average', 'NN'), ('from', 'IN'), ('bit', 'NN'), ('key', 'JJ'), ('change', 'NN'), ('or', 'CC'), ('input', 'NN'), ('change', 'VBP'), ('if', 'IN'), ('they', 'PRP'), ('were', 'VBD'), ('out', 'RB'), ('to', 'TO'), ('build', 'VB'), ('weak', 'JJ'), ('cryptosystem', 'NN'), ('it', 'PRP'), ('might', 'MD'), ('be', 'VB'), ('the', 'DT'), ('case', 'NN'), ('that', 'IN'), ('some', 'DT'), ('of', 'IN'), ('the', 'DT'), ('bits', 'NNS'), ('are', 'VBP'), ('much', 'RB'), ('less', 'RBR'), ('powerful', 'JJ'), ('than', 'IN'), ('others', 'NNS'), ('in', 'IN'), ('the', 'DT'), ('sense', 'NN'), ('that', 'IN'), ('they', 'PRP'), ('only', 'RB'), ('enter', 'VBP'), ('into', 'IN'), ('the', 'DT'), ('encryption', 'NN'), ('very', 'RB'), ('late', 'RB'), ('in', 'IN'), ('the', 'DT'), ('game', 'NN'), ('by', 'IN'), ('contrast', 'NN'), ('des', 'NNS'), ('was', 'VBD'), ('designed', 'VBN'), ('to', 'TO'), ('use', 'VB'), ('each', 'DT'), ('key', 'JJ'), ('bit', 'NN'), ('as', 'RB'), ('early', 'RB'), ('as', 'IN'), ('possible', 'JJ'), ('the', 'DT'), ('50', 'CD'), ('output', 'NN'), ('change', 'NN'), ('rate', 'NN'), ('appears', 'VBZ'), ('as', 'RB'), ('early', 'JJ'), ('as', 'IN'), ('round', 'NN'), ('again', 'RB'), ('though', 'IN'), ('don', 'JJ'), ('think', 'VBP'), ('nsa', 'NN'), ('is', 'VBZ'), ('going', 'VBG'), ('to', 'TO'), ('cheat', 'VB'), ('that', 'DT'), ('crudely', 'RB'), ('they', 'PRP'), ('re', 'VBP'), ('likely', 'JJ'), ('to', 'TO'), ('get', 'VB'), ('caught', 'JJ'), ('remember', 'VB'), ('that', 'IN'), ('they', 'PRP'), ('ve', 'VBP'), ('promised', 'VBN'), ('to', 'TO'), ('let', 'VB'), ('committee', 'NN'), ('of', 'IN'), ('outside', 'JJ'), ('experts', 'NNS'), ('see', 'VBP'), ('the', 'DT'), ('cryptosystem', 'NN'), ('design', 'NN'), ('if', 'IN'), ('you', 'PRP'), ('assume', 'VBP'), ('something', 'NN'), ('des', 'NNS'), ('like', 'IN'), ('biased', 'VBN'), ('subkey', 'JJ'), ('generation', 'NN'), ('schedule', 'NN'), ('will', 'MD'), ('stick', 'VB'), ('out', 'RP'), ('like', 'IN'), ('sore', 'RB'), ('thumb', 'VBZ'), ('the', 'DT'), ('committee', 'NN'), ('can', 'MD'), ('and', 'CC'), ('should', 'MD'), ('run', 'VB'), ('lots', 'NNS'), ('of', 'IN'), ('tests', 'NNS'), ('and', 'CC'), ('retain', 'VB'), ('the', 'DT'), ('output', 'NN'), ('this', 'DT'), ('can', 'MD'), ('be', 'VB'), ('verified', 'VBN'), ('later', 'RB'), ('against', 'IN'), ('the', 'DT'), ('chip', 'NN'), ('and', 'CC'), ('yes', 'VB'), ('the', 'DT'), ('civilian', 'JJ'), ('community', 'NN'), ('has', 'VBZ'), ('at', 'IN'), ('least', 'JJS'), ('some', 'DT'), ('secure', 'NN'), ('storage', 'NN'), ('facilities', 'NNS'), ('that', 'IN'), ('don', 'VBP'), ('think', 'VB'), ('even', 'RB'), ('nsa', 'NNS'), ('can', 'MD'), ('get', 'VB'), ('into', 'IN'), ('without', 'IN'), ('it', 'PRP'), ('being', 'VBG'), ('noticed', 'VBN'), ('until', 'IN'), ('fort', 'NN'), ('meade', 'VBD'), ('gets', 'VBZ'), ('its', 'PRP$'), ('transporter', 'NN'), ('working', 'VBG'), ('again', 'RB'), ('oops', 'NNS'), ('--', ':'), ('don', 'VB'), ('think', 'NN'), ('was', 'VBD'), ('supposed', 'VBN'), ('to', 'TO'), ('talk', 'VB'), ('about', 'IN'), ('that', 'DT'), ('...)', 'VBZ'), ('the', 'DT'), ('committee', 'NN'), ('members', 'NNS'), ('can', 'MD'), ('even', 'RB'), ('retain', 'VB'), ('secure', 'JJ'), ('copies', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('code', 'NN'), ('--', ':'), ('in', 'IN'), ('two', 'CD'), ('halves', 'NNS'), ('which', 'WDT'), ('you', 'PRP'), ('have', 'VBP'), ('to', 'TO'), ('xor', 'VB'), ('together', 'RB'), ('to', 'TO'), ('recover', 'VB'), ('the', 'DT'), ('program', 'NN'), ('...', ':'), ('seriously', 'RB'), ('there', 'EX'), ('are', 'VBP'), ('think', 'VB'), ('problems', 'NNS'), ('with', 'IN'), ('this', 'DT'), ('whole', 'JJ'), ('scheme', 'NN'), ('but', 'CC'), ('the', 'DT'), ('people', 'NNS'), ('who', 'WP'), ('invented', 'VBD'), ('it', 'PRP'), ('aren', 'VBZ'), ('stupid', 'JJ'), ('and', 'CC'), ('they', 'PRP'), ('ve', 'VBP'), ('been', 'VBN'), ('in', 'IN'), ('the', 'DT'), ('crypto', 'NN'), ('game', 'NN'), ('and', 'CC'), ('the', 'DT'), ('smoke', 'NN'), ('and', 'CC'), ('mirrors', 'NNS'), ('game', 'NN'), ('far', 'RB'), ('longer', 'JJR'), ('than', 'IN'), ('most', 'JJS'), ('of', 'IN'), ('us', 'PRP'), ('they', 'PRP'), ('re', 'VBP'), ('not', 'RB'), ('going', 'VBG'), ('to', 'TO'), ('lie', 'VB'), ('in', 'IN'), ('ways', 'NNS'), ('that', 'WDT'), ('can', 'MD'), ('be', 'VB'), ('detected', 'VBN'), ('easily', 'RB'), ('since', 'IN'), ('their', 'PRP$'), ('credibility', 'NN'), ('is', 'VBZ'), ('the', 'DT'), ('only', 'JJ'), ('thing', 'NN'), ('they', 'PRP'), ('can', 'MD'), ('use', 'VB'), ('to', 'TO'), ('sell', 'VB'), ('this', 'DT'), ('system', 'NN'), ('if', 'IN'), ('they', 'PRP'), ('ve', 'VBP'), ('lied', 'VBN'), ('about', 'IN'), ('the', 'DT'), ('civilian', 'JJ'), ('committee', 'NN'), ('no', 'DT'), ('one', 'NN'), ('will', 'MD'), ('believe', 'VB'), ('them', 'PRP'), ('about', 'IN'), ('the', 'DT'), ('absence', 'NN'), ('of', 'IN'), ('other', 'JJ'), ('back', 'JJ'), ('doors', 'NNS'), ('if', 'IN'), ('they', 'PRP'), ('ve', 'VBP'), ('lied', 'VBN'), ('about', 'IN'), ('the', 'DT'), ('key', 'JJ'), ('size', 'NN'), ('no', 'DT'), ('one', 'NN'), ('will', 'MD'), ('believe', 'VB'), ('that', 'IN'), ('they', 'PRP'), ('haven', 'VBP'), ('copied', 'VBD'), ('the', 'DT'), ('programming', 'NN'), ('disk', 'NN'), ('with', 'IN'), ('the', 'DT'), ('keys', 'NNS'), ('if', 'IN'), ('they', 'PRP'), ('ve', 'VBP'), ('lied', 'VBN'), ('about', 'IN'), ('obvious', 'JJ'), ('aspects', 'NNS'), ('of', 'IN'), ('the', 'DT'), ('strength', 'NN'), ('of', 'IN'), ('the', 'DT'), ('cryptosystem', 'NN'), ('no', 'DT'), ('one', 'NN'), ('will', 'MD'), ('believe', 'VB'), ('the', 'DT'), ('escrow', 'NN'), ('agencies', 'NNS'), ('aren', 'VBP'), ('in', 'IN'), ('cahoots', 'NNS'), ('with', 'IN'), ('them', 'PRP'), ('that', 'WDT'), ('isn', 'VBZ'), ('to', 'TO'), ('say', 'VB'), ('that', 'IN'), ('they', 'PRP'), ('aren', 'VBP'), ('lying', 'VBG'), ('about', 'IN'), ('all', 'PDT'), ('those', 'DT'), ('other', 'JJ'), ('things', 'NNS'), ('anyway', 'RB'), ('and', 'CC'), ('certainly', 'RB'), ('not', 'RB'), ('claiming', 'VBG'), ('that', 'IN'), ('nsa', 'NN'), ('can', 'MD'), ('build', 'VB'), ('cryptosystem', 'NN'), ('with', 'IN'), ('back', 'JJ'), ('door', 'NN'), ('that', 'IN'), ('the', 'DT'), ('committee', 'NN'), ('can', 'MD'), ('find', 'VB'), ('--', ':'), ('look', 'VB'), ('how', 'WRB'), ('long', 'JJ'), ('it', 'PRP'), ('took', 'VBD'), ('for', 'IN'), ('folks', 'NNS'), ('to', 'TO'), ('believe', 'VB'), ('that', 'IN'), ('the', 'DT'), ('boxes', 'NNS'), ('weren', 'VBP'), ('sabotaged', 'VBD'), ('it', 'PRP'), ('entirely', 'RB'), ('possible', 'JJ'), ('that', 'IN'), ('the', 'DT'), ('committee', 'NN'), ('will', 'MD'), ('release', 'VB'), ('an', 'DT'), ('ambiguous', 'JJ'), ('report', 'NN'), ('for', 'IN'), ('just', 'RB'), ('such', 'JJ'), ('reasons', 'NNS'), ('but', 'CC'), ('that', 'DT'), ('subtle', 'JJ'), ('point', 'NN'), ('.,', 'VBP'), ('one', 'CD'), ('you', 'PRP'), ('can', 'MD'), ('explain', 'VB'), ('to', 'TO'), ('senator', 'VB'), ('...).', 'JJ'), ('don', 'NNS'), ('like', 'IN'), ('the', 'DT'), ('unit', 'NN'), ('key', 'JJ'), ('generation', 'NN'), ('process', 'NN'), ('any', 'DT'), ('better', 'JJR'), ('than', 'IN'), ('you', 'PRP'), ('do', 'VBP'), ('however', 'RB'), ('--', ':'), ('s1', 'NN'), ('and', 'CC'), ('s2', 'NN'), ('are', 'VBP'), ('supposed', 'VBN'), ('to', 'TO'), ('be', 'VB'), ('under', 'IN'), ('control', 'NN'), ('of', 'IN'), ('the', 'DT'), ('same', 'JJ'), ('escrow', 'NN'), ('agents', 'NNS'), ('if', 'IN'), ('they', 'PRP'), ('can', 'MD'), ('be', 'VB'), ('trusted', 'VBN'), ('to', 'TO'), ('keep', 'VB'), ('the', 'DT'), ('seed', 'NN'), ('values', 'VBZ'), ('secure', 'VBP'), ('they', 'PRP'), ('can', 'MD'), ('be', 'VB'), ('trusted', 'VBN'), ('to', 'TO'), ('keep', 'VB'), ('the', 'DT'), ('half', 'JJ'), ('keys', 'NNS'), ('secure', 'VBP'), ('still', 'RB'), ('don', 'VB'), ('know', 'VB'), ('if', 'IN'), ('or', 'CC'), ('when', 'WRB'), ('s1', 'NN'), ('and', 'CC'), ('s2', 'JJ'), ('change', 'NN'), ('thought', 'NN'), ('had', 'VBD'), ('seen', 'VBN'), ('something', 'NN'), ('about', 'IN'), ('them', 'PRP'), ('being', 'VBG'), ('constant', 'JJ'), ('but', 'CC'), ('just', 'RB'), ('reread', 'VB'), ('denning', 'VBG'), ('technical', 'JJ'), ('information', 'NN'), ('post', 'NN'), ('and', 'CC'), ('it', 'PRP'), ('doesn', 'VBZ'), ('say', 'VBP'), ('anything', 'NN'), ('one', 'CD'), ('way', 'NN'), ('or', 'CC'), ('the', 'DT'), ('other', 'JJ')] | ['worry', 'go', 'cheat', 'something', 'get', 'catch', 'key', 'size', 'one', 'thing', 'verify', 'externally', 'feed', 'lot', 'random', 'key', 'input', 'pair', 'chip', 'try', 'flip', 'random', 'key', 'bit', 'see', 'happen', 'output', 'already', 'know', 'happen', 'half', 'output', 'bit', 'vary', 'average', 'bit', 'key', 'change', 'input', 'change', 'build', 'weak', 'cryptosystem', 'might', 'case', 'bit', 'much', 'less', 'powerful', 'others', 'sense', 'enter', 'encryption', 'late', 'game', 'contrast', 'de', 'design', 'use', 'key', 'bit', 'early', 'possible', 'output', 'change', 'rate', 'appear', 'early', 'round', 'though', 'think', 'nsa', 'go', 'cheat', 'crudely', 'likely', 'get', 'caught', 'remember', 'promise', 'let', 'committee', 'outside', 'expert', 'see', 'cryptosystem', 'design', 'assume', 'something', 'de', 'like', 'bias', 'subkey', 'generation', 'schedule', 'stick', 'like', 'sore', 'thumb', 'committee', 'run', 'lot', 'test', 'retain', 'output', 'verify', 'later', 'chip', 'yes', 'civilian', 'community', 'least', 'secure', 'storage', 'facility', 'think', 'even', 'nsa', 'get', 'without', 'notice', 'fort', 'meade', 'get', 'transporter', 'work', 'oops', 'think', 'suppose', 'talk', 'committee', 'member', 'even', 'retain', 'secure', 'copy', 'code', 'two', 'half', 'xor', 'together', 'recover', 'program', 'seriously', 'think', 'problem', 'whole', 'scheme', 'people', 'invent', 'stupid', 'crypto', 'game', 'smoke', 'mirror', 'game', 'far', 'long', 'u', 'go', 'lie', 'way', 'detect', 'easily', 'since', 'credibility', 'thing', 'use', 'sell', 'system', 'lie', 'civilian', 'committee', 'one', 'believe', 'absence', 'back', 'door', 'lie', 'key', 'size', 'one', 'believe', 'copy', 'programming', 'disk', 'key', 'lie', 'obvious', 'aspect', 'strength', 'cryptosystem', 'one', 'believe', 'escrow', 'agency', 'cahoot', 'say', 'lie', 'thing', 'anyway', 'certainly', 'claim', 'nsa', 'build', 'cryptosystem', 'back', 'door', 'committee', 'find', 'look', 'long', 'take', 'folk', 'believe', 'box', 'sabotage', 'entirely', 'possible', 'committee', 'release', 'ambiguous', 'report', 'reason', 'subtle', 'point', 'one', 'explain', 'senator', 'like', 'unit', 'key', 'generation', 'process', 'good', 'however', 'suppose', 'control', 'escrow', 'agent', 'trust', 'keep', 'seed', 'value', 'secure', 'trust', 'keep', 'half', 'key', 'secure', 'still', 'know', 'change', 'thought', 'see', 'something', 'constant', 'reread', 'denning', 'technical', 'information', 'post', 'say', 'anything', 'one', 'way'] | ['worry_go', 'go_cheat', 'something_get', 'get_catch', 'key_size', 'size_one', 'one_thing', 'random_key', 'random_key', 'key_bit', 'see_happen', 'already_know', 'know_happen', 'bit_key', 'key_change', 'bit_much', 'much_less', 'less_powerful', 'late_game', 'design_use', 'use_key', 'key_bit', 'early_possible', 'early_round', 'though_think', 'go_cheat', 'likely_get', 'get_caught', 'outside_expert', 'assume_something', 'think_even', 'get_without', 'fort_meade', 'committee_member', 'two_half', 'seriously_think', 'think_problem', 'smoke_mirror', 'far_long', 'u_go', 'way_detect', 'thing_use', 'use_sell', 'one_believe', 'back_door', 'key_size', 'size_one', 'one_believe', 'one_believe', 'escrow_agency', 'say_lie', 'back_door', 'find_look', 'long_take', 'entirely_possible', 'point_one', 'unit_key', 'key_generation', 'good_however', 'escrow_agent', 'half_key', 'still_know', 'see_something', 'technical_information', 'information_post', 'say_anything', 'anything_one', 'one_way'] | sci_crypt_15609 |@lemmatized worry:1 go:3 cheat:2 something:3 get:4 catch:1 key:9 size:2 one:6 thing:3 verify:2 externally:1 feed:1 lot:2 random:2 input:2 pair:1 chip:2 try:1 flip:1 bit:5 see:3 happen:2 output:4 already:1 know:2 half:3 vary:1 average:1 change:4 build:2 weak:1 cryptosystem:4 might:1 case:1 much:1 less:1 powerful:1 others:1 sense:1 enter:1 encryption:1 late:1 game:3 contrast:1 de:2 design:2 use:2 early:2 possible:2 rate:1 appear:1 round:1 though:1 think:4 nsa:3 crudely:1 likely:1 caught:1 remember:1 promise:1 let:1 committee:6 outside:1 expert:1 assume:1 like:3 bias:1 subkey:1 generation:2 schedule:1 stick:1 sore:1 thumb:1 run:1 test:1 retain:2 later:1 yes:1 civilian:2 community:1 least:1 secure:4 storage:1 facility:1 even:2 without:1 notice:1 fort:1 meade:1 transporter:1 work:1 oops:1 suppose:2 talk:1 member:1 copy:2 code:1 two:1 xor:1 together:1 recover:1 program:1 seriously:1 problem:1 whole:1 scheme:1 people:1 invent:1 stupid:1 crypto:1 smoke:1 mirror:1 far:1 long:2 u:1 lie:5 way:2 detect:1 easily:1 since:1 credibility:1 sell:1 system:1 believe:4 absence:1 back:2 door:2 programming:1 disk:1 obvious:1 aspect:1 strength:1 escrow:2 agency:1 cahoot:1 say:2 anyway:1 certainly:1 claim:1 find:1 look:1 take:1 folk:1 box:1 sabotage:1 entirely:1 release:1 ambiguous:1 report:1 reason:1 subtle:1 point:1 explain:1 senator:1 unit:1 process:1 good:1 however:1 control:1 agent:1 trust:2 keep:2 seed:1 value:1 still:1 thought:1 constant:1 reread:1 denning:1 technical:1 information:1 post:1 anything:1 |@bigram worry_go:1 go_cheat:2 something_get:1 get_catch:1 key_size:2 size_one:2 one_thing:1 random_key:2 key_bit:2 see_happen:1 already_know:1 know_happen:1 bit_key:1 key_change:1 bit_much:1 much_less:1 less_powerful:1 late_game:1 design_use:1 use_key:1 early_possible:1 early_round:1 though_think:1 likely_get:1 get_caught:1 outside_expert:1 assume_something:1 think_even:1 get_without:1 fort_meade:1 committee_member:1 two_half:1 seriously_think:1 think_problem:1 smoke_mirror:1 far_long:1 u_go:1 way_detect:1 thing_use:1 use_sell:1 one_believe:3 back_door:2 escrow_agency:1 say_lie:1 find_look:1 long_take:1 entirely_possible:1 point_one:1 unit_key:1 key_generation:1 good_however:1 escrow_agent:1 half_key:1 still_know:1 see_something:1 technical_information:1 information_post:1 say_anything:1 anything_one:1 one_way:1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.