> In article > <658b5fc1-2db9-49d9-a06b-fc33e6723...@g23g2000yqh.googlegroups.com>, > Nick Keighley <nick_keighley_nos...@hotmail.com> wrote:
> > On 2 Nov, 19:19, Seebs <usenet-nos...@seebs.net> wrote: > > > On 2009-11-02, spinoza1111 <spinoza1...@yahoo.com> wrote: > > > > On Nov 2, 2:34 am, Seebs <usenet-nos...@seebs.net> wrote: > > > >> Could you give us a single concrete example of a language you believe has > > > >> done a "halfway decent job of language design"? Hint: If it has any > > > >> of the traits you bitch about in C, I won't believe you.
> > "ALGOL 60 was a language so far ahead of its time that it > > was not only an improvement on its predecessors but also > > on nearly all its successors". > > --C.A.R. Hoare
> Mmmm. From a purist language perspective, perhaps.
Oh, I just like the quote. And I quite liked Algol-60 when I used it.
> Trouble is, when I > was introduced to Algol during my post-grad CS course in 1968, the > implementation available (on an IBM 7090) expected that you quote every > keyword,
ah, yes
'BEGIN' I := 1; 'END'
not really Algol-60's fault there. The keywords should be distinguishable from the identifiers. They used bold in books. Some implementations used quoting to mark the keywords. Now imagine you have to write that on a "coding pad" for a key-punch operator.
> and also we were told that Algol itself had no standard I/O > statements (every implementation had its own - I haven't verified this).
there were no standard i/o statements. It was used a lot for specifying algorithms, so i/o was not deemed that important. I also think way back then they weren't sure how to do i/o. Fortran was pretty nasty in the i/o as well.
> So much for portability.
I'm not sure anyone really considered it. The algorithm was portable, you just bunged a few extra cards on the end to define the i/o. ;-)
> Most of us have to earn our corn in the real world, so we use what's > available. Writing networking software in the '80s to run cross-platform > on the VAX and also under VM/CMS, C was the best choice. To me it had > various drawbacks but like any normal person I just got on with it.
Algol-60 was interesting at the time and still has some interesting points, but one of the reasons I use the quote is that I don't entirely agree with it.
-- "The hacker has broken the Navy's quantum encryption"
In article <45a4ad36-82de-4613-b2b4-0c4f62b62...@k4g2000yqb.googlegroups.com> Nick Keighley <nick_keighley_nos...@hotmail.com> writes: > On 3 Nov, 14:07, Tim Streater <timstrea...@waitrose.com> wrote: ... > > Trouble is, when I > > was introduced to Algol during my post-grad CS course in 1968, the > > implementation available (on an IBM 7090) expected that you quote every > > keyword, > > ah, yes > > 'BEGIN' > I :=3D 1; > 'END' > > not really Algol-60's fault there. The keywords should be > distinguishable from the identifiers. They used bold in books. Some > implementations used quoting to mark the keywords. Now imagine you > have to write that on a "coding pad" for a key-punch operator.
The implementation I did use first used underlining, just as in the Revised Report. (Flexowriter with 7-level punched tape, also just as the RR.)
When you do not distinguish you get something Fortran like that has no reserved words and where space is insignificant, but it requires a lot of look-ahead to pars. I.e. given 9999 FORMAT(5 it is not yet known whether that is a FORMAT statement or an assignment to an element of the array FORMAT. (Many Fortran compilers did it wrong if an array FORMAT was used...) -- dik t. winter, cwi, science park 123, 1098 xg amsterdam, nederland, +31205924131 home: bovenover 215, 1025 jn amsterdam, nederland; http://www.cwi.nl/~dik/
In article <timstreater-047CAF.16023803112...@news.individual.net>, Tim Streater <timstrea...@waitrose.com> wrote:
>> not really Algol-60's fault there. The keywords should be >> distinguishable from the identifiers. They used bold in books. Some >> implementations used quoting to mark the keywords. >Languages these days don't seem to have this problem.
They do, if by "this problem" you mean the problem of distinguishing keywords from identifiers. They just choose the other approach of *not* making them automatically distinguishable, with the consequence that you can't compatibly extend the language with new keywords. Thus C header files containing identifies such as "new" and "namespace" cannot be included in C++ programs.
Of course, some languages have it even worse. I remember seeing a Basic program with deliberate obfuscation like
30 LET A$ = LEFT$(A$, 10) 40 REMOVE "XYZ" FROM A$
-- Richard -- Please remember to mention me / in tapes you leave behind.
> In article <timstreater-047CAF.16023803112...@news.individual.net>, > Tim Streater <timstrea...@waitrose.com> wrote:
>>> not really Algol-60's fault there. The keywords should be >>> distinguishable from the identifiers. They used bold in books. Some >>> implementations used quoting to mark the keywords.
>>Languages these days don't seem to have this problem.
> They do, if by "this problem" you mean the problem of distinguishing > keywords from identifiers. They just choose the other approach of > *not* making them automatically distinguishable, with the consequence > that you can't compatibly extend the language with new keywords. Thus > C header files containing identifies such as "new" and "namespace" > cannot be included in C++ programs.
> Of course, some languages have it even worse. I remember seeing a > Basic program with deliberate obfuscation like
> 30 LET A$ = LEFT$(A$, 10) > 40 REMOVE "XYZ" FROM A$
Richard Tobin <rich...@cogsci.ed.ac.uk> wrote: >In article <quZHm.1367$Ym4....@text.news.virginmedia.com>, >bartc <ba...@freeuk.com> wrote:
>>> Of course, some languages have it even worse. I remember seeing a >>> Basic program with deliberate obfuscation like
>>> 30 LET A$ = LEFT$(A$, 10) >>> 40 REMOVE "XYZ" FROM A$
>>What is the obfuscation?
>See! It works!
>The second line is a comment, as is any line beginning "REM", because >of Basic's keyword parsing.
Hah! Yes, I should have spotted that. We used to do things like that all the time, back in the day.
Also, I certainly don't remember any keyword (functionality) of "remove" in BASIC, but I assumed that it must have been present in the flavor you were using. I don't think BASIC was ever standardized...
In article <hcqc85$1p...@pc-news.cogsci.ed.ac.uk>,
Richard Tobin <rich...@cogsci.ed.ac.uk> wrote: >In article <hcq4m4$c6...@news.xmission.com>, >Kenny McCormack <gaze...@shell.xmission.com> wrote: >>Also, I certainly don't remember any keyword (functionality) of "remove" >>in BASIC
>You're right, there wasn't any. The program I'm remembering had >several other fake keywords, such as REMEMBER and REMERGE.
Yeah, that's what we used to do. Write things like:
REMEMBER to do this...
I also have a vague memory of it working like that in DOS batch, but current testing reveals that it doesn't do it in either Windows CMD.EXE or in DOSBox. I don't have quick access at the moment to a real DOS machine to test it...
> On 1 Nov, 03:25,spinoza1111<spinoza1...@yahoo.com> wrote:
> > On Nov 1, 4:28 am, Nick Keighley <nick_keighley_nos...@hotmail.com> > > > On 31 Oct, 12:51,spinoza1111<spinoza1...@yahoo.com> wrote: > > > > all of > > > > you creeps praise [Schildt} for his clarity, which shows you don't know the > > > > meaning of that word, for it means "conducive to understanding and > > > > acquiring JUSTIFIED TRUE BELIEF".
> > You've deliberately chosen the wrong definition:
> I did not. There were many definitions listed and I just quoted the > first. They all read pretty similarly to me. And none of them > mentioned Justified True Belief.
The Oxford English Dictionary does, in its definition of knowledge. And, it defines "understanding" as "having knowledge", and "clarity" as "leading to understanding". You've deliberately chosen the wrong definition.
> clarity: clearness [Chambers] > clearness: in a clear manner: distinctly [Chambers]
> Just because you humpty-dumpty the english langauge doesn't me we have > to go along with it.
No, I used the OED.
> > the visual > > definition. Furthermore, you've selected an inferior dictionary.
> riight. I assumed you'd just rant that dictionaries were a plot by neo- > facist capitalist fast cats to supress the worker and and the > struggling artist. A simple expression of marxist dialetic and > envisioning the class struggle in a post inductrial age. When I taught > nash how to win the Nobel prize we didn't use a faggot dictionary as > neither of us was autistic.
No, your use of dictionaries is in error. And if you can't spell "dialectic" don't satirize Marxist writings. You look like a fool.
On Nov 3, 6:31 pm, Nick Keighley <nick_keighley_nos...@hotmail.com> wrote:
> On 2 Nov, 19:19, Seebs <usenet-nos...@seebs.net> wrote:
> > On 2009-11-02,spinoza1111<spinoza1...@yahoo.com> wrote: > > > On Nov 2, 2:34 am, Seebs <usenet-nos...@seebs.net> wrote: > > Seriously, you're claiming "most C programmers" are confused by this, but > > you've yet to demonstrate that even ONE programmer has been confused by > > this. Every book I'm aware of states it explicitly, and I have never in > > all my years of programming and reading C code seen a single person make > > a mistake with this.
> I think there may a bit of "luck" involved here. I suspect a sample of > C programmers if asked, which order f and g were called in in f() + g > () most would answer "f". The reason they hardly get bitten by this > is a natural shyness of obscure code. And exploiting multiple
It's obscure not because it's obscure in any common sense or mathematical way, but because of the limitations of C. C failed to support common sense, and this is a fault of C.
> functions for their value and their side effects might be regarded as > obscure (even if they didn't quite phrase it that way). The best one I > can think of is some sort of stream reader but then you'd have to be > unlucky enough to do arithmatic on the values.
> /* calculate number of entries from start and end */ > num_vals = -(read_val() - read_val());
> which would probably cause most people to blink.
> /* calculate velocity from distance and time */ > velocity = read_val() / read_val();
> /* read word */ > word = read_val() << 8 | read_val();
> the last one is plausible
> <snip>
> > >> Could you give us a single concrete example of a language you believe has > > >> done a "halfway decent job of language design"? Hint: If it has any > > >> of the traits you bitch about in C, I won't believe you.
> "ALGOL 60 was a language so far ahead of its time that it > was not only an improvement on its predecessors but also > on nearly all its successors". > --C.A.R. Hoare
> > > C Sharp & Java. Both of these reject reordering of a()+b() and after > > > precedence, evaluate left to right.
> > Can't speak to C Sharp much. (Obviously, "portability" is a moot point > > there.) But let's keep Java in mind, then.
> I've heard it said that both Java and C Hash are both equally > unportable as both both only run on a single platform (their VM) > :-)
> <snip>
> > > Nobody's capable of thinking themselves at all "intelligent" unless > > > constantly and addictively reassured by meaningless victories over > > > code that was in most cases poorly designed in a hack o rama, like > > > rats pressing a lever.
> speak for yourself
I'm not speaking for myself, since I escaped the rat o rama five years ago.
> On Mon, 02 Nov 2009 19:19:55 +0000, Seebs wrote: > > On 2009-11-02,spinoza1111<spinoza1...@yahoo.com> wrote: > >> And you apparently don't even > >> understand my contention: that the "indeterminacy" is not a positive > >> and observable thing, because most C programmers stay with one compiler > >> or a narrow range, and they see determinacy...yet are blamed for your > >> screwup because they haven't read the standard!
> > Name one.
> > Seriously, you're claiming "most C programmers" are confused by this, > > but you've yet to demonstrate that even ONE programmer has been confused > > by this. Every book I'm aware of states it explicitly, and I have never > > in all my years of programming and reading C code seen a single person > > make a mistake with this.
> You probably have forgotton about Herb Schildt. Herb was the kind of > red blooded American guy who only needed to bought a Borland compiler > , got himself a copy of the C standard, to write a book about the > infamous C programming language standard, that almost won the him > the Pullitzer price, and he was nominated for the Nobel prize > for economics, too!
> >>> You've admitted that you don't know much about C. You've proven that
> But he taught it at Princeton, you fool!
> >> No, I have said that while I was asked Princeton to teach C, and assist
> OMG
> AvK- Hide quoted text -
> - Show quoted text -
Yeah, I taught it at Princeton, you fool. I didn't get my dick caught in the wringer coding for some reinsurance firm and I don't post from East Jesus. I also read more than you in all fields, and I'm better looking as well.
On 2009-11-04, spinoza1111 <spinoza1...@yahoo.com> wrote:
> The Oxford English Dictionary does, in its definition of knowledge.
Its definition, singular? Or does it have multiple ones?
> And, it defines "understanding" as "having knowledge", and "clarity" > as "leading to understanding". You've deliberately chosen the wrong > definition.
There are multiple definitions. You don't get to assert that a specific one is the only possible one.
Anyway, this was already resolved: When text is clear, you develop accurate knowledge of the *meaning of the text* -- not necessarily of the world.
The statement "elephants are always green" is quite clear, and it does lead to justified true belief -- the justified true belief that the meaning of the statement is that, for all e such that e is an elephant, e has the attribute of being green. It does not, as it happens, describe the world correctly, but that doesn't preclude the development of justified true belief about the *statement*.
<spinoza1...@yahoo.com> wrote: >On Nov 3, 8:01 pm, Nick Keighley <nick_keighley_nos...@hotmail.com> >wrote: >> On 1 Nov, 03:25,spinoza1111<spinoza1...@yahoo.com> wrote:
>> > On Nov 1, 4:28 am, Nick Keighley <nick_keighley_nos...@hotmail.com> >> > > On 31 Oct, 12:51,spinoza1111<spinoza1...@yahoo.com> wrote: >> > > > all of >> > > > you creeps praise [Schildt} for his clarity, which shows you don't know the >> > > > meaning of that word, for it means "conducive to understanding and >> > > > acquiring JUSTIFIED TRUE BELIEF".
>> > You've deliberately chosen the wrong definition:
>> I did not. There were many definitions listed and I just quoted the >> first. They all read pretty similarly to me. And none of them >> mentioned Justified True Belief.
>The Oxford English Dictionary does, in its definition of knowledge. >And, it defines "understanding" as "having knowledge", and "clarity" >as "leading to understanding". You've deliberately chosen the wrong >definition.
>> clarity: clearness [Chambers] >> clearness: in a clear manner: distinctly [Chambers]
>> Just because you humpty-dumpty the english langauge doesn't me we have >> to go along with it.
>No, I used the OED.
No, you made it up.
These are ALL the definitions of "clarity" in the OED: (http://dictionary.oed.com) CLARITY 1. Brightness, lustre, brilliancy, splendour. Obs. (An exceedingly common sense in 17th c.) b. with pl. Obs. c. fig. ‘Light’. Obs. 2. Glory, divine lustre. Obs. 3. Illustrious quality; lustre of renown. Obs. 4. Clearness: in various current uses; e.g. of colour, sky, atmosphere, sight, intellect, judgement, conscience, style.
And these are all the definitions of CLEARNESS The quality of being clear; in various senses of the adj. 1. Brightness, luminousness; splendour, brilliancy; fairness, beauty; fineness of weather. Obs. 2. Freedom from opacity, obscurity, or discolourment; distinctness or purity of light or colour; transparency, pellucidness. 3. Distinctness of vision, sound, expression, comprehension, etc. 4. Purity; innocence; openness. Obs. 5. Freedom from anything obstructive.
And fnially, of "clear", which had many senses. But no mention of your "definition": CLEAR: A. adj. I. Of light, colour, things illuminated. 1. a. orig. Expressing the vividness or intensity of light: Brightly shining, bright, brilliant. b. Now expressing the purity or uncloudedness of light; clear fire, a fire in full combustion without flame or smoke. Also used with adjs., as clear white, brown, etc. 2. a. Of the day, daylight, etc.: Fully light, bright; opposed to dusk or twilight. arch. b. Of the weather: orig. Full of sunshine, bright, ‘fine’; serene, ‘fair’. Obs. (Cf. to clear up.) c. Now: Free from cloud, mists, and haze; a ‘clear day’, ‘clear weather’ is that in which the air is transparent so that distant objects are distinctly seen; a ‘clear sky’, a sky void of cloud. d. fig. Serene, cheerful; of unclouded countenance or spirit. Obs. or arch. 3. a. Allowing light to pass through, transparent. b. Of coloured liquids, etc.; Translucent, pellucid, free from sediment, not turbid or opaque. 4. a. Bright or shining, as polished illuminated surfaces; lustrous. (Now expressing esp. purity and evenness of lustre.) b. gen. Bright, splendid, brilliant. Obs. c. A common epithet of women: Beautiful, beauteous, fair. Obs. d. Of the complexion, skin, etc.: Bright, fresh, and of pure colour; blooming; in modern use, esp. implying purity or transparency of the surface skin, and absence of freckles, discolouring spots, or ‘muddiness’ of complexion. 5. fig. Illustrious. [So L. clrus.] Obs. II. Of vision, perception, discernment. 6. Of lines, marks, divisions: Clearly seen, distinct, well-marked, sharp. 7. a. Of words, statements, explanations, meaning: Easy to understand, fully intelligible, free from obscurity of sense, perspicuous. b. Also transferred to the speaker or writer. c. Not in cipher or code. Often absol., in clear. 8. Of a vision, conception, notion, view, memory, etc.: Distinct, unclouded, free from confusion. 9. a. Manifest to the mind or judgement, evident, plain. b. Of a case at law: Of which the solution is evident. 10. Of the eyes, and faculty of sight: Seeing distinctly, having keen perception. 11. Of the faculty of discernment: That sees, discerns, or judges without confusion of ideas. 12. Of persons: Having a vivid or distinct impression or opinion; subjectively free from doubt; certain, convinced, confident, positive, determined. Const. in (an opinion, belief), of (a fact), as to, on, about (a fact, course of action), for (a course of action); that. I am clear that = it is clear to me that. [So in 12th c. Fr.] III. Of sound. 13. a. Of sounds, voice: Ringing, pure and well-defined, unmixed with dulling or interfering noises; distinctly audible. b. Phonetics. Designating one of two varieties of lateral consonants (the other being called ‘dark’) (see quots.). IV. Of moral purity, innocence. 14. fig. from 3: Pure, guileless, unsophisticated. 15. a. Unspotted, unsullied; free from fault, offence, or guilt; innocent. Cf. CLEAN a. b. Const. of, from. V. Of free, unencumbered condition. 16. a. Of income, gain, etc.: Free from any encumbrance, liability, deduction, or abatement; unencumbered; net. b. Sheer, mere, bare, unaided. Obs. 17. Free from all limitation, qualification, question, or shortcoming; absolute, complete; entire, pure, sheer. Cf. CLEAN a. 18. Free from encumbering contact; disengaged, unentangled, out of reach, quite free; quit, rid. a. with from. b. with of. Quit, rid, free. c. In such phrases as to get or keep (oneself) clear, to steer clear, go clear, stand clear, the adjective passes at length into an adverb. d. With n. of action. 19. Of measurement of space or time: combining the notions of senses 17, 18. a. Of distance. Cf. C. 5. b. clear side (of a ship): see quot. c. clear day or days: a day or days, with no part occupied or deducted. 20. a. Free from obstructions or obstacles; unoccupied by buildings, trees, furniture, etc.; open. b. Free from roughnesses, protuberances, knots, branches; = CLEAN a. 12. c. clear ship: a ship whose deck is cleared for action. 21. Free or emptied of contents, load, or cargo; empty; esp. of a ship, when discharged. 22. Free from any encumbrance or trouble; out of debt; out of the hold of the law. 23. Free from pecuniary complications. 24. slang. Very drunk. Obs. 25. a. U.S. slang. Free from admixture, unadulterated, pure, ‘real.’ clear grit: ‘real stuff’: see quots. b. In technical or trade use. B. adv. [Clear is not originally an adverb, and its adverbial use arose partly out of the predicative use of the adjective, as in ‘the sun shines clear’; partly out of the analogy of native English adverbs which by loss of final -e had become formally identical with their adjectives, esp. of CLEAN adv., which it has largely supplanted.] 1. Brightly, with effulgence; with undimmed or unclouded lustre. [Cf. bright similarly used.] 2. In a clear or perspicuous manner; distinctly. Obs. (now CLEARLY.) 3. Manifestly, evidently. Obs. (now CLEARLY.) 4. a. With clear voice; distinctly; CLEARLY. b. clear-away: entirely, completely. 5. a. Completely, quite, entirely, thoroughly; = CLEAN adv. 5. Obs. exc. dial. and U.S. b. With away, off, out, through, over, and the like; esp. where there is some notion of getting clear of obstructions, or of escaping; = CLEAN. 6. See other quasi-adverbial uses in A. 18c. C. n. I. Elliptical uses of the adjective. 1. A fair lady, a ‘fair’. Obs. 2. Brightness, clearness. Obs. 3. The clear part of a mirror. Obs. 4. Painting. (pl.) Lights as opposed to shades. 5. a. Clear space, part of anything clear of the frame or setting; phr. in the clear, in interior measurement. See A. 19. b. Colloq. phr. in the clear: (a) out of reach; (b) unencumbered; free from trouble, danger, suspicion, etc.; (c) having a clear profit. orig. U.S. II. Verbal n. from CLEAR v. 6. a. A clearing of the atmosphere, sky, or weather. b. With adverbs: clear-out, an act of clearing out (see CLEAR v. 26); clear-up, an act of clearing up, spec. the settlement of accounts (see CLEAR v. 27g); also attrib. D. Combinations. 1. With the adj.: chiefly parasynthetic; as clear-aired (having clear air), clear-crested, -faced, -featured, -hearted, -limbed, -minded, -pointed, -spirited, -stemmed, -throated, -toned, -voiced, -walled, -witted, etc. 2. With the adv., as clear-dangling, -drawn, -judging, -seeing, -shining, -smiling, -spoken, -standing, -swayed, -writ, etc. (See also A. 1b.) 3. Special comb.: clear-air gust or turbulence, disturbance of the atmosphere at high altitudes; clear-cake, a kind of confection, partly transparent; clear-cut a., sharply-chiselled, sharply defined; clear-cutness, the quality of being clear-cut; clear-cutting, -felling, the cutting down and removal of every tree in a given area; hence clear-fell, clear-felled adjs.; clear-light v., to illumine clearly; clear-matin, some kind of bread; clear-skin Austral., an unbranded beast (cf. clean-skin); also attrib.; clear-walk (see quot.); clear-way, clearway, (a) (see quot. a 1884); (b) a path or passage-way; (c) a road on which vehicles are not allowed to park or wait; clear-wing, attrib., popular name of the Hawk-moths with transparent wings (Ægeridæ); so clear-winged. Also CLEAR-EYED, CLEAR-HEADED, CLEAR-STARCH, etc. ADDITIONS SERIES 1993 clear, a., adv., and n. Add: [C.] [I.] Sense 6 in Dict. becomes 7. 6. In Scientology, a person who has completed a course of dianetic therapy and is considered free of neuroses and other physical or mental ills. Cf. *PRECLEAR n.
================ Conclusion: either you're lying, or delusional. In neither case will you admit your error, of
On 2009-11-04, Colonel Harlan Sanders <Har...@kfc.com> wrote:
> No, you made it up.
No, he just cherry-picked.
> And fnially, of "clear", which had many senses. But no mention of your > "definition":
Sort of.
> CLEAR: > 7. a. Of words, statements, explanations, meaning: Easy to understand, > fully intelligible, free from obscurity of sense, perspicuous. > b. Also transferred to the speaker or writer.
"Easy to understand".
Since he then cherry-picks from "understanding" to get to the sense of leading to knowledge, and then cherry-picks the definition of knowledge, and then commits a category error to jump from knowledge of the statement's meaning to knowledge of the world, he's not technically lying or delusional, just completely wrong[*].
-s [*] Actually, I can't prove that he's not lying, or that he's not delusional, I merely observe that his statements are consistent with a merely disingenuous or incompetent observer. -- Copyright 2009, all wrongs reversed. Peter Seebach / usenet-nos...@seebs.net http://www.seebs.net/log/ <-- lawsuits, religion, and funny pictures http://en.wikipedia.org/wiki/Fair_Game_(Scientology) <-- get educated!
In <slrnhf3iss.kks.usenet-nos...@guild.seebs.net>, Seebs wrote:
<snip>
> [*] Actually, I can't prove that he's not lying, or that he's not > delusional, I merely observe that his statements are consistent with > a merely disingenuous or incompetent observer.
Hanlon's Razor applies.
-- Richard Heathfield <http://www.cpax.org.uk> Email: -http://www. +rjh@ "Usenet is a strange place" - dmr 29 July 1999 Sig line vacant - apply within
On 2009-11-04, Richard Heathfield <r...@see.sig.invalid> wrote:
> In <slrnhf3iss.kks.usenet-nos...@guild.seebs.net>, Seebs wrote: >> [*] Actually, I can't prove that he's not lying, or that he's not >> delusional, I merely observe that his statements are consistent with >> a merely disingenuous or incompetent observer. > Hanlon's Razor applies.
I think the Verisign Corollary[*] actually comes into play:
Sometimes, something can only be adequately explained by malice *and* stupidity.
[*] Named after thing where they set the root servers to yield fraudulent responses for nonexistent domains.
On 4 Nov, 17:20, spinoza1111 <spinoza1...@yahoo.com> wrote:
> On Nov 3, 8:01 pm, Nick Keighley <nick_keighley_nos...@hotmail.com> > > On 1 Nov, 03:25,spinoza1111<spinoza1...@yahoo.com> wrote: > > > On Nov 1, 4:28 am, Nick Keighley <nick_keighley_nos...@hotmail.com> > > > > On 31 Oct, 12:51,spinoza1111<spinoza1...@yahoo.com> wrote: > > > > > all of > > > > > you creeps praise [Schildt} for his clarity,
note: it was "the creeps" that were using the worrd "clarity" not you.
> > > > > which shows you don't know the > > > > > meaning of that word, for it means "conducive to understanding and > > > > > acquiring JUSTIFIED TRUE BELIEF".
> > > You've deliberately chosen the wrong definition:
> > I did not. There were many definitions listed and I just quoted the > > first. They all read pretty similarly to me. And none of them > > mentioned Justified True Belief.
> The Oxford English Dictionary does, in its definition of knowledge. > And, it defines "understanding" as "having knowledge", and "clarity" > as "leading to understanding". You've deliberately chosen the wrong > definition.
you've twice called me a liar. I've used two dictionaries with reasonable reputations. I didn't "pick the wrong definition", because no other definition was offered. You used a larger dictionary with more meanings (most of which are probably obsolete or rarely used) and /you/ picked the wrong meaning. I (and "the creeps") are using "clarity" in the normally accepted manner you are not.
> > clarity: clearness [Chambers] > > clearness: in a clear manner: distinctly [Chambers]
I didn't pick that.
> > Just because you humpty-dumpty the english langauge doesn't me we have > > to go along with it.
> No, I used the OED.
you are cherry picking the OED.
> > > the visual > > > definition. Furthermore, you've selected an inferior dictionary.
two inferior dictionaries.
> > riight. I assumed you'd just rant that dictionaries were a plot by neo- > > facist capitalist fast cats to supress the worker and and the > > struggling artist. A simple expression of marxist dialetic and > > envisioning the class struggle in a post inductrial age. When I taught > > nash how to win the Nobel prize we didn't use a faggot dictionary as > > neither of us was autistic.
> No, your use of dictionaries is in error. And if you can't spell > "dialectic" don't satirize Marxist writings. You look like a fool.
On 4 Nov, 18:53, Richard Heathfield <r...@see.sig.invalid> wrote:
> In <slrnhf3iss.kks.usenet-nos...@guild.seebs.net>, Seebs wrote:
> <snip>
> > [*] Actually, I can't prove that he's not lying, or that he's not > > delusional, I merely observe that his statements are consistent with > > a merely disingenuous or incompetent observer.
>On 2009-11-04, Colonel Harlan Sanders <Har...@kfc.com> wrote: >> No, you made it up.
>No, he just cherry-picked.
>> And fnially, of "clear", which had many senses. But no mention of your >> "definition":
>Sort of.
>> CLEAR: >> 7. a. Of words, statements, explanations, meaning: Easy to understand, >> fully intelligible, free from obscurity of sense, perspicuous. >> b. Also transferred to the speaker or writer.
>"Easy to understand".
Yes, but Spinoza asserted:
> > On 31 Oct, 12:51,spinoza1111<spinoza1...@yahoo.com> wrote: > > > you creeps praise [Schildt} for his clarity, which shows you don't know the > > > meaning of that word, for it means "conducive to understanding and > > > acquiring JUSTIFIED TRUE BELIEF".
It's the "justifed true belief" part that he pulls out of his ass.
>Since he then cherry-picks from "understanding" to get to the sense of >leading to knowledge, and then cherry-picks the definition of knowledge, >and then commits a category error to jump from knowledge of the statement's >meaning to knowledge of the world, he's not technically lying or delusional, >just completely wrong[*].
That's the same kind of game you can play by feeding a word into an automatic translator, going through four languages and back to English. I'm sure you can get from "black" to "white" by some route if you tried.
>-s >[*] Actually, I can't prove that he's not lying, or that he's not >delusional, I merely observe that his statements are consistent with a >merely disingenuous or incompetent observer.
I doubt he's consciously lying. I've met people like that, they have a process that just changes how they remember things, so they really believe their version despite evidence to the contrary.
On 2009-11-05, Colonel Harlan Sanders <Har...@kfc.com> wrote:
> It's the "justifed true belief" part that he pulls out of his ass.
Well, yes, but his ass contains a list of the definitions of "understanding", one of which includes knowledge, and also a particular definition of the word "knowledge".
> I doubt he's consciously lying. I've met people like that, they have a > process that just changes how they remember things, so they really > believe their version despite evidence to the contrary.
Yeah. But he's right, NPD is not a learning disability per se.
On 05 Nov 2009 17:30:29 GMT, Seebs <usenet-nos...@seebs.net> wrote:
>On 2009-11-05, Colonel Harlan Sanders <Har...@kfc.com> wrote: >> It's the "justifed true belief" part that he pulls out of his ass.
>Well, yes, but his ass contains a list of the definitions of "understanding", >one of which includes knowledge, and also a particular definition of >the word "knowledge".
Realising that I'm beating a dead horse... That reasoning isn't the original claim:
On 31 Oct, 12:51,spinoza1111<spinoza1...@yahoo.com> wrote:
> you creeps praise [Schildt} for his clarity, which shows you don't know the > meaning of that word, for it means "conducive to understanding and > acquiring JUSTIFIED TRUE BELIEF".
He "clearly" says that this is simply the meaning of "clarity", not that it can be deduced from a chain of definitions.
If he'd said:
Clarity means understanding. Understanding means knowledge. Knowledge means truth. Therefore clarity means truth.
the dubiousness of this would have been obvious. But regardless of the merits of this, the whole idea is silly as the "creeps" who described Schildt's writing as clear went on to say that it was full of untruths.
By the way, I didn't see "justified true belief" mentioned in any of the daisy chain of dictionary definitions. That appears to be a proposition from philosophy, using their special definitions. They define the term "knowledge" so that it refers to things that are true. But in common usage that can't be assumed.
>> I doubt he's consciously lying. I've met people like that, they have a >> process that just changes how they remember things, so they really >> believe their version despite evidence to the contrary.
>Yeah. But he's right, NPD is not a learning disability per se.
It sort of is. Because they never admit errors, and expunge them from their minds, they never learn from their mistakes, so they can repeat the same actions over and over despite failing almost every time. If confronted with this they will try any means to change the subject, usually by going on the attack on an unrelated topic. And a few months later, again they will recount an unrecognizable version of events, where they actually won, or perhaps were the victims of some conspiracy. But they were never, ever at fault.
> On Wed, 4 Nov 2009 09:20:54 -0800 (PST),spinoza1111
> <spinoza1...@yahoo.com> wrote: > >On Nov 3, 8:01 pm, Nick Keighley <nick_keighley_nos...@hotmail.com> > >wrote: > >> On 1 Nov, 03:25,spinoza1111<spinoza1...@yahoo.com> wrote:
> >> > On Nov 1, 4:28 am, Nick Keighley <nick_keighley_nos...@hotmail.com> > >> > > On 31 Oct, 12:51,spinoza1111<spinoza1...@yahoo.com> wrote: > >> > > > all of > >> > > > you creeps praise [Schildt} for his clarity, which shows you don't know the > >> > > > meaning of that word, for it means "conducive to understanding and > >> > > > acquiring JUSTIFIED TRUE BELIEF".
> >> > You've deliberately chosen the wrong definition:
> >> I did not. There were many definitions listed and I just quoted the > >> first. They all read pretty similarly to me. And none of them > >> mentioned Justified True Belief.
> >The Oxford English Dictionary does, in its definition of knowledge. > >And, it defines "understanding" as "having knowledge", and "clarity" > >as "leading to understanding". You've deliberately chosen the wrong > >definition.
> >> clarity: clearness [Chambers] > >> clearness: in a clear manner: distinctly [Chambers]
> >> Just because you humpty-dumpty the english langauge doesn't me we have > >> to go along with it.
> >No, I used the OED.
> No, you made it up.
> These are ALL the definitions of "clarity" in the OED: > (http://dictionary.oed.com) > CLARITY > 1. Brightness, lustre, brilliancy, splendour. Obs. (An exceedingly > common sense in 17th c.) > b. with pl. Obs. > c. fig. ‘Light’. Obs. > 2. Glory, divine lustre. Obs. > 3. Illustrious quality; lustre of renown. Obs. > 4. Clearness: in various current uses; e.g. of colour, sky, > atmosphere, sight, intellect, judgement, conscience, style.
> And these are all the definitions of > CLEARNESS > The quality of being clear; in various senses of the adj. > 1. Brightness, luminousness; splendour, brilliancy; fairness, beauty; > fineness of weather. Obs. > 2. Freedom from opacity, obscurity, or discolourment; distinctness or > purity of light or colour; transparency, pellucidness. > 3. Distinctness of vision, sound, expression, comprehension, etc. > 4. Purity; innocence; openness. Obs. > 5. Freedom from anything obstructive.
> And fnially, of "clear", which had many senses. But no mention of your > "definition": > CLEAR: > A. adj. I. Of light, colour, things illuminated. > 1. a. orig. Expressing the vividness or intensity of light: Brightly > shining, bright, brilliant. > b. Now expressing the purity or uncloudedness of light; clear fire, a > fire in full combustion without flame or smoke. Also used with adjs., > as clear white, brown, etc. > 2. a. Of the day, daylight, etc.: Fully light, bright; opposed to dusk > or twilight. arch. > b. Of the weather: orig. Full of sunshine, bright, ‘fine’; serene, > ‘fair’. Obs. (Cf. to clear up.) > c. Now: Free from cloud, mists, and haze; a ‘clear day’, ‘clear > weather’ is that in which the air is transparent so that distant > objects are distinctly seen; a ‘clear sky’, a sky void of cloud. > d. fig. Serene, cheerful; of unclouded countenance or spirit. Obs. or > arch. > 3. a. Allowing light to pass through, transparent. > b. Of coloured liquids, etc.; Translucent, pellucid, free from > sediment, not turbid or opaque. > 4. a. Bright or shining, as polished illuminated surfaces; lustrous. > (Now expressing esp. purity and evenness of lustre.) > b. gen. Bright, splendid, brilliant. Obs. > c. A common epithet of women: Beautiful, beauteous, fair. Obs. > d. Of the complexion, skin, etc.: Bright, fresh, and of pure colour; > blooming; in modern use, esp. implying purity or transparency of the > surface skin, and absence of freckles, discolouring spots, or > ‘muddiness’ of complexion. > 5. fig. Illustrious. [So L. clrus.] Obs. > II. Of vision, perception, discernment. > 6. Of lines, marks, divisions: Clearly seen, distinct, well-marked, > sharp. > 7. a. Of words, statements, explanations, meaning: Easy to understand, > fully intelligible, free from obscurity of sense, perspicuous. > b. Also transferred to the speaker or writer. > c. Not in cipher or code. Often absol., in clear. > 8. Of a vision, conception, notion, view, memory, etc.: Distinct, > unclouded, free from confusion. > 9. a. Manifest to the mind or judgement, evident, plain. > b. Of a case at law: Of which the solution is evident. > 10. Of the eyes, and faculty of sight: Seeing distinctly, having keen > perception. > 11. Of the faculty of discernment: That sees, discerns, or judges > without confusion of ideas. > 12. Of persons: Having a vivid or distinct impression or opinion; > subjectively free from doubt; certain, convinced, confident, positive, > determined. Const. in (an opinion, belief), of (a fact), as to, on, > about (a fact, course of action), for (a course of action); that. I am > clear that = it is clear to me that. [So in 12th c. Fr.] > III. Of sound. > 13. a. Of sounds, voice: Ringing, pure and well-defined, unmixed with > dulling or interfering noises; distinctly audible. > b. Phonetics. Designating one of two varieties of lateral consonants > (the other being called ‘dark’) (see quots.). > IV. Of moral purity, innocence. > 14. fig. from 3: Pure, guileless, unsophisticated. > 15. a. Unspotted, unsullied; free from fault, offence, or guilt; > innocent. Cf. CLEAN a. > b. Const. of, from. > V. Of free, unencumbered condition. > 16. a. Of income, gain, etc.: Free from any encumbrance, liability, > deduction, or abatement; unencumbered; net. > b. Sheer, mere, bare, unaided. Obs. > 17. Free from all limitation, qualification, question, or shortcoming; > absolute, complete; entire, pure, sheer. Cf. CLEAN a. > 18. Free from encumbering contact; disengaged, unentangled, out of > reach, quite free; quit, rid. > a. with from. > b. with of. Quit, rid, free. > c. In such phrases as to get or keep (oneself) clear, to steer clear, > go clear, stand clear, the adjective passes at length into an adverb. > d. With n. of action. > 19. Of measurement of space or time: combining the notions of senses > 17, 18. a. Of distance. Cf. C. 5. > b. clear side (of a ship): see quot. > c. clear day or days: a day or days, with no part occupied or > deducted. > 20. a. Free from obstructions or obstacles; unoccupied by buildings, > trees, furniture, etc.; open. > b. Free from roughnesses, protuberances, knots, branches; = CLEAN a. > 12. > c. clear ship: a ship whose deck is cleared for action. > 21. Free or emptied of contents, load, or cargo; empty; esp. of a > ship, when discharged. > 22. Free from any encumbrance or trouble; out of debt; out of the hold > of the law. > 23. Free from pecuniary complications. > 24. slang. Very drunk. Obs. > 25. a. U.S. slang. Free from admixture, unadulterated, pure, ‘real.’ > clear grit: ‘real stuff’: see quots. > b. In technical or trade use. > B. adv. [Clear is not originally an adverb, and its adverbial use > arose partly out of the predicative use of the adjective, as in ‘the > sun shines clear’; partly out of the analogy of native English adverbs > which by loss of final -e had become formally identical with their > adjectives, esp. of CLEAN adv., which it has largely supplanted.] > 1. Brightly, with effulgence; with undimmed or unclouded lustre. [Cf. > bright similarly used.] > 2. In a clear or perspicuous manner; distinctly. Obs. (now CLEARLY.) > 3. Manifestly, evidently. Obs. (now CLEARLY.) > 4. a. With clear voice; distinctly; CLEARLY. > b. clear-away: entirely, completely. > 5. a. Completely, quite, entirely, thoroughly; = CLEAN adv. 5. Obs. > exc. dial. and U.S. > b. With away, off, out, through, over, and the like; esp. where there > is some notion of getting clear of obstructions, or of escaping; = > CLEAN. > 6. See other quasi-adverbial uses in A. 18c. > C. n. I. Elliptical uses of the adjective. > 1. A fair lady, a ‘fair’. Obs. > 2. Brightness, clearness. Obs. > 3. The clear part of a mirror. Obs. > 4. Painting. (pl.) Lights as opposed to shades. > 5. a. Clear space, part of anything clear of the frame or setting; > phr. in the clear, in interior measurement. See A. 19. > b. Colloq. phr. in the clear: (a) out of reach; (b) unencumbered; free > from trouble, danger, suspicion, etc.; (c) having a clear profit. > orig. U.S. > II. Verbal n. from CLEAR v. > 6. a. A clearing of the atmosphere, sky, or weather. > b. With adverbs: clear-out, an act of clearing out (see CLEAR v. 26); > clear-up, an act of clearing up, spec. the settlement of accounts (see > CLEAR v. 27g); also attrib. > D. Combinations. > 1. With the adj.: chiefly parasynthetic; as clear-aired (having clear > air), clear-crested, -faced, -featured, -hearted, -limbed, -minded, > -pointed, -spirited, -stemmed, -throated, -toned, -voiced, -walled, > -witted, etc. > 2. With the adv., as clear-dangling, -drawn, -judging, -seeing, > -shining, -smiling, -spoken, -standing, -swayed, -writ, etc. (See also > A. 1b.) > 3. Special comb.: clear-air gust or turbulence, disturbance of the > atmosphere at high altitudes; clear-cake, a kind of confection, partly > transparent; clear-cut a., sharply-chiselled, sharply defined; > clear-cutness, the quality of being clear-cut; clear-cutting, > -felling, the cutting down and removal of every tree in a given area; > hence clear-fell, clear-felled adjs.; clear-light v., to illumine > clearly; clear-matin, some kind of bread; clear-skin Austral., an > unbranded beast (cf. clean-skin); also attrib.; clear-walk (see > quot.); clear-way, clearway, (a) (see quot. a 1884); (b) a path or > passage-way; (c) a road on which vehicles are not allowed to park or > wait; clear-wing, attrib., popular name of the Hawk-moths with > transparent
On 2009-11-08, spinoza1111 <spinoza1...@yahoo.com> wrote:
> If there's anything worse than a redneck ignoramus, it's one with > broadband and a working credit card. Look at definition number 7.
We already pointed that out -- but you seem not to understand how a dictionary works. That gives you that one of many meanings has a particular word, one of the many meanings of which is the meaning you were asserting.
Either you're schizoprhenic, you're lying, or you have NO idea how to use a dictionary. I can't tell which.
> And > you shouldn't be using the full OED: it's not designed for people who > move their lips when they read, hoss. It's designed for teachers, > librarians and linguists, not for redneck retired programmers with > time on their hands.
Actually, it's designed for pretty much anyone who can read. I grew up with it, which is actually pretty obvious. (Hyperlexia ftw.)
> On Nov 3, 8:01 pm, Nick Keighley <nick_keighley_nos...@hotmail.com> > wrote:
> > On 1 Nov, 03:25,spinoza1111<spinoza1...@yahoo.com> wrote:
> > > On Nov 1, 4:28 am, Nick Keighley <nick_keighley_nos...@hotmail.com> > > > > On 31 Oct, 12:51,spinoza1111<spinoza1...@yahoo.com> wrote: > > > > > all of > > > > > you creeps praise [Schildt} for his clarity, which shows you don't know the > > > > > meaning of that word, for it means "conducive to understanding and > > > > > acquiring JUSTIFIED TRUE BELIEF".
> > > You've deliberately chosen the wrong definition:
> > I did not. There were many definitions listed and I just quoted the > > first. They all read pretty similarly to me. And none of them > > mentioned Justified True Belief.
> The Oxford English Dictionary does, in its definition of knowledge. > And, it defines "understanding" as "having knowledge", and "clarity" > as "leading to understanding". You've deliberately chosen the wrong > definition.
> > clarity: clearness [Chambers] > > clearness: in a clear manner: distinctly [Chambers]
> > Just because you humpty-dumpty the english langauge doesn't me we have > > to go along with it.
> No, I used the OED.
> > > The > > > OED has two definitions, one relating to visual clarity and the other > > > linking "clarity" to understanding.
> > I've only got an S-OED but I'll check that. (Can't do so immediately)
Shorter Oxford English Dictionary (found in a charity shop for 12UKP!!) [I've edited it to remove derivations (L, ME, OF) and examples]
Clarity 1. Brightness 2. Glory 3. Clearness: in various senses
On 29 Oct 2009 15:30:44 GMT, Seebs <usenet-nos...@seebs.net> wrote:
> On 2009-10-29, spinoza1111 <spinoza1...@yahoo.com> wrote: > > This is nonsense, since a||b and a&&b have always been implemented > > such that b is not evaluated when a is true (in the case of or) or b > > is false (in the case of and).
> "Always" may be a bit strong, there may be some stuff in the 1972 era > that wasn't sure about it.
I doubt it. According to dmr's HOPL2 paper, on his website as chist.html, B like BCPL had *both* semantics in & and | -- in a predicate context they shortcircuited, and in a value context they fully evaluated. He added && and || precisely to split off the shortcircuit semantics, leaving & and | (and ^) bitwise.
> But! That is a special case, introduced because it allowed some particular > idioms to work, such as "s && *s".
> It is, to use the term correctly (a rarity), the exception that proves the > rule. The fact that these are called out as a special exception shows that > the rule exists. The reason they're called out as a special exception even > shows you why the rule exists.
(That's a phrase, not a term. <G>)
And I don't think this is quite right either. They imply that some other rule exists, but they don't tell you what it is. It could be all right to left, *except* for && || ?: and comma. It could be inmost out, i.e. in same order as operator precedence and associativity; IME this is even what some people expect, and in dataflow terms I think it tends to be good if not optimal. It could be impl-defined: documented, and at least sufficiently deterministic to be documented. Of course actually it is unspecified -- explicitly.