YENUGU SUJITH REDDY commited on
Commit
45fe8b6
·
0 Parent(s):

Initial commit with Git LFS models

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +2 -0
  2. .gitignore +41 -0
  3. Dockerfile +13 -0
  4. README.md +91 -0
  5. api/main.py +45 -0
  6. data/20_newsgroups/alt.atheism/49960 +307 -0
  7. data/20_newsgroups/alt.atheism/51060 +663 -0
  8. data/20_newsgroups/alt.atheism/51119 +104 -0
  9. data/20_newsgroups/alt.atheism/51120 +41 -0
  10. data/20_newsgroups/alt.atheism/51121 +28 -0
  11. data/20_newsgroups/alt.atheism/51122 +125 -0
  12. data/20_newsgroups/alt.atheism/51123 +22 -0
  13. data/20_newsgroups/alt.atheism/51124 +39 -0
  14. data/20_newsgroups/alt.atheism/51125 +65 -0
  15. data/20_newsgroups/alt.atheism/51126 +20 -0
  16. data/20_newsgroups/alt.atheism/51127 +25 -0
  17. data/20_newsgroups/alt.atheism/51128 +23 -0
  18. data/20_newsgroups/alt.atheism/51129 +31 -0
  19. data/20_newsgroups/alt.atheism/51130 +36 -0
  20. data/20_newsgroups/alt.atheism/51131 +55 -0
  21. data/20_newsgroups/alt.atheism/51132 +61 -0
  22. data/20_newsgroups/alt.atheism/51133 +37 -0
  23. data/20_newsgroups/alt.atheism/51134 +36 -0
  24. data/20_newsgroups/alt.atheism/51135 +43 -0
  25. data/20_newsgroups/alt.atheism/51136 +57 -0
  26. data/20_newsgroups/alt.atheism/51137 +75 -0
  27. data/20_newsgroups/alt.atheism/51138 +57 -0
  28. data/20_newsgroups/alt.atheism/51139 +35 -0
  29. data/20_newsgroups/alt.atheism/51140 +21 -0
  30. data/20_newsgroups/alt.atheism/51141 +28 -0
  31. data/20_newsgroups/alt.atheism/51142 +202 -0
  32. data/20_newsgroups/alt.atheism/51143 +23 -0
  33. data/20_newsgroups/alt.atheism/51144 +46 -0
  34. data/20_newsgroups/alt.atheism/51145 +26 -0
  35. data/20_newsgroups/alt.atheism/51146 +22 -0
  36. data/20_newsgroups/alt.atheism/51147 +31 -0
  37. data/20_newsgroups/alt.atheism/51148 +42 -0
  38. data/20_newsgroups/alt.atheism/51149 +19 -0
  39. data/20_newsgroups/alt.atheism/51150 +23 -0
  40. data/20_newsgroups/alt.atheism/51151 +130 -0
  41. data/20_newsgroups/alt.atheism/51152 +35 -0
  42. data/20_newsgroups/alt.atheism/51153 +134 -0
  43. data/20_newsgroups/alt.atheism/51154 +39 -0
  44. data/20_newsgroups/alt.atheism/51155 +44 -0
  45. data/20_newsgroups/alt.atheism/51156 +120 -0
  46. data/20_newsgroups/alt.atheism/51157 +47 -0
  47. data/20_newsgroups/alt.atheism/51158 +21 -0
  48. data/20_newsgroups/alt.atheism/51159 +37 -0
  49. data/20_newsgroups/alt.atheism/51160 +30 -0
  50. data/20_newsgroups/alt.atheism/51161 +33 -0
.gitattributes ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ *.pkl filter=lfs diff=lfs merge=lfs -text
2
+ *.index filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python cache
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
6
+
7
+ # Virtual environments
8
+ .venv/
9
+ venv/
10
+ env/
11
+ ENV/
12
+
13
+ # Python packaging
14
+ build/
15
+ dist/
16
+ *.egg-info/
17
+
18
+ # Logs
19
+ *.log
20
+
21
+ # VS Code
22
+ .vscode/
23
+
24
+ # OS files
25
+ .DS_Store
26
+ Thumbs.db
27
+
28
+ # Jupyter
29
+ .ipynb_checkpoints/
30
+
31
+ # Temporary files
32
+ *.tmp
33
+ *.temp
34
+
35
+ # HuggingFace cache (optional)
36
+ .cache/
37
+
38
+ # Large training artifacts (if you ever generate new ones)
39
+ *.pt
40
+ *.pth
41
+ *.ckpt
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ WORKDIR /app
4
+
5
+ COPY requirements.txt .
6
+
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+
9
+ COPY . .
10
+
11
+ EXPOSE 7860
12
+
13
+ CMD ["uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "7860"]
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+
3
+ title: Semantic Search Cache API
4
+ emoji: 🔎
5
+ colorFrom: blue
6
+ colorTo: purple
7
+ sdk: docker
8
+ python_version: "3.10"
9
+ app_file: app.py
10
+ app_port: 7860
11
+ pinned: false
12
+ ---
13
+
14
+ # Semantic Search Cache API
15
+
16
+ This project provides a **semantic search engine with caching and fuzzy clustering**.
17
+
18
+ It uses:
19
+
20
+ * Sentence embeddings
21
+ * FAISS vector index
22
+ * Gaussian Mixture Model clustering
23
+ * Semantic caching
24
+
25
+ The API is built with **FastAPI** and deployed using **Docker** on Hugging Face Spaces.
26
+
27
+ ---
28
+
29
+ ## Features
30
+
31
+ * Semantic similarity search
32
+ * FAISS vector indexing
33
+ * Semantic cache for faster repeated queries
34
+ * Fuzzy clustering with GMM
35
+ * REST API endpoints
36
+
37
+ ---
38
+
39
+ ## API Endpoints
40
+
41
+ ### POST `/query`
42
+
43
+ Example request:
44
+
45
+ ```json
46
+ {
47
+ "query": "space shuttle launch",
48
+ "top_k": 5
49
+ }
50
+ ```
51
+
52
+ ### GET `/cache/stats`
53
+
54
+ Returns semantic cache statistics.
55
+
56
+ ### DELETE `/cache`
57
+
58
+ Clears the cache.
59
+
60
+ ---
61
+
62
+ ## Project Structure
63
+
64
+ ```
65
+ semantic-search-cache/
66
+
67
+ ├── api/
68
+ │ └── main.py
69
+
70
+ ├── src/
71
+ │ ├── query_engine.py
72
+ │ ├── semantic_cache.py
73
+ │ ├── fuzzy_cluster.py
74
+
75
+ ├── models/
76
+ │ ├── faiss_index.index
77
+ │ ├── documents.pkl
78
+ │ └── gmm_model.pkl
79
+
80
+ ├── requirements.txt
81
+ ├── Dockerfile
82
+ └── app.py
83
+ ```
84
+
85
+ ---
86
+
87
+ ## Deployment
88
+
89
+ This project is deployed using **Docker** on Hugging Face Spaces.
90
+
91
+ The container exposes port **7860** and runs a FastAPI server using Uvicorn.
api/main.py ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+ from pydantic import BaseModel
3
+ import sys
4
+ import os
5
+
6
+ # allow importing from src
7
+ sys.path.append(os.path.abspath("src"))
8
+
9
+ from query_engine import QueryEngine
10
+
11
+ app = FastAPI()
12
+
13
+ engine = QueryEngine()
14
+
15
+
16
+ class QueryRequest(BaseModel):
17
+ query: str
18
+ top_k: int = 5
19
+
20
+
21
+ @app.get("/")
22
+ def home():
23
+ return {"message": "Semantic Search Cache API running"}
24
+
25
+
26
+ @app.post("/query")
27
+ def search(request: QueryRequest):
28
+
29
+ result = engine.search(request.query, request.top_k)
30
+
31
+ return result
32
+
33
+
34
+ @app.get("/cache/stats")
35
+ def cache_stats():
36
+
37
+ return engine.cache_stats()
38
+
39
+
40
+ @app.delete("/cache")
41
+ def clear_cache():
42
+
43
+ engine.clear_cache()
44
+
45
+ return {"message": "Cache cleared"}
data/20_newsgroups/alt.atheism/49960 ADDED
@@ -0,0 +1,307 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:49960 alt.atheism.moderated:713 news.answers:7054 alt.answers:126
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!bb3.andrew.cmu.edu!news.sei.cmu.edu!cis.ohio-state.edu!magnus.acs.ohio-state.edu!usenet.ins.cwru.edu!agate!spool.mu.edu!uunet!pipex!ibmpcug!mantis!mathew
3
+ From: mathew <mathew@mantis.co.uk>
4
+ Newsgroups: alt.atheism,alt.atheism.moderated,news.answers,alt.answers
5
+ Subject: Alt.Atheism FAQ: Atheist Resources
6
+ Summary: Books, addresses, music -- anything related to atheism
7
+ Keywords: FAQ, atheism, books, music, fiction, addresses, contacts
8
+ Message-ID: <19930329115719@mantis.co.uk>
9
+ Date: Mon, 29 Mar 1993 11:57:19 GMT
10
+ Expires: Thu, 29 Apr 1993 11:57:19 GMT
11
+ Followup-To: alt.atheism
12
+ Distribution: world
13
+ Organization: Mantis Consultants, Cambridge. UK.
14
+ Approved: news-answers-request@mit.edu
15
+ Supersedes: <19930301143317@mantis.co.uk>
16
+ Lines: 290
17
+
18
+ Archive-name: atheism/resources
19
+ Alt-atheism-archive-name: resources
20
+ Last-modified: 11 December 1992
21
+ Version: 1.0
22
+
23
+ Atheist Resources
24
+
25
+ Addresses of Atheist Organizations
26
+
27
+ USA
28
+
29
+ FREEDOM FROM RELIGION FOUNDATION
30
+
31
+ Darwin fish bumper stickers and assorted other atheist paraphernalia are
32
+ available from the Freedom From Religion Foundation in the US.
33
+
34
+ Write to: FFRF, P.O. Box 750, Madison, WI 53701.
35
+ Telephone: (608) 256-8900
36
+
37
+ EVOLUTION DESIGNS
38
+
39
+ Evolution Designs sell the "Darwin fish". It's a fish symbol, like the ones
40
+ Christians stick on their cars, but with feet and the word "Darwin" written
41
+ inside. The deluxe moulded 3D plastic fish is $4.95 postpaid in the US.
42
+
43
+ Write to: Evolution Designs, 7119 Laurel Canyon #4, North Hollywood,
44
+ CA 91605.
45
+
46
+ People in the San Francisco Bay area can get Darwin Fish from Lynn Gold --
47
+ try mailing <figmo@netcom.com>. For net people who go to Lynn directly, the
48
+ price is $4.95 per fish.
49
+
50
+ AMERICAN ATHEIST PRESS
51
+
52
+ AAP publish various atheist books -- critiques of the Bible, lists of
53
+ Biblical contradictions, and so on. One such book is:
54
+
55
+ "The Bible Handbook" by W.P. Ball and G.W. Foote. American Atheist Press.
56
+ 372 pp. ISBN 0-910309-26-4, 2nd edition, 1986. Bible contradictions,
57
+ absurdities, atrocities, immoralities... contains Ball, Foote: "The Bible
58
+ Contradicts Itself", AAP. Based on the King James version of the Bible.
59
+
60
+ Write to: American Atheist Press, P.O. Box 140195, Austin, TX 78714-0195.
61
+ or: 7215 Cameron Road, Austin, TX 78752-2973.
62
+ Telephone: (512) 458-1244
63
+ Fax: (512) 467-9525
64
+
65
+ PROMETHEUS BOOKS
66
+
67
+ Sell books including Haught's "Holy Horrors" (see below).
68
+
69
+ Write to: 700 East Amherst Street, Buffalo, New York 14215.
70
+ Telephone: (716) 837-2475.
71
+
72
+ An alternate address (which may be newer or older) is:
73
+ Prometheus Books, 59 Glenn Drive, Buffalo, NY 14228-2197.
74
+
75
+ AFRICAN-AMERICANS FOR HUMANISM
76
+
77
+ An organization promoting black secular humanism and uncovering the history of
78
+ black freethought. They publish a quarterly newsletter, AAH EXAMINER.
79
+
80
+ Write to: Norm R. Allen, Jr., African Americans for Humanism, P.O. Box 664,
81
+ Buffalo, NY 14226.
82
+
83
+ United Kingdom
84
+
85
+ Rationalist Press Association National Secular Society
86
+ 88 Islington High Street 702 Holloway Road
87
+ London N1 8EW London N19 3NL
88
+ 071 226 7251 071 272 1266
89
+
90
+ British Humanist Association South Place Ethical Society
91
+ 14 Lamb's Conduit Passage Conway Hall
92
+ London WC1R 4RH Red Lion Square
93
+ 071 430 0908 London WC1R 4RL
94
+ fax 071 430 1271 071 831 7723
95
+
96
+ The National Secular Society publish "The Freethinker", a monthly magazine
97
+ founded in 1881.
98
+
99
+ Germany
100
+
101
+ IBKA e.V.
102
+ Internationaler Bund der Konfessionslosen und Atheisten
103
+ Postfach 880, D-1000 Berlin 41. Germany.
104
+
105
+ IBKA publish a journal:
106
+ MIZ. (Materialien und Informationen zur Zeit. Politisches
107
+ Journal der Konfessionslosesn und Atheisten. Hrsg. IBKA e.V.)
108
+ MIZ-Vertrieb, Postfach 880, D-1000 Berlin 41. Germany.
109
+
110
+ For atheist books, write to:
111
+
112
+ IBDK, Internationaler B"ucherdienst der Konfessionslosen
113
+ Postfach 3005, D-3000 Hannover 1. Germany.
114
+ Telephone: 0511/211216
115
+
116
+
117
+ Books -- Fiction
118
+
119
+ THOMAS M. DISCH
120
+
121
+ "The Santa Claus Compromise"
122
+ Short story. The ultimate proof that Santa exists. All characters and
123
+ events are fictitious. Any similarity to living or dead gods -- uh, well...
124
+
125
+ WALTER M. MILLER, JR
126
+
127
+ "A Canticle for Leibowitz"
128
+ One gem in this post atomic doomsday novel is the monks who spent their lives
129
+ copying blueprints from "Saint Leibowitz", filling the sheets of paper with
130
+ ink and leaving white lines and letters.
131
+
132
+ EDGAR PANGBORN
133
+
134
+ "Davy"
135
+ Post atomic doomsday novel set in clerical states. The church, for example,
136
+ forbids that anyone "produce, describe or use any substance containing...
137
+ atoms".
138
+
139
+ PHILIP K. DICK
140
+
141
+ Philip K. Dick Dick wrote many philosophical and thought-provoking short
142
+ stories and novels. His stories are bizarre at times, but very approachable.
143
+ He wrote mainly SF, but he wrote about people, truth and religion rather than
144
+ technology. Although he often believed that he had met some sort of God, he
145
+ remained sceptical. Amongst his novels, the following are of some relevance:
146
+
147
+ "Galactic Pot-Healer"
148
+ A fallible alien deity summons a group of Earth craftsmen and women to a
149
+ remote planet to raise a giant cathedral from beneath the oceans. When the
150
+ deity begins to demand faith from the earthers, pot-healer Joe Fernwright is
151
+ unable to comply. A polished, ironic and amusing novel.
152
+
153
+ "A Maze of Death"
154
+ Noteworthy for its description of a technology-based religion.
155
+
156
+ "VALIS"
157
+ The schizophrenic hero searches for the hidden mysteries of Gnostic
158
+ Christianity after reality is fired into his brain by a pink laser beam of
159
+ unknown but possibly divine origin. He is accompanied by his dogmatic and
160
+ dismissively atheist friend and assorted other odd characters.
161
+
162
+ "The Divine Invasion"
163
+ God invades Earth by making a young woman pregnant as she returns from
164
+ another star system. Unfortunately she is terminally ill, and must be
165
+ assisted by a dead man whose brain is wired to 24-hour easy listening music.
166
+
167
+ MARGARET ATWOOD
168
+
169
+ "The Handmaid's Tale"
170
+ A story based on the premise that the US Congress is mysteriously
171
+ assassinated, and fundamentalists quickly take charge of the nation to set it
172
+ "right" again. The book is the diary of a woman's life as she tries to live
173
+ under the new Christian theocracy. Women's right to own property is revoked,
174
+ and their bank accounts are closed; sinful luxuries are outlawed, and the
175
+ radio is only used for readings from the Bible. Crimes are punished
176
+ retroactively: doctors who performed legal abortions in the "old world" are
177
+ hunted down and hanged. Atwood's writing style is difficult to get used to
178
+ at first, but the tale grows more and more chilling as it goes on.
179
+
180
+ VARIOUS AUTHORS
181
+
182
+ "The Bible"
183
+ This somewhat dull and rambling work has often been criticized. However, it
184
+ is probably worth reading, if only so that you'll know what all the fuss is
185
+ about. It exists in many different versions, so make sure you get the one
186
+ true version.
187
+
188
+ Books -- Non-fiction
189
+
190
+ PETER DE ROSA
191
+
192
+ "Vicars of Christ", Bantam Press, 1988
193
+ Although de Rosa seems to be Christian or even Catholic this is a very
194
+ enlighting history of papal immoralities, adulteries, fallacies etc.
195
+ (German translation: "Gottes erste Diener. Die dunkle Seite des Papsttums",
196
+ Droemer-Knaur, 1989)
197
+
198
+ MICHAEL MARTIN
199
+
200
+ "Atheism: A Philosophical Justification", Temple University Press,
201
+ Philadelphia, USA.
202
+ A detailed and scholarly justification of atheism. Contains an outstanding
203
+ appendix defining terminology and usage in this (necessarily) tendentious
204
+ area. Argues both for "negative atheism" (i.e. the "non-belief in the
205
+ existence of god(s)") and also for "positive atheism" ("the belief in the
206
+ non-existence of god(s)"). Includes great refutations of the most
207
+ challenging arguments for god; particular attention is paid to refuting
208
+ contempory theists such as Platinga and Swinburne.
209
+ 541 pages. ISBN 0-87722-642-3 (hardcover; paperback also available)
210
+
211
+ "The Case Against Christianity", Temple University Press
212
+ A comprehensive critique of Christianity, in which he considers
213
+ the best contemporary defences of Christianity and (ultimately)
214
+ demonstrates that they are unsupportable and/or incoherent.
215
+ 273 pages. ISBN 0-87722-767-5
216
+
217
+ JAMES TURNER
218
+
219
+ "Without God, Without Creed", The Johns Hopkins University Press, Baltimore,
220
+ MD, USA
221
+ Subtitled "The Origins of Unbelief in America". Examines the way in which
222
+ unbelief (whether agnostic or atheistic) became a mainstream alternative
223
+ world-view. Focusses on the period 1770-1900, and while considering France
224
+ and Britain the emphasis is on American, and particularly New England
225
+ developments. "Neither a religious history of secularization or atheism,
226
+ Without God, Without Creed is, rather, the intellectual history of the fate
227
+ of a single idea, the belief that God exists."
228
+ 316 pages. ISBN (hardcover) 0-8018-2494-X (paper) 0-8018-3407-4
229
+
230
+ GEORGE SELDES (Editor)
231
+
232
+ "The great thoughts", Ballantine Books, New York, USA
233
+ A "dictionary of quotations" of a different kind, concentrating on statements
234
+ and writings which, explicitly or implicitly, present the person's philosophy
235
+ and world-view. Includes obscure (and often suppressed) opinions from many
236
+ people. For some popular observations, traces the way in which various
237
+ people expressed and twisted the idea over the centuries. Quite a number of
238
+ the quotations are derived from Cardiff's "What Great Men Think of Religion"
239
+ and Noyes' "Views of Religion".
240
+ 490 pages. ISBN (paper) 0-345-29887-X.
241
+
242
+ RICHARD SWINBURNE
243
+
244
+ "The Existence of God (Revised Edition)", Clarendon Paperbacks, Oxford
245
+ This book is the second volume in a trilogy that began with "The Coherence of
246
+ Theism" (1977) and was concluded with "Faith and Reason" (1981). In this
247
+ work, Swinburne attempts to construct a series of inductive arguments for the
248
+ existence of God. His arguments, which are somewhat tendentious and rely
249
+ upon the imputation of late 20th century western Christian values and
250
+ aesthetics to a God which is supposedly as simple as can be conceived, were
251
+ decisively rejected in Mackie's "The Miracle of Theism". In the revised
252
+ edition of "The Existence of God", Swinburne includes an Appendix in which he
253
+ makes a somewhat incoherent attempt to rebut Mackie.
254
+
255
+ J. L. MACKIE
256
+
257
+ "The Miracle of Theism", Oxford
258
+ This (posthumous) volume contains a comprehensive review of the principal
259
+ arguments for and against the existence of God. It ranges from the classical
260
+ philosophical positions of Descartes, Anselm, Berkeley, Hume et al, through
261
+ the moral arguments of Newman, Kant and Sidgwick, to the recent restatements
262
+ of the classical theses by Plantinga and Swinburne. It also addresses those
263
+ positions which push the concept of God beyond the realm of the rational,
264
+ such as those of Kierkegaard, Kung and Philips, as well as "replacements for
265
+ God" such as Lelie's axiarchism. The book is a delight to read - less
266
+ formalistic and better written than Martin's works, and refreshingly direct
267
+ when compared with the hand-waving of Swinburne.
268
+
269
+ JAMES A. HAUGHT
270
+
271
+ "Holy Horrors: An Illustrated History of Religious Murder and Madness",
272
+ Prometheus Books
273
+ Looks at religious persecution from ancient times to the present day -- and
274
+ not only by Christians.
275
+ Library of Congress Catalog Card Number 89-64079. 1990.
276
+
277
+ NORM R. ALLEN, JR.
278
+
279
+ "African American Humanism: an Anthology"
280
+ See the listing for African Americans for Humanism above.
281
+
282
+ GORDON STEIN
283
+
284
+ "An Anthology of Atheism and Rationalism", Prometheus Books
285
+ An anthology covering a wide range of subjects, including 'The Devil, Evil
286
+ and Morality' and 'The History of Freethought'. Comprehensive bibliography.
287
+
288
+ EDMUND D. COHEN
289
+
290
+ "The Mind of The Bible-Believer", Prometheus Books
291
+ A study of why people become Christian fundamentalists, and what effect it
292
+ has on them.
293
+
294
+ Net Resources
295
+
296
+ There's a small mail-based archive server at mantis.co.uk which carries
297
+ archives of old alt.atheism.moderated articles and assorted other files. For
298
+ more information, send mail to archive-server@mantis.co.uk saying
299
+
300
+ help
301
+ send atheism/index
302
+
303
+ and it will mail back a reply.
304
+
305
+
306
+ mathew
307
+
data/20_newsgroups/alt.atheism/51060 ADDED
@@ -0,0 +1,663 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51060 alt.atheism.moderated:727 news.answers:7300 alt.answers:155
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!agate!netsys!ibmpcug!mantis!mathew
3
+ From: mathew <mathew@mantis.co.uk>
4
+ Newsgroups: alt.atheism,alt.atheism.moderated,news.answers,alt.answers
5
+ Subject: Alt.Atheism FAQ: Introduction to Atheism
6
+ Summary: Please read this file before posting to alt.atheism
7
+ Keywords: FAQ, atheism
8
+ Message-ID: <19930405122245@mantis.co.uk>
9
+ Date: Mon, 5 Apr 1993 12:22:45 GMT
10
+ Expires: Thu, 6 May 1993 12:22:45 GMT
11
+ Followup-To: alt.atheism
12
+ Distribution: world
13
+ Organization: Mantis Consultants, Cambridge. UK.
14
+ Approved: news-answers-request@mit.edu
15
+ Supersedes: <19930308134439@mantis.co.uk>
16
+ Lines: 646
17
+
18
+ Archive-name: atheism/introduction
19
+ Alt-atheism-archive-name: introduction
20
+ Last-modified: 5 April 1993
21
+ Version: 1.2
22
+
23
+ -----BEGIN PGP SIGNED MESSAGE-----
24
+
25
+ An Introduction to Atheism
26
+ by mathew <mathew@mantis.co.uk>
27
+
28
+ This article attempts to provide a general introduction to atheism. Whilst I
29
+ have tried to be as neutral as possible regarding contentious issues, you
30
+ should always remember that this document represents only one viewpoint. I
31
+ would encourage you to read widely and draw your own conclusions; some
32
+ relevant books are listed in a companion article.
33
+
34
+ To provide a sense of cohesion and progression, I have presented this article
35
+ as an imaginary conversation between an atheist and a theist. All the
36
+ questions asked by the imaginary theist are questions which have been cropped
37
+ up repeatedly on alt.atheism since the newsgroup was created. Some other
38
+ frequently asked questions are answered in a companion article.
39
+
40
+ Please note that this article is arguably slanted towards answering questions
41
+ posed from a Christian viewpoint. This is because the FAQ files reflect
42
+ questions which have actually been asked, and it is predominantly Christians
43
+ who proselytize on alt.atheism.
44
+
45
+ So when I talk of religion, I am talking primarily about religions such as
46
+ Christianity, Judaism and Islam, which involve some sort of superhuman divine
47
+ being. Much of the discussion will apply to other religions, but some of it
48
+ may not.
49
+
50
+ "What is atheism?"
51
+
52
+ Atheism is characterized by an absence of belief in the existence of God.
53
+ Some atheists go further, and believe that God does not exist. The former is
54
+ often referred to as the "weak atheist" position, and the latter as "strong
55
+ atheism".
56
+
57
+ It is important to note the difference between these two positions. "Weak
58
+ atheism" is simple scepticism; disbelief in the existence of God. "Strong
59
+ atheism" is a positive belief that God does not exist. Please do not
60
+ fall into the trap of assuming that all atheists are "strong atheists".
61
+
62
+ Some atheists believe in the non-existence of all Gods; others limit their
63
+ atheism to specific Gods, such as the Christian God, rather than making
64
+ flat-out denials.
65
+
66
+ "But isn't disbelieving in God the same thing as believing he doesn't exist?"
67
+
68
+ Definitely not. Disbelief in a proposition means that one does not believe
69
+ it to be true. Not believing that something is true is not equivalent to
70
+ believing that it is false; one may simply have no idea whether it is true or
71
+ not. Which brings us to agnosticism.
72
+
73
+ "What is agnosticism then?"
74
+
75
+ The term 'agnosticism' was coined by Professor Huxley at a meeting of the
76
+ Metaphysical Society in 1876. He defined an agnostic as someone who
77
+ disclaimed ("strong") atheism and believed that the ultimate origin of things
78
+ must be some cause unknown and unknowable.
79
+
80
+ Thus an agnostic is someone who believes that we do not and cannot know for
81
+ sure whether God exists.
82
+
83
+ Words are slippery things, and language is inexact. Beware of assuming that
84
+ you can work out someone's philosophical point of view simply from the fact
85
+ that she calls herself an atheist or an agnostic. For example, many people
86
+ use agnosticism to mean "weak atheism", and use the word "atheism" only when
87
+ referring to "strong atheism".
88
+
89
+ Beware also that because the word "atheist" has so many shades of meaning, it
90
+ is very difficult to generalize about atheists. About all you can say for
91
+ sure is that atheists don't believe in God. For example, it certainly isn't
92
+ the case that all atheists believe that science is the best way to find out
93
+ about the universe.
94
+
95
+ "So what is the philosophical justification or basis for atheism?"
96
+
97
+ There are many philosophical justifications for atheism. To find out why a
98
+ particular person chooses to be an atheist, it's best to ask her.
99
+
100
+ Many atheists feel that the idea of God as presented by the major religions
101
+ is essentially self-contradictory, and that it is logically impossible that
102
+ such a God could exist. Others are atheists through scepticism, because they
103
+ see no evidence that God exists.
104
+
105
+ "But isn't it impossible to prove the non-existence of something?"
106
+
107
+ There are many counter-examples to such a statement. For example, it is
108
+ quite simple to prove that there does not exist a prime number larger than
109
+ all other prime numbers. Of course, this deals with well-defined objects
110
+ obeying well-defined rules. Whether Gods or universes are similarly
111
+ well-defined is a matter for debate.
112
+
113
+ However, assuming for the moment that the existence of a God is not provably
114
+ impossible, there are still subtle reasons for assuming the non-existence of
115
+ God. If we assume that something does not exist, it is always possible to
116
+ show that this assumption is invalid by finding a single counter-example.
117
+
118
+ If on the other hand we assume that something does exist, and if the thing in
119
+ question is not provably impossible, showing that the assumption is invalid
120
+ may require an exhaustive search of all possible places where such a thing
121
+ might be found, to show that it isn't there. Such an exhaustive search is
122
+ often impractical or impossible. There is no such problem with largest
123
+ primes, because we can prove that they don't exist.
124
+
125
+ Therefore it is generally accepted that we must assume things do not exist
126
+ unless we have evidence that they do. Even theists follow this rule most of
127
+ the time; they don't believe in unicorns, even though they can't conclusively
128
+ prove that no unicorns exist anywhere.
129
+
130
+ To assume that God exists is to make an assumption which probably cannot be
131
+ tested. We cannot make an exhaustive search of everywhere God might be to
132
+ prove that he doesn't exist anywhere. So the sceptical atheist assumes by
133
+ default that God does not exist, since that is an assumption we can test.
134
+
135
+ Those who profess strong atheism usually do not claim that no sort of God
136
+ exists; instead, they generally restrict their claims so as to cover
137
+ varieties of God described by followers of various religions. So whilst it
138
+ may be impossible to prove conclusively that no God exists, it may be
139
+ possible to prove that (say) a God as described by a particular religious
140
+ book does not exist. It may even be possible to prove that no God described
141
+ by any present-day religion exists.
142
+
143
+ In practice, believing that no God described by any religion exists is very
144
+ close to believing that no God exists. However, it is sufficiently different
145
+ that counter-arguments based on the impossibility of disproving every kind of
146
+ God are not really applicable.
147
+
148
+ "But what if God is essentially non-detectable?"
149
+
150
+ If God interacts with our universe in any way, the effects of his interaction
151
+ must be measurable. Hence his interaction with our universe must be
152
+ detectable.
153
+
154
+ If God is essentially non-detectable, it must therefore be the case that he
155
+ does not interact with our universe in any way. Many atheists would argue
156
+ that if God does not interact with our universe at all, it is of no
157
+ importance whether he exists or not.
158
+
159
+ If the Bible is to be believed, God was easily detectable by the Israelites.
160
+ Surely he should still be detectable today?
161
+
162
+ Note that I am not demanding that God interact in a scientifically
163
+ verifiable, physical way. It must surely be possible to perceive some
164
+ effect caused by his presence, though; otherwise, how can I distinguish him
165
+ from all the other things that don't exist?
166
+
167
+ "OK, you may think there's a philosophical justification for atheism, but
168
+ isn't it still a religious belief?"
169
+
170
+ One of the most common pastimes in philosophical discussion is "the
171
+ redefinition game". The cynical view of this game is as follows:
172
+
173
+ Person A begins by making a contentious statement. When person B points out
174
+ that it can't be true, person A gradually re-defines the words he used in the
175
+ statement until he arrives at something person B is prepared to accept. He
176
+ then records the statement, along with the fact that person B has agreed to
177
+ it, and continues. Eventually A uses the statement as an "agreed fact", but
178
+ uses his original definitions of all the words in it rather than the obscure
179
+ redefinitions originally needed to get B to agree to it. Rather than be seen
180
+ to be apparently inconsistent, B will tend to play along.
181
+
182
+ The point of this digression is that the answer to the question "Isn't
183
+ atheism a religious belief?" depends crucially upon what is meant by
184
+ "religious". "Religion" is generally characterized by belief in a superhuman
185
+ controlling power -- especially in some sort of God -- and by faith and
186
+ worship.
187
+
188
+ [ It's worth pointing out in passing that some varieties of Buddhism are not
189
+ "religion" according to such a definition. ]
190
+
191
+ Atheism is certainly not a belief in any sort of superhuman power, nor is it
192
+ categorized by worship in any meaningful sense. Widening the definition of
193
+ "religious" to encompass atheism tends to result in many other aspects of
194
+ human behaviour suddenly becoming classed as "religious" as well -- such as
195
+ science, politics, and watching TV.
196
+
197
+ "OK, so it's not a religion. But surely belief in atheism (or science) is
198
+ still just an act of faith, like religion is?"
199
+
200
+ Firstly, it's not entirely clear that sceptical atheism is something one
201
+ actually believes in.
202
+
203
+ Secondly, it is necessary to adopt a number of core beliefs or assumptions to
204
+ make some sort of sense out of the sensory data we experience. Most atheists
205
+ try to adopt as few core beliefs as possible; and even those are subject to
206
+ questioning if experience throws them into doubt.
207
+
208
+ Science has a number of core assumptions. For example, it is generally
209
+ assumed that the laws of physics are the same for all observers. These are
210
+ the sort of core assumptions atheists make. If such basic ideas are called
211
+ "acts of faith", then almost everything we know must be said to be based on
212
+ acts of faith, and the term loses its meaning.
213
+
214
+ Faith is more often used to refer to complete, certain belief in something.
215
+ According to such a definition, atheism and science are certainly not acts of
216
+ faith. Of course, individual atheists or scientists can be as dogmatic as
217
+ religious followers when claiming that something is "certain". This is not a
218
+ general tendency, however; there are many atheists who would be reluctant to
219
+ state with certainty that the universe exists.
220
+
221
+ Faith is also used to refer to belief without supporting evidence or proof.
222
+ Sceptical atheism certainly doesn't fit that definition, as sceptical atheism
223
+ has no beliefs. Strong atheism is closer, but still doesn't really match, as
224
+ even the most dogmatic atheist will tend to refer to experimental data (or
225
+ the lack of it) when asserting that God does not exist.
226
+
227
+ "If atheism is not religious, surely it's anti-religious?"
228
+
229
+ It is an unfortunate human tendency to label everyone as either "for" or
230
+ "against", "friend" or "enemy". The truth is not so clear-cut.
231
+
232
+ Atheism is the position that runs logically counter to theism; in that sense,
233
+ it can be said to be "anti-religion". However, when religious believers
234
+ speak of atheists being "anti-religious" they usually mean that the atheists
235
+ have some sort of antipathy or hatred towards theists.
236
+
237
+ This categorization of atheists as hostile towards religion is quite unfair.
238
+ Atheist attitudes towards theists in fact cover a broad spectrum.
239
+
240
+ Most atheists take a "live and let live" attitude. Unless questioned, they
241
+ will not usually mention their atheism, except perhaps to close friends. Of
242
+ course, this may be in part because atheism is not "socially acceptable" in
243
+ many countries.
244
+
245
+ A few atheists are quite anti-religious, and may even try to "convert" others
246
+ when possible. Historically, such anti-religious atheists have made little
247
+ impact on society outside the Eastern Bloc countries.
248
+
249
+ (To digress slightly: the Soviet Union was originally dedicated to separation
250
+ of church and state, just like the USA. Soviet citizens were legally free to
251
+ worship as they wished. The institution of "state atheism" came about when
252
+ Stalin took control of the Soviet Union and tried to destroy the churches in
253
+ order to gain complete power over the population.)
254
+
255
+ Some atheists are quite vocal about their beliefs, but only where they see
256
+ religion encroaching on matters which are not its business -- for example,
257
+ the government of the USA. Such individuals are usually concerned that
258
+ church and state should remain separate.
259
+
260
+ "But if you don't allow religion to have a say in the running of the state,
261
+ surely that's the same as state atheism?"
262
+
263
+ The principle of the separation of church and state is that the state shall
264
+ not legislate concerning matters of religious belief. In particular, it
265
+ means not only that the state cannot promote one religion at the expense of
266
+ another, but also that it cannot promote any belief which is religious in
267
+ nature.
268
+
269
+ Religions can still have a say in discussion of purely secular matters. For
270
+ example, religious believers have historically been responsible for
271
+ encouraging many political reforms. Even today, many organizations
272
+ campaigning for an increase in spending on foreign aid are founded as
273
+ religious campaigns. So long as they campaign concerning secular matters,
274
+ and so long as they do not discriminate on religious grounds, most atheists
275
+ are quite happy to see them have their say.
276
+
277
+ "What about prayer in schools? If there's no God, why do you care if people
278
+ pray?"
279
+
280
+ Because people who do pray are voters and lawmakers, and tend to do things
281
+ that those who don't pray can't just ignore. Also, Christian prayer in
282
+ schools is intimidating to non-Christians, even if they are told that they
283
+ need not join in. The diversity of religious and non-religious belief means
284
+ that it is impossible to formulate a meaningful prayer that will be
285
+ acceptable to all those present at any public event.
286
+
287
+ Also, non-prayers tend to have friends and family who pray. It is reasonable
288
+ to care about friends and family wasting their time, even without other
289
+ motives.
290
+
291
+ "You mentioned Christians who campaign for increased foreign aid. What about
292
+ atheists? Why aren't there any atheist charities or hospitals? Don't
293
+ atheists object to the religious charities?"
294
+
295
+ There are many charities without religious purpose that atheists can
296
+ contribute to. Some atheists contribute to religious charities as well, for
297
+ the sake of the practical good they do. Some atheists even do voluntary work
298
+ for charities founded on a theistic basis.
299
+
300
+ Most atheists seem to feel that atheism isn't worth shouting about in
301
+ connection with charity. To them, atheism is just a simple, obvious everyday
302
+ matter, and so is charity. Many feel that it's somewhat cheap, not to say
303
+ self-righteous, to use simple charity as an excuse to plug a particular set
304
+ of religious beliefs.
305
+
306
+ To "weak" atheists, building a hospital to say "I do not believe in God" is a
307
+ rather strange idea; it's rather like holding a party to say "Today is not my
308
+ birthday". Why the fuss? Atheism is rarely evangelical.
309
+
310
+ "You said atheism isn't anti-religious. But is it perhaps a backlash against
311
+ one's upbringing, a way of rebelling?"
312
+
313
+ Perhaps it is, for some. But many people have parents who do not attempt to
314
+ force any religious (or atheist) ideas upon them, and many of those people
315
+ choose to call themselves atheists.
316
+
317
+ It's also doubtless the case that some religious people chose religion as a
318
+ backlash against an atheist upbringing, as a way of being different. On the
319
+ other hand, many people choose religion as a way of conforming to the
320
+ expectations of others.
321
+
322
+ On the whole, we can't conclude much about whether atheism or religion are
323
+ backlash or conformism; although in general, people have a tendency to go
324
+ along with a group rather than act or think independently.
325
+
326
+ "How do atheists differ from religious people?"
327
+
328
+ They don't believe in God. That's all there is to it.
329
+
330
+ Atheists may listen to heavy metal -- backwards, even -- or they may prefer a
331
+ Verdi Requiem, even if they know the words. They may wear Hawaiian shirts,
332
+ they may dress all in black, they may even wear orange robes. (Many
333
+ Buddhists lack a belief in any sort of God.) Some atheists even carry a copy
334
+ of the Bible around -- for arguing against, of course!
335
+
336
+ Whoever you are, the chances are you have met several atheists without
337
+ realising it. Atheists are usually unexceptional in behaviour and
338
+ appearance.
339
+
340
+ "Unexceptional? But aren't atheists less moral than religious people?"
341
+
342
+ That depends. If you define morality as obedience to God, then of course
343
+ atheists are less moral as they don't obey any God. But usually when one
344
+ talks of morality, one talks of what is acceptable ("right") and unacceptable
345
+ ("wrong") behaviour within society.
346
+
347
+ Humans are social animals, and to be maximally successful they must
348
+ co-operate with each other. This is a good enough reason to discourage most
349
+ atheists from "anti-social" or "immoral" behaviour, purely for the purposes
350
+ of self-preservation.
351
+
352
+ Many atheists behave in a "moral" or "compassionate" way simply because they
353
+ feel a natural tendency to empathize with other humans. So why do they care
354
+ what happens to others? They don't know, they simply are that way.
355
+
356
+ Naturally, there are some people who behave "immorally" and try to use
357
+ atheism to justify their actions. However, there are equally many people who
358
+ behave "immorally" and then try to use religious beliefs to justify their
359
+ actions. For example:
360
+
361
+ "Here is a trustworthy saying that deserves full acceptance: Jesus Christ
362
+ came into the world to save sinners... But for that very reason, I was
363
+ shown mercy so that in me... Jesus Christ might display His unlimited
364
+ patience as an example for those who would believe in him and receive
365
+ eternal life. Now to the king eternal, immortal, invisible, the only God,
366
+ be honor and glory forever and ever."
367
+
368
+ The above quote is from a statement made to the court on February 17th 1992
369
+ by Jeffrey Dahmer, the notorious cannibal serial killer of Milwaukee,
370
+ Wisconsin. It seems that for every atheist mass-murderer, there is a
371
+ religious mass-murderer. But what of more trivial morality?
372
+
373
+ A survey conducted by the Roper Organization found that behavior
374
+ deteriorated after "born again" experiences. While only 4% of respondents
375
+ said they had driven intoxicated before being "born again," 12% had done
376
+ so after conversion. Similarly, 5% had used illegal drugs before
377
+ conversion, 9% after. Two percent admitted to engaging in illicit sex
378
+ before salvation; 5% after.
379
+ ["Freethought Today", September 1991, p. 12.]
380
+
381
+ So it seems that at best, religion does not have a monopoly on moral
382
+ behaviour.
383
+
384
+ "Is there such a thing as atheist morality?"
385
+
386
+ If you mean "Is there such a thing as morality for atheists?", then the
387
+ answer is yes, as explained above. Many atheists have ideas about morality
388
+ which are at least as strong as those held by religious people.
389
+
390
+ If you mean "Does atheism have a characteristic moral code?", then the answer
391
+ is no. Atheism by itself does not imply anything much about how a person
392
+ will behave. Most atheists follow many of the same "moral rules" as theists,
393
+ but for different reasons. Atheists view morality as something created by
394
+ humans, according to the way humans feel the world 'ought' to work, rather
395
+ than seeing it as a set of rules decreed by a supernatural being.
396
+
397
+ "Then aren't atheists just theists who are denying God?"
398
+
399
+ A study by the Freedom From Religion Foundation found that over 90% of the
400
+ atheists who responded became atheists because religion did not work for
401
+ them. They had found that religious beliefs were fundamentally incompatible
402
+ with what they observed around them.
403
+
404
+ Atheists are not unbelievers through ignorance or denial; they are
405
+ unbelievers through choice. The vast majority of them have spent time
406
+ studying one or more religions, sometimes in very great depth. They have
407
+ made a careful and considered decision to reject religious beliefs.
408
+
409
+ This decision may, of course, be an inevitable consequence of that
410
+ individual's personality. For a naturally sceptical person, the choice
411
+ of atheism is often the only one that makes sense, and hence the only
412
+ choice that person can honestly make.
413
+
414
+ "But don't atheists want to believe in God?"
415
+
416
+ Atheists live their lives as though there is nobody watching over them. Many
417
+ of them have no desire to be watched over, no matter how good-natured the
418
+ "Big Brother" figure might be.
419
+
420
+ Some atheists would like to be able to believe in God -- but so what? Should
421
+ one believe things merely because one wants them to be true? The risks of
422
+ such an approach should be obvious. Atheists often decide that wanting to
423
+ believe something is not enough; there must be evidence for the belief.
424
+
425
+ "But of course atheists see no evidence for the existence of God -- they are
426
+ unwilling in their souls to see!"
427
+
428
+ Many, if not most atheists were previously religious. As has been explained
429
+ above, the vast majority have seriously considered the possibility that God
430
+ exists. Many atheists have spent time in prayer trying to reach God.
431
+
432
+ Of course, it is true that some atheists lack an open mind; but assuming that
433
+ all atheists are biased and insincere is offensive and closed-minded.
434
+ Comments such as "Of course God is there, you just aren't looking properly"
435
+ are likely to be viewed as patronizing.
436
+
437
+ Certainly, if you wish to engage in philosophical debate with atheists it is
438
+ vital that you give them the benefit of the doubt and assume that they are
439
+ being sincere if they say that they have searched for God. If you are not
440
+ willing to believe that they are basically telling the truth, debate is
441
+ futile.
442
+
443
+ "Isn't the whole of life completely pointless to an atheist?"
444
+
445
+ Many atheists live a purposeful life. They decide what they think gives
446
+ meaning to life, and they pursue those goals. They try to make their lives
447
+ count, not by wishing for eternal life, but by having an influence on other
448
+ people who will live on. For example, an atheist may dedicate his life to
449
+ political reform, in the hope of leaving his mark on history.
450
+
451
+ It is a natural human tendency to look for "meaning" or "purpose" in random
452
+ events. However, it is by no means obvious that "life" is the sort of thing
453
+ that has a "meaning".
454
+
455
+ To put it another way, not everything which looks like a question is actually
456
+ a sensible thing to ask. Some atheists believe that asking "What is the
457
+ meaning of life?" is as silly as asking "What is the meaning of a cup of
458
+ coffee?". They believe that life has no purpose or meaning, it just is.
459
+
460
+ "So how do atheists find comfort in time of danger?"
461
+
462
+ There are many ways of obtaining comfort; from family, friends, or even pets.
463
+ Or on a less spiritual level, from food or drink or TV.
464
+
465
+ That may sound rather an empty and vulnerable way to face danger, but so
466
+ what? Should individuals believe in things because they are comforting, or
467
+ should they face reality no matter how harsh it might be?
468
+
469
+ In the end, it's a decision for the individual concerned. Most atheists are
470
+ unable to believe something they would not otherwise believe merely because
471
+ it makes them feel comfortable. They put truth before comfort, and consider
472
+ that if searching for truth sometimes makes them feel unhappy, that's just
473
+ hard luck.
474
+
475
+ "Don't atheists worry that they might suddenly be shown to be wrong?"
476
+
477
+ The short answer is "No, do you?"
478
+
479
+ Many atheists have been atheists for years. They have encountered many
480
+ arguments and much supposed evidence for the existence of God, but they have
481
+ found all of it to be invalid or inconclusive.
482
+
483
+ Thousands of years of religious belief haven't resulted in any good proof of
484
+ the existence of God. Atheists therefore tend to feel that they are unlikely
485
+ to be proved wrong in the immediate future, and they stop worrying about it.
486
+
487
+ "So why should theists question their beliefs? Don't the same arguments
488
+ apply?"
489
+
490
+ No, because the beliefs being questioned are not similar. Weak atheism is
491
+ the sceptical "default position" to take; it asserts nothing. Strong atheism
492
+ is a negative belief. Theism is a very strong positive belief.
493
+
494
+ Atheists sometimes also argue that theists should question their beliefs
495
+ because of the very real harm they can cause -- not just to the believers,
496
+ but to everyone else.
497
+
498
+ "What sort of harm?"
499
+
500
+ Religion represents a huge financial and work burden on mankind. It's not
501
+ just a matter of religious believers wasting their money on church buildings;
502
+ think of all the time and effort spent building churches, praying, and so on.
503
+ Imagine how that effort could be better spent.
504
+
505
+ Many theists believe in miracle healing. There have been plenty of instances
506
+ of ill people being "healed" by a priest, ceasing to take the medicines
507
+ prescribed to them by doctors, and dying as a result. Some theists have died
508
+ because they have refused blood transfusions on religious grounds.
509
+
510
+ It is arguable that the Catholic Church's opposition to birth control -- and
511
+ condoms in particular -- is increasing the problem of overpopulation in many
512
+ third-world countries and contributing to the spread of AIDS world-wide.
513
+
514
+ Religious believers have been known to murder their children rather than
515
+ allow their children to become atheists or marry someone of a different
516
+ religion.
517
+
518
+ "Those weren't REAL believers. They just claimed to be believers as some
519
+ sort of excuse."
520
+
521
+ What makes a real believer? There are so many One True Religions it's hard
522
+ to tell. Look at Christianity: there are many competing groups, all
523
+ convinced that they are the only true Christians. Sometimes they even fight
524
+ and kill each other. How is an atheist supposed to decide who's a REAL
525
+ Christian and who isn't, when even the major Christian churches like the
526
+ Catholic Church and the Church of England can't decide amongst themselves?
527
+
528
+ In the end, most atheists take a pragmatic view, and decide that anyone who
529
+ calls himself a Christian, and uses Christian belief or dogma to justify his
530
+ actions, should be considered a Christian. Maybe some of those Christians
531
+ are just perverting Christian teaching for their own ends -- but surely if
532
+ the Bible can be so readily used to support un-Christian acts it can't be
533
+ much of a moral code? If the Bible is the word of God, why couldn't he have
534
+ made it less easy to misinterpret? And how do you know that your beliefs
535
+ aren't a perversion of what your God intended?
536
+
537
+ If there is no single unambiguous interpretation of the Bible, then why
538
+ should an atheist take one interpretation over another just on your say-so?
539
+ Sorry, but if someone claims that he believes in Jesus and that he murdered
540
+ others because Jesus and the Bible told him to do so, we must call him a
541
+ Christian.
542
+
543
+ "Obviously those extreme sorts of beliefs should be questioned. But since
544
+ nobody has ever proved that God does not exist, it must be very unlikely
545
+ that more basic religious beliefs, shared by all faiths, are nonsense."
546
+
547
+ That does not hold, because as was pointed out at the start of this dialogue,
548
+ positive assertions concerning the existence of entities are inherently much
549
+ harder to disprove than negative ones. Nobody has ever proved that unicorns
550
+ don't exist, but that doesn't make it unlikely that they are myths.
551
+
552
+ It is therefore much more valid to hold a negative assertion by default than
553
+ it is to hold a positive assertion by default. Of course, "weak" atheists
554
+ would argue that asserting nothing is better still.
555
+
556
+ "Well, if atheism's so great, why are there so many theists?"
557
+
558
+ Unfortunately, the popularity of a belief has little to do with how "correct"
559
+ it is, or whether it "works"; consider how many people believe in astrology,
560
+ graphology, and other pseudo-sciences.
561
+
562
+ Many atheists feel that it is simply a human weakness to want to believe in
563
+ gods. Certainly in many primitive human societies, religion allows the
564
+ people to deal with phenomena that they do not adequately understand.
565
+
566
+ Of course, there's more to religion than that. In the industrialized world,
567
+ we find people believing in religious explanations of phenomena even when
568
+ there are perfectly adequate natural explanations. Religion may have started
569
+ as a means of attempting to explain the world, but nowadays it serves other
570
+ purposes as well.
571
+
572
+ "But so many cultures have developed religions. Surely that must say
573
+ something?"
574
+
575
+ Not really. Most religions are only superficially similar; for example, it's
576
+ worth remembering that religions such as Buddhism and Taoism lack any sort of
577
+ concept of God in the Christian sense.
578
+
579
+ Of course, most religions are quick to denounce competing religions, so it's
580
+ rather odd to use one religion to try and justify another.
581
+
582
+ "What about all the famous scientists and philosophers who have concluded
583
+ that God exists?"
584
+
585
+ For every scientist or philosopher who believes in a god, there is one who
586
+ does not. Besides, as has already been pointed out, the truth of a belief is
587
+ not determined by how many people believe it. Also, it is important to
588
+ realize that atheists do not view famous scientists or philosophers in the
589
+ same way that theists view their religious leaders.
590
+
591
+ A famous scientist is only human; she may be an expert in some fields, but
592
+ when she talks about other matters her words carry no special weight. Many
593
+ respected scientists have made themselves look foolish by speaking on
594
+ subjects which lie outside their fields of expertise.
595
+
596
+ "So are you really saying that widespread belief in religion indicates
597
+ nothing?"
598
+
599
+ Not entirely. It certainly indicates that the religion in question has
600
+ properties which have helped it so spread so far.
601
+
602
+ The theory of memetics talks of "memes" -- sets of ideas which can propagate
603
+ themselves between human minds, by analogy with genes. Some atheists view
604
+ religions as sets of particularly successful parasitic memes, which spread by
605
+ encouraging their hosts to convert others. Some memes avoid destruction by
606
+ discouraging believers from questioning doctrine, or by using peer pressure
607
+ to keep one-time believers from admitting that they were mistaken. Some
608
+ religious memes even encourage their hosts to destroy hosts controlled by
609
+ other memes.
610
+
611
+ Of course, in the memetic view there is no particular virtue associated with
612
+ successful propagation of a meme. Religion is not a good thing because of
613
+ the number of people who believe it, any more than a disease is a good thing
614
+ because of the number of people who have caught it.
615
+
616
+ "Even if religion is not entirely true, at least it puts across important
617
+ messages. What are the fundamental messages of atheism?"
618
+
619
+ There are many important ideas atheists promote. The following are just a
620
+ few of them; don't be surprised to see ideas which are also present in some
621
+ religions.
622
+
623
+ There is more to moral behaviour than mindlessly following rules.
624
+
625
+ Be especially sceptical of positive claims.
626
+
627
+ If you want your life to have some sort of meaning, it's up to you to
628
+ find it.
629
+
630
+ Search for what is true, even if it makes you uncomfortable.
631
+
632
+ Make the most of your life, as it's probably the only one you'll have.
633
+
634
+ It's no good relying on some external power to change you; you must change
635
+ yourself.
636
+
637
+ Just because something's popular doesn't mean it's good.
638
+
639
+ If you must assume something, assume something it's easy to test.
640
+
641
+ Don't believe things just because you want them to be true.
642
+
643
+ and finally (and most importantly):
644
+
645
+ All beliefs should be open to question.
646
+
647
+ Thanks for taking the time to read this article.
648
+
649
+
650
+ mathew
651
+
652
+ -----BEGIN PGP SIGNATURE-----
653
+ Version: 2.2
654
+
655
+ iQCVAgUBK8AjRXzXN+VrOblFAQFSbwP+MHePY4g7ge8Mo5wpsivX+kHYYxMErFAO
656
+ 7ltVtMVTu66Nz6sBbPw9QkbjArbY/S2sZ9NF5htdii0R6SsEyPl0R6/9bV9okE/q
657
+ nihqnzXE8pGvLt7tlez4EoeHZjXLEFrdEyPVayT54yQqGb4HARbOEHDcrTe2atmP
658
+ q0Z4hSSPpAU=
659
+ =q2V5
660
+ -----END PGP SIGNATURE-----
661
+
662
+ For information about PGP 2.2, send mail to pgpinfo@mantis.co.uk.
663
+
data/20_newsgroups/alt.atheism/51119 ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Newsgroups: alt.atheism
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!usc!sdd.hp.com!nigel.msen.com!yale.edu!ira.uka.de!news.dfn.de!tubsibr!dbstu1.rz.tu-bs.de!I3150101
3
+ From: I3150101@dbstu1.rz.tu-bs.de (Benedikt Rosenau)
4
+ Subject: Re: Gospel Dating
5
+ Message-ID: <16BA711B3A.I3150101@dbstu1.rz.tu-bs.de>
6
+ Sender: postnntp@ibr.cs.tu-bs.de (Mr. Nntp Inews Entry)
7
+ Organization: Technical University Braunschweig, Germany
8
+ References: <16BA1E197.I3150101@dbstu1.rz.tu-bs.de> <65974@mimsy.umd.edu>
9
+ Date: Mon, 5 Apr 1993 19:08:25 GMT
10
+ Lines: 93
11
+
12
+ In article <65974@mimsy.umd.edu>
13
+ mangoe@cs.umd.edu (Charley Wingate) writes:
14
+
15
+ >>Well, John has a quite different, not necessarily more elaborated theology.
16
+ >>There is some evidence that he must have known Luke, and that the content
17
+ >>of Q was known to him, but not in a 'canonized' form.
18
+ >
19
+ >This is a new argument to me. Could you elaborate a little?
20
+ >
21
+
22
+ The argument goes as follows: Q-oid quotes appear in John, but not in
23
+ the almost codified way they were in Matthew or Luke. However, they are
24
+ considered to be similar enough to point to knowledge of Q as such, and
25
+ not an entirely different source.
26
+
27
+
28
+ >>Assuming that he knew Luke would obviously put him after Luke, and would
29
+ >>give evidence for the latter assumption.
30
+ >
31
+ >I don't think this follows. If you take the most traditional attributions,
32
+ >then Luke might have known John, but John is an elder figure in either case.
33
+ >We're talking spans of time here which are well within the range of
34
+ >lifetimes.
35
+
36
+ We are talking date of texts here, not the age of the authors. The usual
37
+ explanation for the time order of Mark, Matthew and Luke does not consider
38
+ their respective ages. It says Matthew has read the text of Mark, and Luke
39
+ that of Matthew (and probably that of Mark).
40
+
41
+ As it is assumed that John knew the content of Luke's text. The evidence
42
+ for that is not overwhelming, admittedly.
43
+
44
+
45
+ >>>(1) Earlier manuscripts of John have been discovered.
46
+ >
47
+ >>Interesting, where and which? How are they dated? How old are they?
48
+ >
49
+ >Unfortunately, I haven't got the info at hand. It was (I think) in the late
50
+ >'70s or early '80s, and it was possibly as old as CE 200.
51
+ >
52
+
53
+ When they are from about 200, why do they shed doubt on the order on
54
+ putting John after the rest of the three?
55
+
56
+
57
+ >>I don't see your point, it is exactly what James Felder said. They had no
58
+ >>first hand knowledge of the events, and it obvious that at least two of them
59
+ >>used older texts as the base of their account. And even the association of
60
+ >>Luke to Paul or Mark to Peter are not generally accepted.
61
+ >
62
+ >Well, a genuine letter of Peter would be close enough, wouldn't it?
63
+ >
64
+
65
+ Sure, an original together with Id card of sender and receiver would be
66
+ fine. So what's that supposed to say? Am I missing something?
67
+
68
+
69
+ >And I don't think a "one step removed" source is that bad. If Luke and Mark
70
+ >and Matthew learned their stories directly from diciples, then I really
71
+ >cannot believe in the sort of "big transformation from Jesus to gospel" that
72
+ >some people posit. In news reports, one generally gets no better
73
+ >information than this.
74
+ >
75
+ >And if John IS a diciple, then there's nothing more to be said.
76
+ >
77
+
78
+ That John was a disciple is not generally accepted. The style and language
79
+ together with the theology are usually used as counterargument.
80
+
81
+ The argument that John was a disciple relies on the claim in the gospel
82
+ of John itself. Is there any other evidence for it?
83
+
84
+ One step and one generation removed is bad even in our times. Compare that
85
+ to reports of similar events in our century in almost illiterate societies.
86
+ Not even to speak off that believers are not necessarily the best sources.
87
+
88
+
89
+ >>It is also obvious that Mark has been edited. How old are the oldest
90
+ >>manuscripts? To my knowledge (which can be antiquated) the oldest is
91
+ >>quite after any of these estimates, and it is not even complete.
92
+ >
93
+ >The only clear "editing" is problem of the ending, and it's basically a
94
+ >hopeless mess. The oldest versions give a strong sense of incompleteness,
95
+ >to the point where the shortest versions seem to break off in midsentence.
96
+ >The most obvious solution is that at some point part of the text was lost.
97
+ >The material from verse 9 on is pretty clearly later and seems to represent
98
+ >a synopsys of the end of Luke.
99
+ >
100
+ In other words, one does not know what the original of Mark did look like
101
+ and arguments based on Mark are pretty weak.
102
+
103
+ But how is that connected to a redating of John?
104
+ Benedikt
data/20_newsgroups/alt.atheism/51120 ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51120 alt.politics.usa.constitution:1934
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!uunet!pipex!ibmpcug!mantis!news
3
+ From: mathew <mathew@mantis.co.uk>
4
+ Newsgroups: alt.atheism,alt.politics.usa.constitution
5
+ Subject: Re: university violating separation of church/state?
6
+ Message-ID: <930405.175842.5d8.rusnews.w165w@mantis.co.uk>
7
+ Date: Mon, 5 Apr 1993 17:58:42 GMT
8
+ References: <199304041750.AA17104@kepler.unh.edu>
9
+ Organization: Mantis Consultants, Cambridge. UK.
10
+ X-Newsreader: rusnews v1.01
11
+ Lines: 29
12
+
13
+ dmn@kepler.unh.edu (...until kings become philosophers or philosophers become kings) writes:
14
+ > Recently, RAs have been ordered (and none have resisted or cared about
15
+ > it apparently) to post a religious flyer entitled _The Soul Scroll: Thoughts
16
+ > on religion, spirituality, and matters of the soul_ on the inside of bathroom
17
+ > stall doors. (at my school, the University of New Hampshire) It is some sort
18
+ > of newsletter assembled by a Hall Director somewhere on campus. It poses a
19
+ > question about 'spirituality' each issue, and solicits responses to be
20
+ > included in the next 'issue.' It's all pretty vague. I assume it's put out
21
+ > by a Christian, but they're very careful not to mention Jesus or the bible.
22
+ > I've heard someone defend it, saying "Well it doesn't support any one religion.
23
+ > " So what??? This is a STATE university, and as a strong supporter of the
24
+ > separation of church and state, I was enraged.
25
+ >
26
+ > What can I do about this?
27
+
28
+ It sounds to me like it's just SCREAMING OUT for parody. Give a copy to your
29
+ friendly neighbourhood SubGenius preacher; with luck, he'll run it through the
30
+ mental mincer and hand you back an outrageously offensive and gut-bustingly
31
+ funny parody you can paste over the originals.
32
+
33
+ I can see it now:
34
+
35
+ The Stool Scroll
36
+ Thoughts on Religion, Spirituality, and Matters of the Colon
37
+
38
+ (You can use this text to wipe)
39
+
40
+
41
+ mathew
data/20_newsgroups/alt.atheism/51121 ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51121 soc.motss:139944 rec.scouting:5318
2
+ Newsgroups: alt.atheism,soc.motss,rec.scouting
3
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!uunet!newsgate.watson.ibm.com!yktnews.watson.ibm.com!watson!Watson.Ibm.Com!strom
4
+ From: strom@Watson.Ibm.Com (Rob Strom)
5
+ Subject: Re: [soc.motss, et al.] "Princeton axes matching funds for Boy Scouts"
6
+ Sender: @watson.ibm.com
7
+ Message-ID: <1993Apr05.180116.43346@watson.ibm.com>
8
+ Date: Mon, 05 Apr 93 18:01:16 GMT
9
+ Distribution: usa
10
+ References: <C47EFs.3q47@austin.ibm.com> <1993Mar22.033150.17345@cbnewsl.cb.att.com> <N4HY.93Apr5120934@harder.ccr-p.ida.org>
11
+ Organization: IBM Research
12
+ Lines: 15
13
+
14
+ In article <N4HY.93Apr5120934@harder.ccr-p.ida.org>, n4hy@harder.ccr-p.ida.org (Bob McGwier) writes:
15
+
16
+ |> [1] HOWEVER, I hate economic terrorism and political correctness
17
+ |> worse than I hate this policy.
18
+
19
+
20
+ |> [2] A more effective approach is to stop donating
21
+ |> to ANY organizating that directly or indirectly supports gay rights issues
22
+ |> until they end the boycott on funding of scouts.
23
+
24
+ Can somebody reconcile the apparent contradiction between [1] and [2]?
25
+
26
+ --
27
+ Rob Strom, strom@watson.ibm.com, (914) 784-7641
28
+ IBM Research, 30 Saw Mill River Road, P.O. Box 704, Yorktown Heights, NY 10598
data/20_newsgroups/alt.atheism/51122 ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Newsgroups: alt.atheism
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!usc!sdd.hp.com!nigel.msen.com!yale.edu!ira.uka.de!news.dfn.de!tubsibr!dbstu1.rz.tu-bs.de!I3150101
3
+ From: I3150101@dbstu1.rz.tu-bs.de (Benedikt Rosenau)
4
+ Subject: Re: A visit from the Jehovah's Witnesses
5
+ Message-ID: <16BA711EF4.I3150101@dbstu1.rz.tu-bs.de>
6
+ Sender: postnntp@ibr.cs.tu-bs.de (Mr. Nntp Inews Entry)
7
+ Organization: Technical University Braunschweig, Germany
8
+ References: <bskendigC4KD1z.CDC@netcom.com> <1p8v1aINN9e9@matt.ksu.ksu.edu> <16BA5DA01.I3150101@dbstu1.rz.tu-bs.de> <1993Apr5.091139.823@batman.bmd.trw.com>
9
+ Date: Mon, 5 Apr 1993 19:24:19 GMT
10
+ Lines: 114
11
+
12
+ In article <1993Apr5.091139.823@batman.bmd.trw.com>
13
+ jbrown@batman.bmd.trw.com writes:
14
+
15
+ >> Didn't you say Lucifer was created with a perfect nature?
16
+ >
17
+ >Yes.
18
+ >
19
+
20
+ Define perfect then.
21
+
22
+
23
+ >> I think you
24
+ >> are playing the usual game here, make sweeping statements like omni-,
25
+ >> holy, or perfect, and don't note that they mean exactly what they say.
26
+ >> And that says that you must not use this terms when it leads to
27
+ >> contradictions.
28
+ >
29
+ >I'm not trying to play games here. But I understand how it might seem
30
+ >that way especially when one is coming from a completely different point
31
+ >of view such as atheism.
32
+ >
33
+
34
+ Take your foot out of your mouth, I wondered about that already when I
35
+ was a Catholic Christian. The fact that the contradiction is unresolvable
36
+ is one of the reasons why I am an atheist.
37
+
38
+ Believe me, I believed similar sentences for a long time. But that shows
39
+ the power of religion and not anything about its claims.
40
+
41
+
42
+ >>>Now God could have prevented Lucifer's fall by taking away his ability
43
+ >>>to choose between moral alternatives (worship God or worship himself),
44
+ >>>but that would mean that God was in error to have make Lucifer or any
45
+ >>>being with free will in the first place.
46
+ >>
47
+ >> Exactly. God allows evil, an evil if there ever was one.
48
+ >>
49
+ >
50
+ >Now that's an opinion, or at best a premise. But from my point of view,
51
+ >it is not a premise which is necessary true, specifically, that it is
52
+ >an evil to allow evil to occur.
53
+ >
54
+
55
+ It follows from a definition of evil as ordinarily used. Letting evil
56
+ happen or allowing evil to take place, in this place even causing evil,
57
+ is another evil.
58
+
59
+
60
+ >> But could you give a definition of free will? Especially in the
61
+ >> presence of an omniscient being?
62
+ >>
63
+ >"Will" is "self-determination". In other words, God created conscious
64
+ >beings who have the ability to choose between moral choices independently
65
+ >of God. All "will", therefore, is "free will".
66
+ >
67
+
68
+ The omniscient attribute of god will know what the creatures will do even
69
+ before the omnipotent has created them. There is no choice left. All is known,
70
+ the course of events is fixed.
71
+
72
+ Not even for the omniscient itself, to extend an argument by James Tims.
73
+
74
+
75
+ >>>If God is omniscient, then
76
+ >>>clearly, creating beings with free moral choice is a greater good than
77
+ >>>the emergence of ungodliness (evil/sin) since He created them knowing
78
+ >>>the outcome in advance.
79
+ >>
80
+ >> Why is it the greater good to allow evil with the knowledge that it
81
+ >> will happen? Why not make a unipolar system with the possibility of
82
+ >> doing good or not doing good, but that does not necessarily imply
83
+ >> doing evil. It is logically possible, but your god has not done it.
84
+ >
85
+ >I do not know that such is logically possible. If God restrains a
86
+ >free being's choice to choose to do evil and simply do "not good",
87
+ >then can it be said that the being truly has a free moral choice?
88
+ >And if "good" is defined as loving and obeying God, and avoiding
89
+ >those behaviors which God prohibits, then how can you say that one
90
+ >who is "not good" is not evil as well? Like I said, I am not sure
91
+ >that doing "not good" without doing evil is logically possible.
92
+
93
+ And when I am not omnipotent, how can I have free will? You have said
94
+ something about choices and the scenario gives them. Therefore we have
95
+ what you define as free will.
96
+
97
+ Imagine the following. I can do good to other beings, but I cannot harm them.
98
+ Easily implemented by making everyone appreciate being the object of good
99
+ deeds, but don't make them long for them, so they can not feel the absence
100
+ of good as evil.
101
+
102
+ But whose case am I arguing? It is conceivable, so the omnipotent can do it.
103
+ Or it would not be omnipotent. If you want logically consistent as well, you
104
+ have to give up the pet idea of an omnipotent first.
105
+
106
+ (Deletion)
107
+ >
108
+ >Perhaps it is weak, in a way. If I were just speculating about the
109
+ >ubiquitous pink unicorns, then there would be no basis for such
110
+ >speculation. But this idea of God didn't just fall on me out of the
111
+ >blue :), or while reading science fiction or fantasy. (I know that
112
+ >some will disagree) :) The Bible describes a God who is omniscient,
113
+ >and nevertheless created beings with free moral choice, from which
114
+ >the definitional logic follows. But that's not all there is to it.
115
+ >There seems to be (at least in my mind) a certain amount of evidence
116
+ >which indicates that God exists and that the Biblical description
117
+ >of Him may be a fair one. It is that evidence which bolsters the
118
+ >argument in my view.
119
+
120
+ That the bible describes an omniscient and omnipotent god destroys
121
+ the credibility of the bible, nothing less.
122
+
123
+ And a lot of people would be interested in evidence for a god,
124
+ unfortunately, there can't be any with these definitions.
125
+ Benedikt
data/20_newsgroups/alt.atheism/51123 ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: Political Atheists?
5
+ Message-ID: <1pi2qlINNoeh@gap.caltech.edu>
6
+ Date: 2 Apr 93 19:05:57 GMT
7
+ References: <1p39fgINN8f8@gap.caltech.edu> <1p8s7dINNfg1@gap.caltech.edu> <1993Mar30.205434.26115@blaze.cs.jhu.edu> <1pcol6INNq2s@gap.caltech.edu> <1993Mar31.195807.5467@blaze.cs.jhu.edu>
8
+ Organization: California Institute of Technology, Pasadena
9
+ Lines: 11
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ arromdee@jyusenkyou.cs.jhu.edu (Ken Arromdee) writes:
13
+
14
+ >>The motto originated in the Star-Spangled Banner. Tell me that this has
15
+ >>something to do with atheists.
16
+ >The motto _on_coins_ originated as a McCarthyite smear which equated atheism
17
+ >with Communism and called both unamerican.
18
+
19
+ No it didn't. The motto has been on various coins since the Civil War.
20
+ It was just required to be on *all* currency in the 50's.
21
+
22
+ keith
data/20_newsgroups/alt.atheism/51124 ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Newsgroups: alt.atheism
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!sol.ctr.columbia.edu!ira.uka.de!news.dfn.de!tubsibr!dbstu1.rz.tu-bs.de!I3150101
3
+ From: I3150101@dbstu1.rz.tu-bs.de (Benedikt Rosenau)
4
+ Subject: Re: An Anecdote about Islam
5
+ Message-ID: <16BA7123EF.I3150101@dbstu1.rz.tu-bs.de>
6
+ Sender: postnntp@ibr.cs.tu-bs.de (Mr. Nntp Inews Entry)
7
+ Organization: Technical University Braunschweig, Germany
8
+ References: <1pd5nr$89r@s1.gov> <113689@bu.edu> <16BA4AB7F.I3150101@dbstu1.rz.tu-bs.de> <114127@bu.edu>
9
+ Date: Mon, 5 Apr 1993 19:45:34 GMT
10
+ Lines: 28
11
+
12
+ In article <114127@bu.edu>
13
+ jaeger@buphy.bu.edu (Gregg Jaeger) writes:
14
+
15
+ >>When they are victimized they are Muslims. When they victimize others
16
+ >>they are not True Muslims (tm) or no Muslims at all.
17
+ >
18
+ >>Quite annoying.
19
+ >
20
+ >I don't understand the point of this petty sarcasm. It is a basic
21
+ >principle of Islam that if one is born muslim or one says "I testify
22
+ >that there is no god but God and Mohammad is a prophet of God" that,
23
+ >so long as one does not explicitly reject Islam by word then one _must_
24
+ >be considered muslim by all muslims. So the phenomenon you're attempting
25
+ >to make into a general rule or psychology is a direct odds with basic
26
+ >Islamic principles. If you want to attack Islam you could do better than
27
+ >than to argue against something that Islam explicitly contradicts.
28
+ >
29
+
30
+ It was no criticism of Islam for a change, it was a criticism of the
31
+ arguments used. Namely, whenever people you identify as Muslims are
32
+ the victims of the attacks of others, they are used an argument for
33
+ the bad situation of Muslims. But whenever deeds by Muslim that victimize
34
+ others are named, they do not count as an argument because what these
35
+ people did was not done as a true Muslims. No mention is made how Muslims
36
+ are the cause of a bad situation of another party.
37
+
38
+ Double standards.
39
+ Benedikt
data/20_newsgroups/alt.atheism/51125 ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!zaphod.mps.ohio-state.edu!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: <Political Atheists?
5
+ Date: 2 Apr 1993 20:43:17 GMT
6
+ Organization: California Institute of Technology, Pasadena
7
+ Lines: 54
8
+ Message-ID: <1pi8h5INNq40@gap.caltech.edu>
9
+ References: <1psrjmINNr9e@gap.caltech.edu> <1pdbej$hio@fido.asd.sgi.com>
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ (reference line trimmed)
13
+
14
+ livesey@solntze.wpd.sgi.com (Jon Livesey) writes:
15
+
16
+ [...]
17
+
18
+ >There is a good deal more confusion here. You started off with the
19
+ >assertion that there was some "objective" morality, and as you admit
20
+ >here, you finished up with a recursive definition. Murder is
21
+ >"objectively" immoral, but eactly what is murder and what is not itself
22
+ >requires an appeal to morality.
23
+
24
+ Yes.
25
+
26
+ >Now you have switch targets a little, but only a little. Now you are
27
+ >asking what is the "goal"? What do you mean by "goal?". Are you
28
+ >suggesting that there is some "objective" "goal" out there somewhere,
29
+ >and we form our morals to achieve it?
30
+
31
+ Well, for example, the goal of "natural" morality is the survival and
32
+ propogation of the species. Another example of a moral system is
33
+ presented within the Declaration of Independence, which states that we
34
+ should be guaranteed life liberty and the pursuit of happiness. You see,
35
+ to have a moral system, we must define the purpose of the system. That is,
36
+ we shall be moral unto what end?
37
+
38
+ >>Murder is certainly a violation of the golden rule. And, I thought I had
39
+ >>defined murder as an intentional killing of a non-murderer, against his will.
40
+ >>And you responded to this by asking whether or not the execution of an
41
+ >>innocent person under our system of capital punishment was a murder or not.
42
+ >>I fail to see what this has to do with anything. I never claimed that our
43
+ >>system of morality was an objective one.
44
+ >I thought that was your very first claim. That there was
45
+ >some kind of "objective" morality, and that an example of that was
46
+ >that murder is wrong. If you don't want to claim that any more,
47
+ >that's fine.
48
+
49
+ Well, murder violates the golen rule, which is certainly a pillar of most
50
+ every moral system. However, I am not assuming that our current system
51
+ and the manner of its implementation are objectively moral. I think that
52
+ it is a very good approximation, but we can't be perfect.
53
+
54
+ >And by the way, you don't seem to understand the difference between
55
+ >"arbitrary" and "objective". If Keith Schneider "defines" murder
56
+ >to be this that and the other, that's arbitrary. Jon Livesey may
57
+ >still say "Well, according to my personal system of morality, all
58
+ >killing of humans against their will is murder, and wrong, and what
59
+ >the legal definition of murder may be in the USA, Kuweit, Saudi
60
+ >Arabia, or the PRC may be matters not a whit to me".
61
+
62
+ Well, "objective" would assume a system based on clear and fundamental
63
+ concepts, while "arbitary" implies no clear line of reasoning.
64
+
65
+ keith
data/20_newsgroups/alt.atheism/51126 ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!news.centerline.com!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: >>>>>>Pompous ass
5
+ Message-ID: <1pi9btINNqa5@gap.caltech.edu>
6
+ Date: 2 Apr 93 20:57:33 GMT
7
+ References: <1ou4koINNe67@gap.caltech.edu> <1p72bkINNjt7@gap.caltech.edu> <93089.050046MVS104@psuvm.psu.edu> <1pa6ntINNs5d@gap.caltech.edu> <1993Mar30.210423.1302@bmerh85.bnr.ca> <1pcnqjINNpon@gap.caltech.edu> <kmr4.1344.733611641@po.CWRU.edu>
8
+ Organization: California Institute of Technology, Pasadena
9
+ Lines: 9
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ kmr4@po.CWRU.edu (Keith M. Ryan) writes:
13
+
14
+ >>Then why do people keep asking the same questions over and over?
15
+ >Because you rarely ever answer them.
16
+
17
+ Nope, I've answered each question posed, and most were answered multiple
18
+ times.
19
+
20
+ keith
data/20_newsgroups/alt.atheism/51127 ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!news.centerline.com!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: >>>>>>Pompous ass
5
+ Message-ID: <1pi9jkINNqe2@gap.caltech.edu>
6
+ Date: 2 Apr 93 21:01:40 GMT
7
+ References: <1ou4koINNe67@gap.caltech.edu> <1p72bkINNjt7@gap.caltech.edu> <93089.050046MVS104@psuvm.psu.edu> <1pa6ntINNs5d@gap.caltech.edu> <1993Mar30.205919.26390@blaze.cs.jhu.edu> <1pcnp3INNpom@gap.caltech.edu> <1pdjip$jsi@fido.asd.sgi.com>
8
+ Organization: California Institute of Technology, Pasadena
9
+ Lines: 14
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ livesey@solntze.wpd.sgi.com (Jon Livesey) writes:
13
+
14
+ >>>How long does it [the motto] have to stay around before it becomes the
15
+ >>>default? ... Where's the cutoff point?
16
+ >>I don't know where the exact cutoff is, but it is at least after a few
17
+ >>years, and surely after 40 years.
18
+ >Why does the notion of default not take into account changes
19
+ >in population makeup?
20
+
21
+ Specifically, which changes are you talking about? Are you arguing
22
+ that the motto is interpreted as offensive by a larger portion of the
23
+ population now than 40 years ago?
24
+
25
+ keith
data/20_newsgroups/alt.atheism/51128 ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!news.centerline.com!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: Keith Schneider - Stealth Poster?
5
+ Message-ID: <1pia4eINNqjg@gap.caltech.edu>
6
+ Date: 2 Apr 93 21:10:38 GMT
7
+ References: <mam.03kh@mouse.cmhnet.org> <1p6s0cINNhg6@gap.caltech.edu> <1993Mar29.195958.13915@blaze.cs.jhu.edu> <1p8rajINNf3n@gap.caltech.edu> <1993Mar30.184909.20567@blaze.cs.jhu.edu> <1pcrriINNrd6@gap.caltech.edu> <sandvik-310393173357@sandvik-kent.apple.com>
8
+ Organization: California Institute of Technology, Pasadena
9
+ Lines: 12
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ sandvik@newton.apple.com (Kent Sandvik) writes:
13
+
14
+ >>To borrow from philosophy, you don't truly understand the color red
15
+ >>until you have seen it.
16
+ >Not true, even if you have experienced the color red you still might
17
+ >have a different interpretation of it.
18
+
19
+ But, you wouldn't know what red *was*, and you certainly couldn't judge
20
+ it subjectively. And, objectivity is not applicable, since you are wanting
21
+ to discuss the merits of red.
22
+
23
+ keith
data/20_newsgroups/alt.atheism/51129 ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51129 talk.religion.misc:82761 talk.origins:40400
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!news.centerline.com!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
3
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
4
+ Newsgroups: alt.atheism,talk.religion.misc,talk.origins
5
+ Subject: Re: Albert Sabin
6
+ Message-ID: <1pi966INNq93@gap.caltech.edu>
7
+ Date: 2 Apr 93 20:54:30 GMT
8
+ References: <1993Mar19.175329.21327@rambo.atlanta.dg.com> <C4BA1q.4pE@usenet.ucs.indiana.edu> <1993Mar25.225025.16037@rambo.atlanta.dg.com> <C4ICzs.6F@usenet.ucs.indiana.edu> <1993Mar31.234354.11694@rambo.atlanta.dg.com>
9
+ Organization: California Institute of Technology, Pasadena
10
+ Lines: 19
11
+ NNTP-Posting-Host: punisher.caltech.edu
12
+
13
+ wpr@atlanta.dg.com (Bill Rawlins) writes:
14
+
15
+ >>[...] it is patently untrue (as has been demonstrated ad
16
+ >>nauseum) that the complexity of life is a contradiction of the second
17
+ >>law.
18
+ >My point is that order does not come from disorder.
19
+
20
+ It does not... or it can not? When you freze water, you've created an
21
+ ordered crystal from a disordered liquid. Overall, the entropy is
22
+ increased, but locally order is increased.
23
+
24
+ >... the creation od DNA by random processes is incalculably remote.
25
+
26
+ And, you find the idea of a god more likely?
27
+
28
+ Besides, we can apply the anthropic principle to circumvent any
29
+ probablilty problems.
30
+
31
+ keith
data/20_newsgroups/alt.atheism/51130 ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!news.centerline.com!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: Keith Schneider - Stealth Poster?
5
+ Message-ID: <1pi9uoINNqfv@gap.caltech.edu>
6
+ Date: 2 Apr 93 21:07:36 GMT
7
+ References: <mam.03kh@mouse.cmhnet.org> <1p8rajINNf3n@gap.caltech.edu> <1993Mar30.184909.20567@blaze.cs.jhu.edu> <1pcrriINNrd6@gap.caltech.edu> <1993Mar31.224831.13186@blaze.cs.jhu.edu>
8
+ Organization: California Institute of Technology, Pasadena
9
+ Lines: 25
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ arromdee@jyusenkyou.cs.jhu.edu (Ken Arromdee) writes:
13
+
14
+ >>But, if you were to discuss the merits of racism, or its psycholgical
15
+ >>benefits, you would do well to have experienced it personally.
16
+ >When you speak of "experiencing religion" you mean someone should believe in
17
+ >a religion.
18
+
19
+ That's right, and this is pretty impossible, right? It would be ideal if
20
+ we could believe for a while, just to try out religion, and only then
21
+ determine which course of thought suits us best. But again, this is not
22
+ possible. Not that religion warrants belief, but the belief carries with
23
+ it some psychological benefits. There are also some psychological
24
+ burdens, too.
25
+
26
+ >When you speak of "experiencing racism", do you mean that someone should
27
+ >believe in racism, or that they should have racist things done to them? For
28
+ >parallelism, the former must be what you meant, but it seems to be an odd
29
+ >usage of the phrase.
30
+
31
+ Well, if there were some psychological or other benefits gained from racism,
32
+ they could only be fully understood or judged by persons actually "believing"
33
+ in racism. Of course, the parallel happens to be a poor one, but you
34
+ originated it.
35
+
36
+ keith
data/20_newsgroups/alt.atheism/51131 ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!sdd.hp.com!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: <Political Atheists?
5
+ Date: 2 Apr 1993 21:22:59 GMT
6
+ Organization: California Institute of Technology, Pasadena
7
+ Lines: 44
8
+ Message-ID: <1piarjINNqsa@gap.caltech.edu>
9
+ References: <1p9bseINNi6o@gap.caltech.edu> <1pamva$b6j@fido.asd.sgi.com> <1pcq4pINNqp1@gap.caltech.edu> <11702@vice.ICO.TEK.COM>
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ bobbe@vice.ICO.TEK.COM (Robert Beauchaine) writes:
13
+
14
+ >>But, you don't know that capital punishment is wrong, so it isn't the same
15
+ >>as shooting. A better analogy would be that you continue to drive your car,
16
+ >>realizing that sooner or later, someone is going to be killed in an automobile
17
+ >>accident. You *know* people get killed as a result of driving, yet you
18
+ >>continue to do it anyway.
19
+ >Uh uh. You do not know that you will be the one to do the
20
+ >killing. I'm not sure I'd drive a car if I had sufficient evidence to
21
+ >conclude that I would necessarily kill someone during my lifetime.
22
+
23
+ Yes, and everyone thinks as you do. No one thinks that he is going to cause
24
+ or be involved in a fatal accident, but the likelihood is surprisingly high.
25
+ Just because you are the man on the firing squad whose gun is shooting
26
+ blanks does not mean that you are less guilty.
27
+
28
+ >I don't know about Jon, but I say *ALL* taking of human life is
29
+ >murder. And I say murder is wrong in all but one situation: when
30
+ >it is the only action that will prevent another murder, either of
31
+ >myself or another.
32
+
33
+ You mean that killing is wrong in all but one situtation? And, you should
34
+ note that that situation will never occur. There are always other options
35
+ thank killing. Why don't you just say that all killing is wrong. This
36
+ is basically what you are saying.
37
+
38
+ >I'm getting a bit tired of your probabilistic arguments.
39
+
40
+ Are you attempting to be condescending?
41
+
42
+ >That the system usually works pretty well is small consolation to
43
+ >the poor innocent bastard getting the lethal injection. Is your
44
+ >personal value of human life based solely on a statistical approach?
45
+ >You sound like an unswerving adherent to the needs of the many
46
+ >outweighing the needs of the few, so fuck the few.
47
+
48
+ But, most people have found the risk to be acceptable. You are probably
49
+ much more likely to die in a plane crash, or even using an electric
50
+ blender, than you are to be executed as an innocent. I personally think
51
+ that the risk is acceptable, but in an ideal moral system, no such risk
52
+ is acceptable. "Acceptable" is the fudge factor necessary in such an
53
+ approximation to the ideal.
54
+
55
+ keith
data/20_newsgroups/alt.atheism/51132 ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!noc.near.net!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: <Political Atheists?
5
+ Message-ID: <1pibj5INNr4t@gap.caltech.edu>
6
+ Date: 2 Apr 93 21:35:33 GMT
7
+ References: <1pa0stINNpqa@gap.caltech.edu> <1pan4f$b6j@fido.asd.sgi.com> <1pcqf3INNqt7@gap.caltech.edu> <11703@vice.ICO.TEK.COM>
8
+ Organization: California Institute of Technology, Pasadena
9
+ Lines: 50
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ bobbe@vice.ICO.TEK.COM (Robert Beauchaine) writes:
13
+
14
+ >>I think that about 70% (or so) people approve of the
15
+ >>death penalty, even realizing all of its shortcomings. Doesn't this make
16
+ >>it reasonable? Or are *you* the sole judge of reasonability?
17
+ >Aside from revenge, what merits do you find in capital punishment?
18
+
19
+ Are we talking about me, or the majority of the people that support it?
20
+ Anyway, I think that "revenge" or "fairness" is why most people are in
21
+ favor of the punishment. If a murderer is going to be punished, people
22
+ that think that he should "get what he deserves." Most people wouldn't
23
+ think it would be fair for the murderer to live, while his victim died.
24
+
25
+ >Revenge? Petty and pathetic.
26
+
27
+ Perhaps you think that it is petty and pathetic, but your views are in the
28
+ minority.
29
+
30
+ >We have a local televised hot topic talk show that very recently
31
+ >did a segment on capital punishment. Each and every advocate of
32
+ >the use of this portion of our system of "jurisprudence" cited the
33
+ >main reason for supporting it: "That bastard deserved it". True
34
+ >human compassion, forgiveness, and sympathy.
35
+
36
+ Where are we required to have compassion, forgiveness, and sympathy? If
37
+ someone wrongs me, I will take great lengths to make sure that his advantage
38
+ is removed, or a similar situation is forced upon him. If someone kills
39
+ another, then we can apply the golden rule and kill this person in turn.
40
+ Is not our entire moral system based on such a concept?
41
+
42
+ Or, are you stating that human life is sacred, somehow, and that it should
43
+ never be violated? This would sound like some sort of religious view.
44
+
45
+ >>I mean, how reasonable is imprisonment, really, when you think about it?
46
+ >>Sure, the person could be released if found innocent, but you still
47
+ >>can't undo the imiprisonment that was served. Perhaps we shouldn't
48
+ >>imprision people if we could watch them closely instead. The cost would
49
+ >>probably be similar, especially if we just implanted some sort of
50
+ >>electronic device.
51
+ >Would you rather be alive in prison or dead in the chair?
52
+
53
+ Once a criminal has committed a murder, his desires are irrelevant.
54
+
55
+ And, you still have not answered my question. If you are concerned about
56
+ the death penalty due to the possibility of the execution of an innocent,
57
+ then why isn't this same concern shared with imprisonment. Shouldn't we,
58
+ by your logic, administer as minimum as punishment as possible, to avoid
59
+ violating the liberty or happiness of an innocent person?
60
+
61
+ keith
data/20_newsgroups/alt.atheism/51133 ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!zaphod.mps.ohio-state.edu!cs.utexas.edu!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: Political Atheists?
5
+ Message-ID: <1pibspINNr6j@gap.caltech.edu>
6
+ Date: 2 Apr 93 21:40:41 GMT
7
+ References: <16B9510654.I3150101@dbstu1.rz.tu-bs.de> <1odn7pINN9nb@gap.caOrganization <1pcrjmINNr9e@gap.caltech.edu> <11704@vice.ICO.TEK.COM>
8
+ Organization: California Institute of Technology, Pasadena
9
+ Lines: 26
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ bobbe@vice.ICO.TEK.COM (Robert Beauchaine) writes:
13
+
14
+ >>If I kill this person [an innocent person convicted of murder],
15
+ >>then a murder would be committed, but I would not be the murderer. At least,
16
+ >>I wouldn't "reasonably" be considered a murderer, with "reasonable" being
17
+ >>introduced as a fudge factor necessary to account for the inability to be
18
+ >>totally objective due to a lack of absolutely true information.
19
+ >If society collective decides to carry the burden of executing
20
+ >it's citizens, then it also carries the blame for their innocent
21
+ >blood. Each and every voter who casts a ballot in favor of
22
+ >capital punishment is in part guilty of the murder of each and
23
+ >every innocent victim of the system.
24
+
25
+ Why are only those people in favor of the system to blame. If society
26
+ accepts such a system, then each member of society is to blame when
27
+ an innocent person gets executed. Those that are not in favor should
28
+ work to convince others.
29
+
30
+ And, most members of our society have accepted the blame--they've considered
31
+ the risk to be acceptable. Similarly, every person who drives must accept
32
+ the blame for fatal traffic accidents. This is something that is surely
33
+ going to happen when so many people are driving. It is all a question of
34
+ what risk is acceptable. It is much more likely that an innocent person
35
+ will be killed driving than it is that one will be executed.
36
+
37
+ keith
data/20_newsgroups/alt.atheism/51134 ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!wupost!uunet!news.tek.com!vice!bobbe
2
+ Newsgroups: alt.atheism
3
+ Subject: Re: Don't more innocents die without the death penalty?
4
+ Message-ID: <11733@vice.ICO.TEK.COM>
5
+ From: bobbe@vice.ICO.TEK.COM (Robert Beauchaine)
6
+ Date: 5 Apr 93 19:54:50 GMT
7
+ References: <2942881697.0.p00168@psilink.com>
8
+ Organization: Tektronix, Inc., Beaverton, OR.
9
+ Lines: 26
10
+
11
+ In article <2942881697.0.p00168@psilink.com> p00168@psilink.com (James F. Tims) writes:
12
+ >
13
+ >By maintaining classes D and E, even in prison, it seems as if we
14
+ >place more innocent people at a higher risk of an unjust death than
15
+ >we would if the state executed classes D and E with an occasional error.
16
+ >
17
+
18
+ I answer from the position that we would indeed place these people
19
+ in prison for life.
20
+
21
+ That depends not only on their predisposition towards murder, but
22
+ also in their success rate at escape and therefore their ability
23
+ to commit the same crimes again.
24
+
25
+ In other words, if lifetime imprisonment doesn't work, perhaps
26
+ it's not because we're not executing these people, but because
27
+ we're not being careful enough about how we lock them up.
28
+
29
+ /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
30
+
31
+ Bob Beauchaine bobbe@vice.ICO.TEK.COM
32
+
33
+ They said that Queens could stay, they blew the Bronx away,
34
+ and sank Manhattan out at sea.
35
+
36
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
data/20_newsgroups/alt.atheism/51135 ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!wupost!uunet!news.tek.com!vice!bobbe
2
+ Newsgroups: alt.atheism
3
+ Subject: Re: Ancient islamic rituals
4
+ Message-ID: <11734@vice.ICO.TEK.COM>
5
+ From: bobbe@vice.ICO.TEK.COM (Robert Beauchaine)
6
+ Date: 5 Apr 93 20:02:06 GMT
7
+ References: <1993Apr3.081052.11292@monu6.cc.monash.edu.au>
8
+ Organization: Tektronix, Inc., Beaverton, OR.
9
+ Lines: 33
10
+
11
+ In article <1993Apr3.081052.11292@monu6.cc.monash.edu.au> darice@yoyo.cc.monash.edu.au (Fred Rice) writes:
12
+ >I propose
13
+ >that these two trends -- greater level of general depression in society
14
+ >(and other psychological problems) and greater sexual promiscuity -- are
15
+ >linked, with the latter being a prime cause of the former. I cannot
16
+ >provide any evidence beyond this at this stage, but the whole thesis
17
+ >seems very reasonable to me and I request that people ponder upon it.
18
+ >
19
+
20
+ Damn right you can't provide any evidence for it.
21
+
22
+ Rarely are any widespread social phenomenon reducible to such a
23
+ simple premise. If they were, psychology would be a hard science
24
+ with roughly the same mathematical soundness as physics.
25
+
26
+ Your premise may well be right. It is much more likely, however,
27
+ that it reflects your socialization and religious background, as
28
+ well as your need to validate your religious beliefs. Were I to
29
+ pretend to have all the answers (and I don't), I would say that the
30
+ xenophobia, guilt, and intolerance brought about by adherence to
31
+ fundamentalist religions play just as large a role in depressing
32
+ the members of our society.
33
+
34
+ Your mileage obviously varies.
35
+
36
+ /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
37
+
38
+ Bob Beauchaine bobbe@vice.ICO.TEK.COM
39
+
40
+ They said that Queens could stay, they blew the Bronx away,
41
+ and sank Manhattan out at sea.
42
+
43
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
data/20_newsgroups/alt.atheism/51136 ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!wupost!uunet!news.tek.com!vice!bobbe
2
+ Newsgroups: alt.atheism
3
+ Subject: Re: <Political Atheists?
4
+ Message-ID: <11735@vice.ICO.TEK.COM>
5
+ From: bobbe@vice.ICO.TEK.COM (Robert Beauchaine)
6
+ Date: 5 Apr 93 20:16:20 GMT
7
+ References: <1993Apr3.045142.28639@blaze.cs.jhu.edu> <1pj9bs$d4j@fido.asd.sgi.com> <1993Apr3.212139.14076@blaze.cs.jhu.edu>
8
+ Organization: Tektronix, Inc., Beaverton, OR.
9
+ Lines: 47
10
+
11
+ In article <1993Apr3.212139.14076@blaze.cs.jhu.edu> arromdee@jyusenkyou.cs.jhu.edu (Ken Arromdee) writes:
12
+ >In article <1pj9bs$d4j@fido.asd.sgi.com> livesey@solntze.wpd.sgi.com (Jon Livesey) writes:
13
+ >>I would say that one innocent person killed is in some sense
14
+ >>as bad as many. We certainly feel that way when we punish
15
+ >>someone for a single murder.
16
+ >>Now if we reform system X, by reducing the number of deaths
17
+ >>by one, we produce system XX. I'd say we should not go back
18
+ >>to system X, even though by doing so we would re-introduce only
19
+ >>a single extra death.
20
+ >
21
+ >Bob seems to think that one is as bad as many in a sense somewhat stronger than
22
+ >the one you indicate.
23
+ >--
24
+
25
+ Yes, I do.
26
+
27
+ My argument is that the sole purpose of the death penalty is to
28
+ kill people. That is it's primary (and I would argue only)
29
+ purpose. To continue to kill people by a practice that has
30
+ almost no utility, especially when you know you will be killing
31
+ innocents, is unconscionable.
32
+
33
+ At the very least, the existence of the prison system and our
34
+ transportation system are based on their merits to society, not
35
+ their detriments. We are willing to accept a few lost innocent
36
+ lives because there is an overwhelming benefit to the continued
37
+ existence of these systems. One has to stretch the evidence and
38
+ the arguments to make the same claim for capital punishment.
39
+
40
+ Just in case I wasn't clear again: We maintain a capital
41
+ punsihment system that kills innocent people and provides us with
42
+ no net positive gain. Why?
43
+
44
+ Were you to pin me in a corner and ask, I would have to respond
45
+ that I don't belief the state should have the right to take life
46
+ at all. But I won't open that debate, as it seems others are
47
+ tiring of this thread on a.a anyway.
48
+
49
+
50
+ /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
51
+
52
+ Bob Beauchaine bobbe@vice.ICO.TEK.COM
53
+
54
+ They said that Queens could stay, they blew the Bronx away,
55
+ and sank Manhattan out at sea.
56
+
57
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
data/20_newsgroups/alt.atheism/51137 ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51137 talk.religion.misc:82762 talk.origins:40404
2
+ Newsgroups: alt.atheism,talk.religion.misc,talk.origins
3
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!gatech!purdue!mentor.cc.purdue.edu!noose.ecn.purdue.edu!cidmac.ecn.purdue.edu!smullins
4
+ From: smullins@cidmac.ecn.purdue.edu (Scott H Mullins)
5
+ Subject: Return of the Abused Creationist thread (was Re: The _real_ probability of abiogenesis)
6
+ Message-ID: <C50yJL.4zC@noose.ecn.purdue.edu>
7
+ Summary: Return to a dead thread
8
+ Keywords: Bass Ale, indeed a fine brew.
9
+ Sender: Who else?
10
+ Organization: Purdue University Engineering Computer Network
11
+ References: <1phnkoINNbk@ctron-news.ctron.com>
12
+ Distribution: world,local
13
+ Date: Mon, 5 Apr 1993 19:09:21 GMT
14
+ Lines: 60
15
+
16
+ In article <1phnkoINNbk@ctron-news.ctron.com> king@ctron.com (John E. King) writes:
17
+ >To: adpeters@sunflower.bio.indiana.edu (Andy Peters) writes:
18
+ >>Funny, there's absolutely nothing in these numbers supporting Jack's
19
+ >>implication that "the probability of one protean molecule forming" is
20
+ >>less than 10^-50
21
+ >
22
+ >As I recall the figure for just one of the molecules forming is 1 : 10^-114.
23
+ >
24
+ >>[lists 5 steps for determining probability of abiogenesis]
25
+ >
26
+ >Its going to take a little time for me to do this Andy. Hope you'll be
27
+ >patient :).
28
+ >
29
+ >Just so you understand where I am coming from, even though I am a theist,
30
+ >I don't totally reject the possibility that this complex creation could have
31
+ >just come together on its own. Can I assume you are equally as objective?
32
+ >
33
+ >Most of my discussions on this net (which has been very little in recent
34
+ >years), have been with other theists over doctrinal issues. I have rarely
35
+ >ventured into the "origins" arena, because there is so much speculation
36
+ >involved. What hard data there is (e.g. DNA "program" that in proper sequences
37
+ >tells the cells how to divide and form), tells me that there must have
38
+ >been a Designer behind it all.
39
+ >
40
+ >Nonetheless, I remain open minded. I wonder how many can claim that on
41
+ >this net.
42
+
43
+ This is exactly the type of thing I was talking about before. A creationist
44
+ appears on t.o, makes a completely unsupported statement the facts of
45
+ which he/she is completely ignorant, is taken to task, and finally replies
46
+ with a subtle insult. (actually two insults)
47
+
48
+ Just to make sure I am being fair let's check a few details. Jack, you don't
49
+ know anything about abiogenesis, do you? (this is no sin, I know next to
50
+ nothing about it either) I mean, anything other than this "10^50"
51
+ probability thing which you got wrong in the first post.
52
+
53
+ The speculation involved is really your own, isn't it? How much _biology_
54
+ do you know, even apart from abiogenesis? Any classes past high school?
55
+ Read Chris Colby's FAQ? How much paleontology, geology, etc do you know?
56
+ Or are you speculating that its all speculative? Do you have any basis
57
+ upon which to imply that to keep an "open mind" one must allow that
58
+ the earth, universe, and all the creatures in it could have been created
59
+ ~10,000 years ago? None of this is intended as a flame. To say that
60
+ you don't know a subject is _not_ the same as calling you an idiot. I
61
+ don't know _much_ about these areas, but then I am not the one
62
+ calling into question all of mainstream science. In other words, where
63
+ do you get off calling it speculative unless by this you also mean that
64
+ all of physics, chemistry, etc are also speculative in some sense?
65
+
66
+ You may have, in fact, not been implying that the rejection of creationism
67
+ is a sign of close-mindedness, or that the theory of evolution is especially
68
+ speculative, in which case I have merely misinterpreted
69
+ you. In this case the worst thing you could be accused of is unclear
70
+ prose.
71
+
72
+ >Jack
73
+
74
+ Scott
75
+ smullins@ecn.purdue.edu
data/20_newsgroups/alt.atheism/51138 ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu talk.religion.misc:82764 alt.atheism:51138
2
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!wupost!zaphod.mps.ohio-state.edu!pitt.edu!pogo.isp.pitt.edu!joslin
3
+ Newsgroups: talk.religion.misc,alt.atheism
4
+ Subject: Re: *** The list of Biblical contradictions
5
+ Message-ID: <7912@blue.cis.pitt.edu>
6
+ From: joslin@pogo.isp.pitt.edu (David Joslin)
7
+ Date: 5 Apr 93 20:41:08 GMT
8
+ Sender: news+@pitt.edu
9
+ Followup-To: talk.religion.misc
10
+ References: <bskendigC50tnu.Ino@netcom.com>
11
+ Organization: Intelligent Systems Program
12
+ Lines: 44
13
+
14
+ Someone writes:
15
+ >I found a list of Biblical contradictions and cleaned it up a bit, but
16
+ >now I'd like some help with it.
17
+
18
+ I'm curious to know what purpose people think these lists serve.
19
+ Lists like this seem to value quantity over quality, an "argument
20
+ from article length." And the list you have here is of poorer
21
+ quality than most. Since the quotes seem to be taken from an
22
+ on-line bible, I doubt that there will be much problem with
23
+ verses quoted inaccurately. But that isn't the problem here.
24
+
25
+ I've known a lot of fundamentalists in my life, but none who
26
+ denied that there were errors in transmission, etc. And many of
27
+ the contradictions here -- Solomon having 40,000 horse stalls in
28
+ one verse, and 4,000 in another -- are just the sort of
29
+ contradiction that fundies don't have a problem with, in my
30
+ experience. So how do these sorts of contradictions amount to
31
+ anything more than attacking a straw man?
32
+
33
+ Some of the others are just silly, or rely on taking quotes out
34
+ of context, or have reasonable explanations. But even the ones
35
+ that are genuine contradictions need to have more said about
36
+ them than what is given here. (At the very least, some effort
37
+ should be made to understand and respond to the common replies
38
+ given by fundies.) Look for example at the research that Dave
39
+ Butler put into an article examining a false prophecy about Tyre.
40
+ That would be an excellent start for an anti-inerrancy list that
41
+ would have some teeth. (One well-researched and documented
42
+ contradiction is worth more than one hundred quotes taken out
43
+ of context and thrown together in a list.)
44
+
45
+ Lists like this that just toss a bunch of quotes together to
46
+ make a bible verse salad just don't cut it. Those of us who
47
+ want to argue against inerrancy should find this sort of thing
48
+ as embarassing as the fundies should find Josh McDowell.
49
+
50
+ dj
51
+
52
+ P.S. You can find some good material at ftp.rutgers.edu in
53
+ /pub/soc.religion.christian/others/contradictions. The quality
54
+ is very uneven on both sides of the argument (it is just a
55
+ compilation of things many people have written), but some of
56
+ it would be useful in an anti-inerrancy FAQ. After exams, I
57
+ might be willing to help put it together.
data/20_newsgroups/alt.atheism/51139 ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!kuhub.cc.ukans.edu!wupost!howland.reston.ans.net!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!ursa!pooh!halat
2
+ Newsgroups: alt.atheism
3
+ Subject: Re: There must be a creator! (Maybe)
4
+ Message-ID: <30066@ursa.bear.com>
5
+ From: halat@pooh.bears (Jim Halat)
6
+ Date: 1 Apr 93 21:24:35 GMT
7
+ Reply-To: halat@pooh.bears (Jim Halat)
8
+ Sender: news@bear.com
9
+ References: <16BA1E927.DRPORTER@SUVM.SYR.EDU>
10
+ Lines: 24
11
+
12
+ In article <16BA1E927.DRPORTER@SUVM.SYR.EDU>, DRPORTER@SUVM.SYR.EDU (Brad Porter) writes:
13
+ >
14
+ > Science is wonderful at answering most of our questions. I'm not the type
15
+ >to question scientific findings very often, but... Personally, I find the
16
+ >theory of evolution to be unfathomable. Could humans, a highly evolved,
17
+ >complex organism that thinks, learns, and develops truly be an organism
18
+ >that resulted from random genetic mutations and natural selection?
19
+
20
+ [...stuff deleted...]
21
+
22
+ Computers are an excellent example...of evolution without "a" creator.
23
+ We did not "create" computers. We did not create the sand that goes
24
+ into the silicon that goes into the integrated circuits that go into
25
+ processor board. We took these things and put them together in an
26
+ interesting way. Just like plants "create" oxygen using light through
27
+ photosynthesis. It's a much bigger leap to talk about something that
28
+ created "everything" from nothing. I find it unfathomable to resort
29
+ to believing in a creator when a much simpler alternative exists: we
30
+ simply are incapable of understanding our beginnings -- if there even
31
+ were beginnings at all. And that's ok with me. The present keeps me
32
+ perfectly busy.
33
+
34
+ -jim halat
35
+
data/20_newsgroups/alt.atheism/51140 ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!kuhub.cc.ukans.edu!wupost!emory!sol.ctr.columbia.edu!ursa!pooh!halat
2
+ Newsgroups: alt.atheism
3
+ Subject: Re: Americans and Evolution
4
+ Message-ID: <30069@ursa.bear.com>
5
+ From: halat@pooh.bears (Jim Halat)
6
+ Date: 1 Apr 93 22:50:11 GMT
7
+ Reply-To: halat@pooh.bears (Jim Halat)
8
+ Sender: news@bear.com
9
+ References: <93089.143048IO30436@MAINE.MAINE.EDU> <j0=5l3=@rpi.edu>
10
+ Lines: 10
11
+
12
+ In article <j0=5l3=@rpi.edu>, johnsd2@jec322.its.rpi.edu (Dan Johnson) writes:
13
+ >In article 143048IO30436@MAINE.MAINE.EDU, <IO30436@MAINE.MAINE.EDU> () writes:
14
+
15
+ Dan Johnson-
16
+
17
+ You don't know me, but take this hand anyway. Bravo for GO(DS) = 0.
18
+ Beautiful! Simply beautiful!
19
+
20
+ -jim halat
21
+
data/20_newsgroups/alt.atheism/51141 ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!yale!yale.edu!newsserver.jvnc.net!louie!udel!wupost!uunet!pipex!bnr.co.uk!bnrgate!bmerh85!bmers30!dgraham
2
+ Newsgroups: alt.atheism
3
+ Subject: Re: Speculations
4
+ Message-ID: <1993Apr5.211924.18459@bmerh85.bnr.ca>
5
+ From: dgraham@bmers30.bnr.ca (Douglas Graham)
6
+ Date: 5 Apr 93 21:19:24 GMT
7
+ Sender: news@bmerh85.bnr.ca (Usenet News)
8
+ References: <1993Apr1.190230.18485@proxima.alt.za> <UfjElCG00Vp3E7i6Vo@andrew.cmu.edu> <930405.172903.4w6.rusnews.w165w@mantis.co.uk>
9
+ Organization: Bell-Northern Research, Ottawa, Canada
10
+ Lines: 17
11
+
12
+ In article <930405.172903.4w6.rusnews.w165w@mantis.co.uk> mathew <mathew@mantis.co.uk> writes:
13
+ >Nanci Ann Miller <nm0w+@andrew.cmu.edu> writes:
14
+ >> If this god is truly omnipotent as you folks like to claim, then why can't
15
+ >> he terminate eternity?
16
+ >
17
+ >For the same reason he can't flibble glop ork groink.
18
+ >
19
+ >The thing you are demanding that he must be able to do, has no meaning in its
20
+ >own terms.
21
+
22
+ This is a classic example of excessive faith in reason. The fact that we
23
+ have trouble talking about something doesn't imply that it is impossible; it
24
+ simply implies that it is hard to talk about. There is a very good chance
25
+ that God *can* flibble glop ork groink. Charlie Wingate can flibble glop
26
+ ork groink, and he isn't even God.
27
+ --
28
+ Doug Graham dgraham@bnr.ca My opinions are my own.
data/20_newsgroups/alt.atheism/51142 ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!usc!sdd.hp.com!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: <Political Atheists?
5
+ Date: 2 Apr 1993 22:23:00 GMT
6
+ Organization: California Institute of Technology, Pasadena
7
+ Lines: 191
8
+ Message-ID: <1piec4INNrud@gap.caltech.edu>
9
+ References: <1p3bn9INN98r@gap.caltech.edu> <1p5p1j$ijd@fido.asd.sgi.com> <1p6rgcINNhfb@gap.caltech.edu> <1p88fi$4vv@fido.asd.sgi.com> <1p9bseINNi6o@gap.caltech.edu> <1pamva$b6j@fido.asd.sgi.com> <1pcq4pINNqp1@gap.caltech.edu> <1pdhh7$jsi@fido.asd.sgi.com>
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ livesey@solntze.wpd.sgi.com (Jon Livesey) writes:
13
+
14
+ >Much though it might be fun to debate capital punishment itself,
15
+ >this is probably the wrong group for it. The only relevance here
16
+ >is that you don't seem to be able to tell us what capital punishment
17
+ >actually is, and when it is murder. That is, when you tell us murder
18
+ >is wrong, you are using a term you have not yet defined.
19
+
20
+ Well, I've said that when an innocent person has been executed, this is
21
+ objectively a murder. However, who is at blame is another question.
22
+ It seems that the entire society that sanctions any sorts of executions--
23
+ realizing the risks--is to blame.
24
+
25
+ >There is a *probability* of
26
+ >killing an innocent person by shooting at random into the air, and
27
+ >there is a *probability* of killing an innocent person when the
28
+ >state administers a system of capital punishment. So when you do
29
+ >either, you know that they actions you are taking will sooner or
30
+ >later result in the killing of an innocent person.
31
+
32
+ Yes, but there is also a probablity that you will kill someone doing
33
+ any raondom activity. Presumably, you had not isolated yourself totally
34
+ from the rest of society because of this.
35
+
36
+ >>And, driving will kill people, as will airlines, but people continue to do
37
+ >>both.
38
+ >Driving and flying are not punishments inflicted on unwilling
39
+ >prisoners by Courts. They are risks that we take upon ourselves
40
+ >willingly.
41
+
42
+ And I argue that our law system is a similar risk. Perhaps an innocent
43
+ person will be punished someday, but we work to prevent this. In fact,
44
+ many criminals go free as a result of our trying to prevent punishment
45
+ of innocents.
46
+
47
+ >If our own driving kills someone else, then sure, there is a moral
48
+ >issue. I know at least one person who was involved in a fatal
49
+ >accident, and they felt vey guilty afterwards.
50
+
51
+ But, such accidents are to be totally expected, given the numner of vehicals
52
+ on the road. Again, the blame is on society.
53
+
54
+ >>No I'm not. This is what you said. You were saying that if there were such
55
+ >>a false witness that resulted in an innocent person being convicted and killed
56
+ >>, it would still be the fault of the state, since it did the actual killing.
57
+ >No, I just commented that the state does the killing. It does not
58
+ >depend on there being false witnesses. How could it? The state
59
+ >does the killing even in the case of sincere mistakes
60
+
61
+ Yes, but the state is not at fault in such a case. The state can only do
62
+ so much to prevent false witnesses.
63
+
64
+ >>It is possible. So, what are you trying to say, that capital punishment
65
+ >>is always murder because of the possibilty of human error invalidating
66
+ >>the system?
67
+ >I'm saying capital punishment is murder, period. Not because of
68
+ >this that and the other, but because it involves taking human life.
69
+ >That's *my* definition of murder. I make no appeals to dictionaries
70
+ >or to "objective" morals.
71
+
72
+ Okay, so this is what you call murder. But, the question is whether or not
73
+ all such "murders" are wrong. Are you saying that all taking of human life
74
+ is wrong, no matter what the circumstances?
75
+
76
+ >If we, as a society, decide to murder someone, then we should say
77
+ >that, and lists our reasons for doing so, and live with the moral
78
+ >consequences. We should not play word games and pretend that
79
+ >murder isn't murder. And that's *my* opinion about how society
80
+ >ought to be run.
81
+
82
+ But, this is basically how it works. Society accepts the risk that an
83
+ innocent person will be murdered by execution. And, every member of
84
+ society shares this blame. And, most people's definitions of murder
85
+ include some sort of malicious intent, which is not involved in an
86
+ execution, is it?
87
+
88
+ >>But, we were trying to discuss an objective moral system, or at least its
89
+ >>possibilty. What ramifications does your personal system have on an
90
+ >>objective one?
91
+ >No, we were not discussing an objective moral system. I was showing
92
+ >you that you didn't have one, because, for one thing, you were incapable
93
+ >of defining the terms in it, for example, "murder".
94
+
95
+ Murder violates the golden rule. Executions do not, because by allowing
96
+ it at all, society implicitly accepts the consequences no matter who the
97
+ innocent victim is.
98
+
99
+ >>We're not talking about reading minds, we are just talking about knowing the
100
+ >>truth. Yes, we can never be absolutely certain that we have the truth, but
101
+ >>the court systems work on a principle of knowing the "truth" "beyond a
102
+ >>reasonable doubt."
103
+ >Sorry, but you simply are not quoting yourself accurately. Here
104
+ >is what you said:
105
+ > "And, since we are looking totally objectively at this case,
106
+ > then we know what people are thinking when they are voting to
107
+ > execute the person or not. If the intent is malicious and
108
+ > unfair, then the execution would be murder."
109
+ >What you are doing now is to slide into another claim, which is
110
+ >quite different. The jury being *persuaded* beyond a serious
111
+ >doubt is not the same as us knowing what is in their minds beyond
112
+ >a serious doubt.
113
+
114
+ Reading the minds of the jury would certainly tell whether or not a conviction
115
+ was moral or not. But, in an objective system, only the absolute truth
116
+ matters, and the jury system is one method to approximate such a truth. That
117
+ is, twelve members must be convinced of a truth.
118
+
119
+ >Moreover, a jury which comes from a sufficiently prejudiced background
120
+ >may allow itself to be persuaded beyond a serious doubt on evidence
121
+ >that you and I would laugh at.
122
+
123
+ But then, if we read the minds of these people, we would know that the
124
+ conviction was unfair.
125
+
126
+ >>But, would it be perfectly fair if we could read minds? If we assume that
127
+ >>it would be fair if we knew the absolute truth, why is it so much less
128
+ >>fair, in your opinion, if we only have a good approximation of the absolute
129
+ >>truth?
130
+ >It's not a question of fairness. Your claim, which I have quoted
131
+ >above is a claim about whether we can *know* it was fair, so as to
132
+ >be able to distinguish capital punishnment from murder.
133
+
134
+ Yes, while we could objectively determine the difference (if we knew all
135
+ possible information), we can't always determine the difference in our
136
+ flawed system. I think that our system is almost as good as possible,
137
+ but it still isn't objectively perfect. You see, it doesn't matter if
138
+ we *know* it is fair or not. Objectively, it is either fair or it is not.
139
+
140
+ >Now there's a huge difference. If we can read minds, we can know,
141
+ >and if we cannot read minds, we can know nothing. The difference
142
+ >is not in degree of fairness, but in what we can know.
143
+
144
+ But what we know has no effect on an objective system.
145
+
146
+ >>I think it is possible to produce a fairly objective system, if we are
147
+ >>clear on which goals it is supposed to promote.
148
+ >I'm not going to waste my time trying to devise a system that I am
149
+ >pretty sure does not exist.
150
+
151
+ Why are you so sure?
152
+
153
+ >I simply want people to confront reality. *My* reality, remember.
154
+
155
+ Why is *your* reality important?
156
+
157
+ >In this case, the reality is that, "ideal theories' apart, we can
158
+ >never know, even after the fact, about the fairness of the justice
159
+ >system. For every innocent person released from Death Row, there
160
+ >may have been a dozen innocent people executed, or a hundred, or
161
+ >none at all. We simply don't know.
162
+
163
+ But, we can assume that the system is fairly decent, at least most likely.
164
+ And, you realize that the correctness of our system says nothing about a
165
+ totally ideal and objective system.
166
+
167
+ >Now what are we going to do? On the one hand, we can pretend
168
+ >that we have an 'ideal' theory, and that we can know things we can
169
+ >never know, and the Justie System is fair, and that we can wave a
170
+ >magic wand and make certain types of killing not murder, and go
171
+ >on our way.
172
+
173
+ Well, we can have an ideal system, but the working system can not be ideal.
174
+ We can only hope to create a system that is as close an approximation to
175
+ the ideal system as possible.
176
+
177
+ >On the other hand, we can recognize that all Justice has a small
178
+ >- we hope - probability of punishing the innocent, and that in the
179
+ >end we do bear moral responsibility even for the probabilistic
180
+ >consequences of the systems we set up, and then say, "Well, here
181
+ >we go, murdering again." Maybe some of us will even say "Gee, I
182
+ >wonder if all this is strictly necessary?"
183
+
184
+ Yes, we all bear the responsibility. Most people seem willing to do this.
185
+
186
+ >I think that the second is preferable in that if requires people
187
+ >to face the moral consequences of what we do as a society, instead
188
+ >of sheltering ourselves from them by magic ceremonies and word
189
+ >games.
190
+
191
+ We must realize the consequences of all our actions. Why do you keep
192
+ separating the justice system from the pack?
193
+
194
+ >And lest I forget, I also don't think we have an objective moral
195
+ >system, and I believe I only have to take that idea seriously
196
+ >when someone presents evidence of it.
197
+
198
+ I don't think our country has an objective system, but I think such an
199
+ objective system can exist, in theory. Without omniscience, an objective
200
+ system is not possible in practice.
201
+
202
+ keith
data/20_newsgroups/alt.atheism/51143 ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!usc!sdd.hp.com!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: <Political Atheists?
5
+ Date: 2 Apr 1993 22:25:11 GMT
6
+ Organization: California Institute of Technology, Pasadena
7
+ Lines: 12
8
+ Message-ID: <1pieg7INNs09@gap.caltech.edu>
9
+ References: <1p3bn9INN98r@gap.caltech.edu> <1p5p1j$ijd@fido.asd.sgi.com> <1p6rgcINNhfb@gap.caltech.edu> <1p88fi$4vv@fido.asd.sgi.com> <1993Mar30.051246.29911@blaze.cs.jhu.edu> <1p8nd7$e9f@fido.asd.sgi.com> <1pa0stINNpqa@gap.caltech.edu> <1pan4f$b6j@fido.asd.sgi.com> <1pcqf3INNqt7@gap.caltech.edu> <1pdj7l$jsi@fido.asd.sgi.com>
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ livesey@solntze.wpd.sgi.com (Jon Livesey) writes:
13
+
14
+ >Now along comes Mr Keith Schneider and says "Here is an "objective
15
+ >moral system". And then I start to ask him about the definitions
16
+ >that this "objective" system depends on, and, predictably, the whole
17
+ >thing falls apart.
18
+
19
+ It only falls apart if you attempt to apply it. This doesn't mean that
20
+ an objective system can't exist. It just means that one cannot be
21
+ implemented.
22
+
23
+ keith
data/20_newsgroups/alt.atheism/51144 ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51144 alt.politics.usa.constitution:1935
2
+ Path: cantaloupe.srv.cs.cmu.edu!rochester!udel!wupost!uunet!pipex!marble.uknet.ac.uk!uknet!ic.ac.uk!rm03
3
+ From: rm03@ic.ac.uk (Mr R. Mellish)
4
+ Newsgroups: alt.atheism,alt.politics.usa.constitution
5
+ Subject: Re: university violating separation of church/state?
6
+ Message-ID: <1993Apr5.195143.8740@sys.uea.ac.uk>
7
+ Date: 5 Apr 93 19:51:43 GMT
8
+ References: <199304041750.AA17104@kepler.unh.edu>
9
+ Sender: news@sys.uea.ac.uk
10
+ Organization: Imperial College
11
+ Lines: 33
12
+ Nntp-Posting-Host: 129.31.80.14
13
+
14
+ In article <199304041750.AA17104@kepler.unh.edu> dmn@kepler.unh.edu (...until kings become philosophers or philosophers become kings) writes:
15
+ >
16
+ >
17
+ >
18
+ > Recently, RAs have been ordered (and none have resisted or cared about
19
+ >it apparently) to post a religious flyer entitled _The Soul Scroll: Thoughts
20
+ >on religion, spirituality, and matters of the soul_ on the inside of bathroom
21
+ >stall doors. (at my school, the University of New Hampshire) It is some sort
22
+ >of newsletter assembled by a Hall Director somewhere on campus.
23
+ [most of post deleted]
24
+ >
25
+ > Please respond as soon as possible. I'd like these religious postings to
26
+ >stop, NOW!
27
+ >
28
+ >
29
+ >Thanks,
30
+ >
31
+ > Dana
32
+ >
33
+ >
34
+ >
35
+ There is an easy way out....
36
+ Post the flyers on the stall doors, but add at the bottom, in nice large
37
+ capitals,
38
+
39
+ EMERGENCY TOILET PAPER
40
+
41
+ :)
42
+
43
+ --
44
+ ------ Robert Mellish, FOG, IC, UK ------
45
+ Email: r.mellish@ic.ac.uk Net: rm03@sg1.cc.ic.ac.uk IRC: HobNob
46
+ ------ and also the mrs joyful prize for rafia work. ------
data/20_newsgroups/alt.atheism/51145 ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Newsgroups: alt.atheism
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!uunet!caen!usenet.cis.ufl.edu!usenet.ufl.edu!max.fiu.edu!kilman2y
3
+ From: kilman2y@fiu.edu (Yevgeny (Gene) Kilman)
4
+ Subject: Re: USAToday ad ("family values")
5
+ Organization: Florida International University, Miami
6
+ Date: Mon, 5 Apr 1993 19:48:45 GMT
7
+ Message-ID: <C510D9.127@fiu.edu>
8
+ References: <C4rzz2.47J@unix.portal.com>
9
+ Sender: news@fiu.edu (Usenet Administrator)
10
+ Lines: 15
11
+
12
+ In article <C4rzz2.47J@unix.portal.com> danb@shell.portal.com (Dan E Babcock) writes:
13
+ >There was a funny ad in USAToday from "American Family Association".
14
+ >I'll post a few choice parts for your enjoyment (all emphases is in
15
+ >the ad; I'm not adding anything). All the typos are mine. :)
16
+
17
+ [Dan's article deleted]
18
+
19
+ I found the same add in our local Sunday newspaper.
20
+ The add was placed in the ..... cartoon section!
21
+ The perfect place for it ! :-)
22
+
23
+ Y.K.
24
+
25
+
26
+
data/20_newsgroups/alt.atheism/51146 ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!yale!yale.edu!nigel.msen.com!sdd.hp.com!cs.utexas.edu!uunet!olivea!sgigate!odin!fido!solntze.wpd.sgi.com!livesey
2
+ Newsgroups: alt.atheism
3
+ Subject: Re: islamic authority over women
4
+ Message-ID: <1pq92q$9s2@fido.asd.sgi.com>
5
+ From: livesey@solntze.wpd.sgi.com (Jon Livesey)
6
+ Date: 5 Apr 93 21:41:46 GMT
7
+ References: <1993Mar30.040813.12364@ultb.isc.rit.edu> <1993Apr2.210133.22377@webo.dg.com> <1993Apr3.214741.14026@ultb.isc.rit.edu>
8
+ Organization: sgi
9
+ NNTP-Posting-Host: solntze.wpd.sgi.com
10
+ Lines: 11
11
+
12
+ In article <1993Apr3.214741.14026@ultb.isc.rit.edu>, snm6394@ultb.isc.rit.edu (S.N. Mozumder ) writes:
13
+ >
14
+ > My claim is that a person that committs a crime doesn't believe in
15
+ > God, for the moment that the crime is committed, at least, whether
16
+ > they are originally believers or not. To believe is to do good.
17
+ > Your statistics indicate people that have declared atheism.
18
+
19
+ And doubtless, when an atheist does an act of charity
20
+ they temporarily become a Baptist.
21
+
22
+ jon.
data/20_newsgroups/alt.atheism/51147 ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!yale!yale.edu!nigel.msen.com!sdd.hp.com!cs.utexas.edu!uunet!olivea!sgigate!odin!fido!solntze.wpd.sgi.com!livesey
2
+ Newsgroups: alt.atheism
3
+ Subject: Re: Ancient islamic rituals
4
+ Message-ID: <1pq9js$9s2@fido.asd.sgi.com>
5
+ From: livesey@solntze.wpd.sgi.com (Jon Livesey)
6
+ Date: 5 Apr 93 21:50:52 GMT
7
+ References: <1993Apr3.081052.11292@monu6.cc.monash.edu.au>
8
+ Organization: sgi
9
+ NNTP-Posting-Host: solntze.wpd.sgi.com
10
+ Lines: 20
11
+
12
+ In article <1993Apr3.081052.11292@monu6.cc.monash.edu.au>, darice@yoyo.cc.monash.edu.au (Fred Rice) writes:
13
+ >
14
+ > I propose that these two trends -- greater level of general
15
+ > depression in society (and other psychological problems) and
16
+ > greater sexual promiscuity -- are linked, with the latter being
17
+ > a prime cause of the former. I cannot provide any evidence beyond
18
+ > this at this stage, but the whole thesis seems very reasonable to
19
+ > me and I request that people ponder upon it.
20
+
21
+ I pondered it for all of ten seconds when I realised that since
22
+ we don't have any reliable statistics for sexual promiscuity,
23
+ and since the whole issue of "depression" isn't at all well
24
+ defined for earlier centuries, you are probably talking crap.
25
+
26
+ Of course, you could pull a Mozumder on us, and say that people
27
+ who are having sex outside marriage are *defined* to be depressed.
28
+
29
+ I can't say I'd ever noticed, myself.
30
+
31
+ jon.
data/20_newsgroups/alt.atheism/51148 ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51148 soc.motss:139981 rec.scouting:5323
2
+ Path: cantaloupe.srv.cs.cmu.edu!rochester!news.bbn.com!noc.near.net!uunet!wupost!CSM560.smsu.edu!umn.edu!lynx.unm.edu!carina.unm.edu!anthropo
3
+ From: anthropo@carina.unm.edu (Dominick V. Zurlo)
4
+ Newsgroups: alt.atheism,soc.motss,rec.scouting
5
+ Subject: Re: [soc.motss, et al.] "Princeton axes matching funds for Boy Scouts"
6
+ Date: 5 Apr 1993 20:27:59 GMT
7
+ Organization: University of New Mexico, Albuquerque
8
+ Lines: 30
9
+ Message-ID: <1pq4ofINNr2i@lynx.unm.edu>
10
+ References: <1osnh5INNllm@hoss.usl.com> <1pc81b$4p7@shrike.und.ac.za> <1993Apr5.011255.7295@cbnewsl.cb.att.com>
11
+ NNTP-Posting-Host: carina.unm.edu
12
+
13
+ In article <1993Apr5.011255.7295@cbnewsl.cb.att.com> stank@cbnewsl.cb.att.com (Stan Krieger) writes:
14
+ >Now can we please use rec.scouting for the purpose for which it was
15
+ >established? Clearly we netnews voters decided that we did not want to
16
+ >provide a scouting newsgroup to give fringe groups a forum for their
17
+ >anti-societal political views.
18
+
19
+ Ok, this is the only thing I will comment on from Stan at this time...
20
+ part of this forum we call rec.scouting is for policy discussions and
21
+ related topics. This is a policy discussion, and involves related
22
+ topics. this is not a "fringe" group discussion. obviously, it
23
+ engenders strong feelings from all sides of the issues at hand.
24
+ Wether a particular view is anti-societal or not is your opinion,
25
+ and yours alone, don't try to make it seem otherwise.
26
+ If you do not wish to engage in this discussion, use a kill file.
27
+ If you wish to continue in this discussion, please do so, knowing
28
+ full well the implications that apply.
29
+ I know for myself that I plan on continuing with the discussion when
30
+ i have the wish to have input. I for one am tired of people trying to
31
+ say that this is not a matter significant for this group! It is, and
32
+ quite so. Especially for those of us who feel the impact more closely.
33
+
34
+
35
+ ****************************************************************
36
+ * Dominick V. Zurlo * "If the world's an *
37
+ * WWW * oyster, why am I *
38
+ * Eagle Scout '87 * allergic to Mollusks?" *
39
+ * blacklisted '88 * *
40
+ ****************************************************************
41
+
42
+
data/20_newsgroups/alt.atheism/51149 ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!zaphod.mps.ohio-state.edu!sdd.hp.com!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: <Political Atheists?
5
+ Date: 2 Apr 1993 23:00:29 GMT
6
+ Organization: California Institute of Technology, Pasadena
7
+ Lines: 8
8
+ Message-ID: <1pigidINNsot@gap.caltech.edu>
9
+ References: <1p9bseINNi6o@gap.caltech.edu> <1pamva$b6j@fido.asd.sgi.com> <1993Mar31.002303.4748@blaze.cs.jhu.edu> <930401.111834.4c3.rusnews.w165w@mantis.co.uk>
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ mathew <mathew@mantis.co.uk> writes:
13
+
14
+ >As for rape, surely there the burden of guilt is solely on the rapist?
15
+
16
+ Not so. If you are thrown into a cage with a tiger and get mauled, do you
17
+ blame the tiger?
18
+
19
+ keith
data/20_newsgroups/alt.atheism/51150 ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!howland.reston.ans.net!zaphod.mps.ohio-state.edu!sdd.hp.com!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
2
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: <Political Atheists?
5
+ Date: 2 Apr 1993 23:03:21 GMT
6
+ Organization: California Institute of Technology, Pasadena
7
+ Lines: 12
8
+ Message-ID: <1pignpINNsp9@gap.caltech.edu>
9
+ References: <1pan4f$b6j@fido.asd.sgi.com> <1pcqf3INNqt7@gap.caltech.edu> <11703@vice.ICO.TEK.COM> <930401.113200.2K4.rusnews.w165w@mantis.co.uk>
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+
12
+ mathew <mathew@mantis.co.uk> writes:
13
+
14
+ >>Perhaps we shouldn't imprision people if we could watch them closely
15
+ >>instead. The cost would probably be similar, especially if we just
16
+ >>implanted some sort of electronic device.
17
+ >Why wait until they commit the crime? Why not implant such devices in
18
+ >potential criminals like Communists and atheists?
19
+
20
+ Sorry, I don't follow your reasoning. You are proposing to punish people
21
+ *before* they commit a crime? What justification do you have for this?
22
+
23
+ keith
data/20_newsgroups/alt.atheism/51151 ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51151 soc.motss:139988 rec.scouting:5325
2
+ Path: cantaloupe.srv.cs.cmu.edu!rochester!cornell!batcomputer!caen!zaphod.mps.ohio-state.edu!wupost!uunet!noc.near.net!transfer.stratus.com!sw.stratus.com!cdt
3
+ From: cdt@sw.stratus.com (C. D. Tavares)
4
+ Newsgroups: alt.atheism,soc.motss,rec.scouting
5
+ Subject: Re: EnviroLeague
6
+ Date: 5 Apr 1993 21:31:40 GMT
7
+ Organization: Stratus Computer, Inc.
8
+ Lines: 117
9
+ Distribution: world
10
+ Message-ID: <1pq8fs$dr@transfer.stratus.com>
11
+ References: <1oghotINNmuf@fido.asd.sgi.com> <93080.190241DB0488A@auvm.american.edu> <C49nnM.Jv1@mailer.cc.fsu.edu> <1993Mar22.044558.17942@cbnewsl.cb.att.com> <C4Evpq.t3I@austin.ibm.com> <1pdlqf$62i@transfer.stratus.com>
12
+ NNTP-Posting-Host: rocket.sw.stratus.com
13
+
14
+
15
+ A new alternative to Scouting for those "unacceptable to BSA" for reasons
16
+ of religious or sexual preference:
17
+
18
+
19
+ From: "BOYD R. CRITZ, III" <71611.365@CompuServe.COM>
20
+ Subject: EnviroLeague
21
+
22
+ "Birth Announcement" on March 7, 1993, from EARTH Forum, CompuServe
23
+ Information Service
24
+ ===================================================================
25
+
26
+ FORMAL ANNOUNCEMENT
27
+ -------------------
28
+
29
+ (SM)
30
+ EnviroLeague
31
+
32
+ A new youth movement,"EnviroLeague," was recently born, according to its
33
+ founder, Boyd R. Critz, III (CIS ID# 71611,365), of Peoria, Illinois.
34
+ EnviroLeague exists for the education of youth, both male and female, in
35
+ matters concerning their values related to and responsibility for our
36
+ environment.
37
+
38
+ Incorporated as an Illinois not-for-profit corporation, its Articles and
39
+ initial applications for a service mark have now been filed. According to
40
+ Critz, its draft Bylaws contain the following statement of Mission and
41
+ Objectives:
42
+
43
+ MISSION
44
+
45
+ It is the Mission of EnviroLeague and its adult members
46
+ to foster and implement the improved education of young
47
+ people in the need to conduct their lives as Stewards
48
+ of The Earth, to leave The Earth in a better condition
49
+ than they found it, and to otherwise act as responsible,
50
+ moral and ethical users of their environment. To pursue
51
+ the accomplishment of this Mission, EnviroLeague shall
52
+ seek to serve as a catalyst, focusing in common cause the
53
+ separate efforts of all groups desiring the preservation,
54
+ improvement, and responsible use of the environment in
55
+ which we must all live.
56
+
57
+ OBJECTIVES
58
+
59
+ In pursuit of the Mission of EnviroLeague, its primary
60
+ objectives shall be:
61
+ (1) To establish a Movement involving as many
62
+ environmentally concerned organizations as
63
+ possible, said Movement having as its primary
64
+ focus the education and participatory
65
+ involvement of young people in appropriate areas
66
+ of environmental concern;
67
+ (2) To develop and provide to such organizations and
68
+ their branches a full complement of program
69
+ materials for their use, including suitable
70
+ uniforms, insignia and other badges, written
71
+ ideas, syllabi and information, literature and
72
+ other items as shall seem appropriate and
73
+ desirable;
74
+ (3) To serve as a "clearing house" for the exchange
75
+ of program ideas, materials and information
76
+ among said organizations; and
77
+ (4) To assist environmentally concerned
78
+ organizations to recruit and train the necessary
79
+ adult leadership for their youth programs.
80
+
81
+ EnviroLeague will operate through three "Program Divisions" serving youth in
82
+ the elementary, middle and high school grades, respectively. Service shall be
83
+ through formation of "EnviroLeague Teams," either by EnviroLeague itself or by
84
+ environmentally conscious organizations (or their local branches) wishing a
85
+ charter to use programs developed by EnviroLeague.
86
+
87
+ EnviroLeague, as it develops, will be controlled by the actual adult leaders
88
+ of each local Team, and will have no nationally imposed obstacles to
89
+ membership or adult leadership status not based upon relevant improper
90
+ conduct. Organizations accepting a charter may, however, impose certain
91
+ additional standards for their own use of the program material. Should such
92
+ organizations do so, EnviroLeague will commit itself to forming, as soon as
93
+ possible, new nearby Teams having no such restrictions, particularly as to
94
+ youth membership.
95
+
96
+ EnviroLeague will operate on the principle that youth will have much to
97
+ contribute to developing its programs. Thus, the top youth leaders of its
98
+ Teams for middle and high school youth may become involved in governing any
99
+ local administrative groups, and those for its high school youth may be
100
+ involved in similar functions at the national level.
101
+
102
+ Program materials are in development at this time. Copies of the "draft"
103
+ portions of the Mentor's Manual (manual for adult leadership) will be in the
104
+ EARTH Forum, Library 17. These files will be updated as development takes
105
+ place.
106
+
107
+ CompuServe is particularly proud that EnviroLeague's founder chose this
108
+ electronic medium to make the first public announcement of its formation.
109
+ This announcement is being made simultaneously in both the OUTDOOR and EARTH
110
+ Forums.
111
+
112
+ The electronic home of EnviroLeague is in CompuServe's Earth Forum - GO
113
+ EARTH - message and library areas 17, both named "EnviroLeague."
114
+ ============================================================================
115
+
116
+ Subsequently, EnviroLeague's Initial Governance Council has held its first
117
+ meeting. Boyd Critz was elected as the first EnviroLeague Chief Guardian
118
+ (equivalent to Chairman of the Board or CEO). He can be reached at home
119
+ (309) 675-4483 in case of real need. Also, mail can be addressed to:
120
+ EnviroLeague
121
+ P.O. Box 418
122
+ Peoria, IL 61651-0418
123
+
124
+ Those interested in starting an EnviroLeague Team might just establish
125
+ contact, to receive a diskette (IBM DOS, ASCII) with initial information.
126
+ --
127
+
128
+ cdt@rocket.sw.stratus.com --If you believe that I speak for my company,
129
+ OR cdt@vos.stratus.com write today for my special Investors' Packet...
130
+
data/20_newsgroups/alt.atheism/51152 ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!emory!swrinde!zaphod.mps.ohio-state.edu!wupost!CSM560.smsu.edu!umn.edu!uum1!mac.cc.macalstr.edu!acooper
2
+ From: acooper@mac.cc.macalstr.edu
3
+ Newsgroups: alt.atheism
4
+ Subject: Idle questions for fellow atheists
5
+ Message-ID: <1993Apr5.124216.4374@mac.cc.macalstr.edu>
6
+ Date: 5 Apr 93 12:42:16 -0600
7
+ Organization: Macalester College
8
+ Lines: 26
9
+
10
+
11
+ I wonder how many atheists out there care to speculate on the face of the world
12
+ if atheists were the majority rather than the minority group of the population.
13
+ It is rather a ridiculous question in some ways, I know, but my newsreader is
14
+ down so I am not getting any new postings for a bit, so I figure I might as
15
+ well post something new myself.
16
+
17
+ Also, how many atheists out there would actually take the stance and accor a
18
+ higher value to their way of thinking over the theistic way of thinking. The
19
+ typical selfish argument would be that both lines of thinking evolved from the
20
+ same inherent motivation, so one is not, intrinsically, different from the
21
+ other, qualitatively. But then again a measuring stick must be drawn
22
+ somewhere, and if we cannot assign value to a system of beliefs at its core,
23
+ than the only other alternative is to apply it to its periphery; ie, how it
24
+ expresses its own selfishness.
25
+
26
+ Idle thoughts...
27
+
28
+
29
+ Adam
30
+
31
+ ********************************************************************************
32
+ * Adam John Cooper "Verily, often have I laughed at the weaklings *
33
+ * who thought themselves good simply because *
34
+ * acooper@macalstr.edu they had no claws." *
35
+ ********************************************************************************
data/20_newsgroups/alt.atheism/51153 ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!emory!swrinde!zaphod.mps.ohio-state.edu!wupost!uunet!enterpoop.mit.edu!senator-bedfellow.mit.edu!senator-bedfellow.mit.edu!usenet
2
+ From: bobs@thnext.mit.edu (Robert Singleton)
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: Americans and Evolution
5
+ Date: 5 Apr 1993 20:19:09 GMT
6
+ Organization: Massachvsetts Institvte of Technology
7
+ Lines: 122
8
+ Distribution: world
9
+ Message-ID: <1pq47tINN8lp@senator-bedfellow.MIT.EDU>
10
+ References: <1993Apr5.163738.2447@dcs.warwick.ac.uk>
11
+ NNTP-Posting-Host: thnext.mit.edu
12
+
13
+ In article <1993Apr5.163738.2447@dcs.warwick.ac.uk>
14
+ simon@dcs.warwick.ac.uk (Simon Clippingdale) writes:
15
+ [deleted]
16
+ >
17
+ > ... over on alt.atheism we tend to recognise two
18
+ > categories of atheism. Function format due to mathew@mantis.co.uk, I
19
+ think:
20
+ >
21
+ > (i) weak - not(believe(gods))
22
+ >
23
+ > (ii) strong - believe(not(gods))
24
+ >
25
+ [deleted]
26
+ >
27
+ >
28
+ >
29
+ > I ... am [a strong atheist], and I must quibble with your assertion
30
+ > that the `strong' position requires faith. I believe that no god/s,
31
+ > as commonly described by theists, exist. This belief is merely an
32
+ ^^^^^^^^^^^^^^^^^^^^^^^^
33
+ > opinion, formed on the basis of observation, including a certain
34
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
35
+ > amount of introspection.
36
+ ^^^^^^^^^^^^^^^^^^^^^^^
37
+ >
38
+ > I fully accept that I could be wrong, and will be swayed by suitably
39
+ > convincing evidence. Thus while I believe that no gods exist, this does
40
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
41
+ > not imply *faith* on my part that it is so.
42
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
43
+
44
+ Let me first say that "to believe that no gods exist" is in fact
45
+ different than "not believing in a god or gods".
46
+
47
+ I will argue that your latter statement, "I believe that no gods exist"
48
+ does rest upon faith - that is, if you are making a POSITIVE statement
49
+ that "no gods exist" (strong atheism) rather than merely saying I don't
50
+ know and therefore don't believe in them and don't NOT believe in then
51
+ (weak atheism). Once again, to not believe in God is different than saying
52
+ I BELIEVE that God does not exist. I still maintain the position, even
53
+ after reading the FAQs, that strong atheism requires faith.
54
+
55
+ But first let me say the following.
56
+ We might have a language problem here - in regards to "faith" and
57
+ "existence". I, as a Christian, maintain that God does not exist.
58
+ To exist means to have being in space and time. God does not HAVE
59
+ being - God IS Being. Kierkegaard once said that God does not
60
+ exist, He is eternal. With this said, I feel it's rather pointless
61
+ to debate the so called "existence" of God - and that is not what
62
+ I'm doing here. I believe that God is the source and ground of
63
+ being. When you say that "god does not exist", I also accept this
64
+ statement - but we obviously mean two different things by it. However,
65
+ in what follows I will use the phrase "the existence of God" in it's
66
+ 'usual sense' - and this is the sense that I think you are using it.
67
+ I would like a clarification upon what you mean by "the existence of
68
+ God".
69
+
70
+ We also might differ upon what it means to have faith. Here is what
71
+ Webster says:
72
+
73
+ faith
74
+ 1a: allegiance to duty or a person: LOYALTY
75
+ b (1): fidelity to one's promises
76
+ (2): sincerity of intentions
77
+ 2a (1): belief and trust in and loyalty to God
78
+ (2): belief in the traditional doctrines of a religion
79
+ b (1): firm belief in something for which there is no proof
80
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
81
+ (2): complete trust
82
+ 3: something that is believed esp. with strong conviction; esp: a system
83
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
84
+ of religious beliefs
85
+ syn see BELIEF
86
+
87
+
88
+
89
+ One can never prove that God does or does not exist. When you say
90
+ that you believe God does not exist, and that this is an opinion
91
+ "based upon observation", I will have to ask "what observtions are
92
+ you refering to?" There are NO observations - pro or con - that
93
+ are valid here in establishing a POSITIVE belief. All observations
94
+ can only point you in a direction - a direction that we might even
95
+ be predisposed to (by predisposed I mean, for example, people whoes
96
+ partents "believe in God" also tend to). To actually draw a conclusion
97
+ about the "existence" or "non-existence" of God requires a leap - and
98
+ you have made this leap when you actively say "I believe that God
99
+ does/does not exist". Personally, I think that both statements are
100
+ misguided. Arguing over the "existence" of God is precisely the wrong way
101
+ to find Him (and yes, I use "Him" because a personal God is the only
102
+ viable concept (IMO) - if a person wants to use "She" go ahead. Of course
103
+ God is neither He nor She - but we have no choice but to
104
+ anthropomorphise. If you want me to explain myself further I'll be
105
+ glad to.)
106
+
107
+
108
+
109
+ And please, if someone does not agree with me - even if they violently
110
+ disagree - it's in no ones advantage to start name calling. If a person
111
+ thinks I've misunderstood something in the FAQs, or if they they think
112
+ I have not read them well enough, just point out to me the error of my
113
+ ways and I correct the situation. I'm interested in a polite and well
114
+ thought out discussion.
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+ > Cheers
124
+ >
125
+ > Simon
126
+ > --
127
+ > Simon Clippingdale simon@dcs.warwick.ac.uk
128
+ > Department of Computer Science Tel (+44) 203 523296
129
+ > University of Warwick FAX (+44) 203 525714
130
+ > Coventry CV4 7AL, U.K.
131
+
132
+ --
133
+ bob singleton
134
+ bobs@thnext.mit.edu
data/20_newsgroups/alt.atheism/51154 ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!bb3.andrew.cmu.edu!andrew.cmu.edu!nm0w+
2
+ From: Nanci Ann Miller <nm0w+@andrew.cmu.edu>
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: Genocide is Caused by Atheism
5
+ Date: Mon, 5 Apr 1993 18:40:31 -0400
6
+ Organization: Sponsored account, School of Computer Science, Carnegie Mellon, Pittsburgh, PA
7
+ Lines: 27
8
+ Message-ID: <gfk=JTa00Vpd0K8HIf@andrew.cmu.edu>
9
+ References: <1993Apr5.020504.19326@ultb.isc.rit.edu>
10
+ NNTP-Posting-Host: andrew.cmu.edu
11
+ In-Reply-To: <1993Apr5.020504.19326@ultb.isc.rit.edu>
12
+
13
+ snm6394@ultb.isc.rit.edu (S.N. Mozumder ) writes:
14
+ > More horrible deaths resulted from atheism than anything else.
15
+
16
+ There are definitely quite a few horrible deaths as the result of both
17
+ atheists AND theists. I'm sure Bobby can list quite a few for the atheist
18
+ side but fails to recognize that the theists are equally proficient at
19
+ genocide. Perhaps, since I'm a bit weak on history, somone here would like
20
+ to give a list of wars caused/led by theists? I can think of a few (Hitler
21
+ claimed to be a Christian for example) but a more complete list would
22
+ probably be more effective in showing Bobby just how absurd his statement
23
+ is.
24
+
25
+ > Peace,
26
+
27
+ On a side note, I notice you always sign your posts "Peace". Perhaps you
28
+ should take your own advice and leave the atheists in peace with their
29
+ beliefs?
30
+
31
+ > Bobby Mozumder
32
+
33
+ Nanci
34
+
35
+ .........................................................................
36
+ If you know (and are SURE of) the author of this quote, please send me
37
+ email (nm0w+@andrew.cmu.edu):
38
+ Lying to ourselves is more deeply ingrained than lying to others.
39
+
data/20_newsgroups/alt.atheism/51155 ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!bb3.andrew.cmu.edu!andrew.cmu.edu!nm0w+
2
+ From: Nanci Ann Miller <nm0w+@andrew.cmu.edu>
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: Dear Mr. Theist
5
+ Date: Mon, 5 Apr 1993 18:43:46 -0400
6
+ Organization: Sponsored account, School of Computer Science, Carnegie Mellon, Pittsburgh, PA
7
+ Lines: 31
8
+ Message-ID: <cfk=MWm00VpdQK8Hpi@andrew.cmu.edu>
9
+ References: <dl2021-010493162641@m249-67.bgsu.edu>
10
+ <1993Apr5.024150.10193@wam.umd.edu>
11
+ NNTP-Posting-Host: po2.andrew.cmu.edu
12
+ In-Reply-To: <1993Apr5.024150.10193@wam.umd.edu>
13
+
14
+ west@next02cville.wam.umd.edu (Stilgar) writes:
15
+ > means to me. The full quote (Michael Crichton, _Jurrasic_Park_) was
16
+ > something like "The earth has existed quite contently for billions of
17
+ > years. We have been here but for the blink of an eye, and if we were gone
18
+ > tomorrow, the earth would not miss us.". I remember this quote to keep
19
+ > myself humble when thinking that we have progressed so far or that we
20
+ > are masters of this planet.
21
+
22
+ Cool quote.
23
+
24
+ > The earth doesn't need saving, it's existed quite happily with-
25
+ > out us, we are the ones who need saving.
26
+
27
+ Better watch it. The theists will jump on you for that... :-)
28
+
29
+ > Brian West.
30
+ > --
31
+ > THIS IS NOT A SIG FILE * -"To the Earth, we have been
32
+ > THIS IS NOT A SIG FILE * here but for the blink of an
33
+ > OK, SO IT'S A SIG FILE * eye, if we were gone tomorrow,
34
+ > posted by west@wam.umd.edu * we would not be missed."-
35
+ > who doesn't care who knows it. * (Jurassic Park)
36
+ > ** DICLAIMER: I said this, I meant this, nobody made me do it.**
37
+
38
+ Nanci
39
+
40
+ .........................................................................
41
+ If you know (and are SURE of) the author of this quote, please send me
42
+ email (nm0w+@andrew.cmu.edu):
43
+ Lying to ourselves is more deeply ingrained than lying to others.
44
+
data/20_newsgroups/alt.atheism/51156 ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Newsgroups: alt.atheism
2
+ Path: cantaloupe.srv.cs.cmu.edu!crabapple.srv.cs.cmu.edu!fs7.ece.cmu.edu!europa.eng.gtefsd.com!emory!sol.ctr.columbia.edu!zaphod.mps.ohio-state.edu!uwm.edu!daffy!snake2.cs.wisc.edu!mccullou
3
+ From: mccullou@snake2.cs.wisc.edu (Mark McCullough)
4
+ Subject: Re: <Political Atheists?
5
+ Message-ID: <1993Apr5.203428.20461@daffy.cs.wisc.edu>
6
+ Sender: news@daffy.cs.wisc.edu (The News)
7
+ Organization: University of Wisconsin, Madison -- Computer Sciences Dept.
8
+ References: <1psrjmINNr9e@gap.caltech.edu> <1pdbej$hio@fido.asd.sgi.com> <1pi8h5INNq40@gap.caltech.edu>
9
+ Date: Mon, 5 Apr 1993 20:34:28 GMT
10
+ Lines: 109
11
+
12
+
13
+ My turn to jump in! :)
14
+
15
+ In article <1pi8h5INNq40@gap.caltech.edu> keith@cco.caltech.edu (Keith Allan Schneider) writes:
16
+ >(reference line trimmed)
17
+ >
18
+ >livesey@solntze.wpd.sgi.com (Jon Livesey) writes:
19
+ >
20
+ >[...]
21
+ >
22
+ >>There is a good deal more confusion here. You started off with the
23
+ >>assertion that there was some "objective" morality, and as you admit
24
+ >>here, you finished up with a recursive definition. Murder is
25
+ >>"objectively" immoral, but eactly what is murder and what is not itself
26
+ >>requires an appeal to morality.
27
+ >
28
+
29
+ I think you mean circular, not recursive, but that is semantics.
30
+ Recursiveness has no problems, it is just horribly inefficient (just ask
31
+ any assembly programmer.)
32
+
33
+ >Yes.
34
+ >
35
+ >>Now you have switch targets a little, but only a little. Now you are
36
+ >>asking what is the "goal"? What do you mean by "goal?". Are you
37
+ >>suggesting that there is some "objective" "goal" out there somewhere,
38
+ >>and we form our morals to achieve it?
39
+ >
40
+ >Well, for example, the goal of "natural" morality is the survival and
41
+ >propogation of the species. Another example of a moral system is
42
+ >presented within the Declaration of Independence, which states that we
43
+ >should be guaranteed life liberty and the pursuit of happiness. You see,
44
+ >to have a moral system, we must define the purpose of the system. That is,
45
+ >we shall be moral unto what end?
46
+
47
+ The oft-quoted line that says people should be guaranteed life, liberty
48
+ and the pursuit of happiness as inalienable rights, is a complete lie
49
+ and deception, as the very authors of that line were in the process of
50
+ proving. Liberty is never free, it is always purchased at some cost,
51
+ almost always at the cost to another. Whos liberty is more inalienable?
52
+ Similarly for right of life. When one person must die if he is to save
53
+ another, or even a group of others, whos life is more inalienable?
54
+ That leads into the classic question of the value of the death penalty,
55
+ especially for serial killers. Whos life and liberty is more valuable,
56
+ the serial killer, or the victim? According to that beautiful line,
57
+ those two rights should be completely inviolate, that is, noone should be
58
+ able to remove them. This _includes_ government. Admittedly the serial
59
+ killer has restricted some people's life and/or liberty, but is not his
60
+ own life/liberty inviolate also? According to the declaration of independence,
61
+ it is.
62
+
63
+ >>>Murder is certainly a violation of the golden rule. And, I thought I had
64
+ >>>defined murder as an intentional killing of a non-murderer, against his will.
65
+
66
+ Oooh, I like that. It means that killing an infant is not murder because
67
+ it cannot be against its will. Reason, an infant has no will as such.
68
+
69
+ Similarly for people who are brain dead (easier to see), in a coma, etc.
70
+
71
+ Also, under current law, accidental killing is still murder. How will you
72
+ include that?
73
+
74
+ >>>And you responded to this by asking whether or not the execution of an
75
+ >>>innocent person under our system of capital punishment was a murder or not.
76
+ >>>I fail to see what this has to do with anything. I never claimed that our
77
+ >>>system of morality was an objective one.
78
+ >>I thought that was your very first claim. That there was
79
+ >>some kind of "objective" morality, and that an example of that was
80
+ >>that murder is wrong. If you don't want to claim that any more,
81
+ >>that's fine.
82
+
83
+ The only real golden rule in life is, he who has the gold, makes the
84
+ rules. I.e. Might Makes Right. That is survival. Now what is wrong
85
+ with that?
86
+
87
+ >Well, murder violates the golen rule, which is certainly a pillar of most
88
+ >every moral system. However, I am not assuming that our current system
89
+ >and the manner of its implementation are objectively moral. I think that
90
+ >it is a very good approximation, but we can't be perfect.
91
+
92
+ If you mean the golden rule as I stated, yes, almost every system as
93
+ implemented has used that in reality. Sorry, I don't deal as much in
94
+ fiction, as I do in reality.
95
+
96
+ >>And by the way, you don't seem to understand the difference between
97
+ >>"arbitrary" and "objective". If Keith Schneider "defines" murder
98
+ >>to be this that and the other, that's arbitrary. Jon Livesey may
99
+ >>still say "Well, according to my personal system of morality, all
100
+ >>killing of humans against their will is murder, and wrong, and what
101
+ >>the legal definition of murder may be in the USA, Kuweit, Saudi
102
+ >>Arabia, or the PRC may be matters not a whit to me".
103
+
104
+ WELCOME TO OZLAND!!!!!!! :)
105
+
106
+ What is NOT arbitrary? If you can find some part of society, some societal
107
+ rules, morals, etc. that are not arbitrary, please tell me. I don't think
108
+ there are any.
109
+
110
+ >Well, "objective" would assume a system based on clear and fundamental
111
+ >concepts, while "arbitary" implies no clear line of reasoning.
112
+ >
113
+ >keith
114
+ Sounds like euphemisms to me. The difference seems to be, that objective
115
+ is some reasoning that I like, while arbitrary is some reasoning that
116
+ I don't like OR don't understand.
117
+
118
+ M^2
119
+
120
+
data/20_newsgroups/alt.atheism/51157 ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!yale!yale.edu!nigel.msen.com!sdd.hp.com!zaphod.mps.ohio-state.edu!
2
+ cs.utexas.edu!geraldo.cc.utexas.edu!portal.austin.ibm.com!awdprime.austin.ibm.com!zazen
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: Radical Agnostic... NOT!
5
+ Message-ID: <C51618.Is2@austin.ibm.com>
6
+ From: zazen@austin.ibm.com (E. H. Welbon)
7
+ Date: 5 Apr 93 21:51:08 GMT
8
+ Sender: news@austin.ibm.com (News id)
9
+ References: <1993Apr2.024324.21438@mnemosyne.cs.du.edu>
10
+ Organization: Brownian Motion Inc.
11
+ X-Newsreader: TIN [version 1.1 PL9]
12
+ Lines: 34
13
+
14
+ The One and Only (jcopelan@nyx.cs.du.edu) wrote:
15
+ : In article <dl2021-310393180711@m249-66.bgsu.edu> dl2021@andy.bgsu.edu (Pixie) writes:
16
+ : [first post I've seen from the ol' Bug-Zoo (BGSU)]
17
+ : > There is no means that i can possibly think of to prove beyond doubt
18
+ : >that a god does not exist (but if anyone has one, by all means, tell me
19
+ : >what it is). Therefore, lacking this ability of absolute proof, being an
20
+ : >atheist becomes an act of faith in and of itself, and this I cannot accept.
21
+ : > I accept nothing on blind faith.
22
+
23
+ : Invisible Pink Flying Unicorns! Need I say more?
24
+
25
+ There is also the question of what is meant by "atheist". A familiar
26
+ example of the importance of the meaning of the word is as follows.
27
+
28
+ The two statements following ARE consistent:
29
+
30
+ (1) I do not believe that you are wearing lilac socks
31
+ (2) I do not believe that you are are not wearing lilac socks
32
+
33
+ The two statements following are NOT consistent:
34
+
35
+ (3) I do believe that you are wearing lilac socks
36
+ (4) I do believe that you are are not wearing lilac socks
37
+
38
+ Statements (1) and (2) require no faith, they make no presumptions about
39
+ the nature of reality. Statements (3) and (4) require belief. Many
40
+ atheists (myself included) take the following position:
41
+
42
+ (5) I do not believe that there is a god.
43
+ (6) I do not believe that there is not a god.
44
+
45
+ That is , I harbor no beliefs at all, there is no good evidence
46
+ for god existing or not. Some folks call this agnosticism. It does not
47
+ suffer from "blind faith" at all. I think of it as "Don't worry, be happy".
data/20_newsgroups/alt.atheism/51158 ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!yale!yale.edu!nigel.msen.com!sdd.hp.com!zaphod.mps.ohio-state.edu!wupost!uunet!decwrl!netcomsv!netcom.com!madhaus
2
+ Newsgroups: alt.atheism
3
+ Subject: So what is Maddi?
4
+ Message-ID: <madhausC5168z.4tA@netcom.com>
5
+ From: madhaus@netcom.com (Maddi Hausmann)
6
+ Date: 5 Apr 93 21:55:46 GMT
7
+ Organization: Society for Putting Things on Top of Other Things
8
+ Lines: 12
9
+
10
+ As I was created in the image of Gaea, therefore I must
11
+ be the pinnacle of creation, She which Creates, She which
12
+ Births, She which Continues.
13
+
14
+ Or, to cut all the religious crap, I'm a woman, thanks.
15
+ And it's sexism that started me on the road to atheism.
16
+
17
+ --
18
+ Maddi Hausmann madhaus@netcom.com
19
+ Centigram Communications Corp San Jose California 408/428-3553
20
+
21
+ Kids, please don't try this at home. Remember, I post professionally.
data/20_newsgroups/alt.atheism/51159 ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!yale!yale.edu!nigel.msen.com!sdd.hp.com!zaphod.mps.ohio-state.edu!
2
+ cs.utexas.edu!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!bdunn
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: The wrong and the right.
5
+ Message-ID: <1piv3sINN3fr@gap.caltech.edu>
6
+ From: bdunn@cco.caltech.edu (Brendan Dunn)
7
+ Date: 3 Apr 93 03:08:44 GMT
8
+ References: <93090.141001E62763@TRMETU.BITNET>
9
+ Organization: California Institute of Technology, Pasadena
10
+ NNTP-Posting-Host: punisher.caltech.edu
11
+ Lines: 25
12
+
13
+ In article <93090.141001E62763@TRMETU.BITNET> <E62763@TRMETU.BITNET> writes:
14
+ >Hi.I'm a Turkish guy who had tried atheism,satenism and buddism at some instant
15
+ >s of hislife.Finally I decided on Islambecause of many facts which I intend to
16
+ > write here.From my point of view,you atheists are people who has dropped to a
17
+ >deep,dark well and thinking the only reality is the dusty walls of the well.But
18
+ > if you had looked a little bit upward you would see the blue skies.You'dsee t
19
+ >he truth but you close your eyes.Allah is the only GOD and Mohammed is his mess
20
+ > ager.now,let's generate some entropy in means of theology and thermodynamics.W
21
+ >hat's your point of view to the problem of the ''FIRST KISS''?That is,the first
22
+ > spark which was generated for the formation of the universe.Has it formed by i
23
+ >tself?You are bothering yourselves with the Big Bang but where is the first spa
24
+ >rk?Please think a bit.Think and return to the only reality of the universe:ISLA
25
+ >M|
26
+
27
+ Uh oh. This looks a bit too much like Bobby's "Atheism Is False" stuff. Are
28
+ we really going to have to go through this again? Maybe the universe is
29
+ cyclical! :) :(
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+ --Brendan Dunn
data/20_newsgroups/alt.atheism/51160 ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!yale!yale.edu!nigel.msen.com!sdd.hp.com!zaphod.mps.ohio-state.edu!
2
+ cs.utexas.edu!uunet!olivea!sgigate!sgiblab!adagio.panasonic.com!nntp-server.caltech.edu!keith
3
+ Newsgroups: alt.atheism
4
+ Subject: Re: <Political Atheists?
5
+ Message-ID: <1pivdqINN3kd@gap.caltech.edu>
6
+ From: keith@cco.caltech.edu (Keith Allan Schneider)
7
+ Date: 3 Apr 93 03:14:02 GMT
8
+ References: <11700@vice.ICO.TEK.COM> <1993Mar31.230523.13892@blaze.cs.jhu.edu>
9
+ <930401.112329.0u1.rusnews.w165w@mantis.co.uk> <11710@vice.ICO.TEK.COM>
10
+ Organization: California Institute of Technology, Pasadena
11
+ NNTP-Posting-Host: lloyd.caltech.edu
12
+ Lines: 17
13
+
14
+ bobbe@vice.ICO.TEK.COM (Robert Beauchaine) writes:
15
+
16
+ > And in the US, even that argument doesn't stand. It costs far
17
+ > more to execute a criminal in this country than it does to feed,
18
+ > clothe, and shelter them for the remainder of their natural life.
19
+ > Some people believe this is a fault of our judicial system. I
20
+ > find it to be one of it's greatest virtues.
21
+
22
+ I assume that you are talking about the appeals processes, etc.?
23
+ Well, it should be noted that people who are imprisoned for life
24
+ will also tend to appeal (though not quite as much in the "final
25
+ hours."
26
+
27
+ Anyway, economics is not a very good reason to either favor or oppose
28
+ the punishment.
29
+
30
+ keith
data/20_newsgroups/alt.atheism/51161 ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Xref: cantaloupe.srv.cs.cmu.edu alt.atheism:51161 talk.origins:40407
2
+ Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!husc-news.harvard.edu!hsdndev!yale!yale.edu!ira.uka.de!sol.ctr.columbia.edu!
3
+ zaphod.mps.ohio-state.edu!usc!elroy.jpl.nasa.gov!nntp-server.caltech.edu!juliet.caltech.edu!lmh
4
+ Newsgroups: alt.atheism,talk.origins
5
+ Subject: Re: Americans and Evolution
6
+ Message-ID: <2APR199320114713@juliet.caltech.edu>
7
+ From: lmh@juliet.caltech.edu (Henling, Lawrence M.)
8
+ Date: 3 Apr 93 04:11:00 GMT
9
+ References: <1993Mar27.115953@IASTATE.EDU> <31MAR199321091163@juliet.caltech.edu> <1APR199313404295@skyblu.ccit.arizona.edu>
10
+ Distribution: world,local
11
+ Organization: California Institute of Technology
12
+ NNTP-Posting-Host: juliet.caltech.edu
13
+ News-Software: VAX/VMS VNEWS 1.41
14
+ Lines: 18
15
+
16
+ In article <1APR199313404295@skyblu.ccit.arizona.edu<, lippard@skyblu.ccit.arizona.edu (James J. Lippard) writes...
17
+ <In article <31MAR199321091163@juliet.caltech.edu<, lmh@juliet.caltech.edu (Henling, Lawrence M.) writes...
18
+ <<Atheism (Greek 'a' not + 'theos' god) Belief that there is no god.
19
+ <<Agnosticism (Greek 'a' not + ~ 'gnostein ?' know) Belief that it is
20
+ << not possible to determine if there is a god.
21
+
22
+ <No. Agnosticism as you have here defined it is a positive belief--a
23
+ <belief that it is not possible to determine the existence of any gods.
24
+ <That's a belief I'm inclined to reject. You have also defined atheism
25
+ <here as a positive belief--that there is no god. A fairly large number
26
+ <of atheists on alt.atheism reject this definition, instead holding that
27
+ <atheism is simply the absence of belief in a god. Michael Martin, in
28
+ <_Atheism: A Philosophical Justification_, distinguishes strong atheism
29
+
30
+ My mistake. I will have to get a newer dictionary and read the
31
+ follow up line.
32
+
33
+ larry henling lmh@shakes.caltech.edu