mystifying - Topic Profile
  Home FAQ Contact Sign in
 
Advanced search
POPULAR GROUPS

more...

Most active groups for topic
alt.philosophy 83
soc.culture.hmong 32
alt.magick 25
uk.transport 18
comp.lang.forth 17
uk.sport.football.clubs.celtic 11
alt.seduction.fast 11
comp.lang.fortran 10
microsoft.public.outlook 10
nashville.general 9
Last week most active authors
No posts for a week
Last active threads
Re: unable to copy hyperlinks in email messages
Started tilly4 · Date: Sep 15, 2008 13:46 · 3 post(s)
wow masked magician doing criss angel stuff
Started bill page · Date: Sep 12, 2008 19:15 · 1 post(s)
News: Cells "from space" have unusual makeup
Started Robert Karl Stonjek · Date: Sep 11, 2008 09:28 · 3 post(s)
RfD - Local buffers, v4 (long)
Started Stephen Pelc · Date: Aug 11, 2008 05:57 · 36 post(s)
A Medical Morality Mandate!
Started zinnic · Date: Jul 23, 2008 19:18 · 38 post(s)
Reply to comments on Strawson
Date: Jul 18, 2008 12:02 · 57 post(s)
Re: association for the scientific study of consciousness
Started Ed · Date: Jun 8, 2008 09:47 · 122 post(s)
On the Construction of Consciousness
Started Sir Frederick · Date: Jul 3, 2008 02:53 · 14 post(s)
Mystic worm hole?
Started zinnic · Date: Jun 24, 2008 09:58 · 17 post(s)
why is the Great Dr. Strangelove a nazi scientist rather than a jew scientist?
Started animalishness · Date: May 16, 2008 17:21 · 84 post(s)
Last week hot threads
No posts for a week
Latest posts
Re: unable to copy hyperlinks in email messages
Group: microsoft.public.outlook · Group Profile · Search for mystifying in microsoft.public.outlook
Author: tilly4
Date: Sep 16, 2008 18:32

..., the copy option appears when I right click. I was able to copy a link in your message using Control + C-- so now I have a couple of ways to do so. Thanks so much for your help. I was mystified by the grey boxes, and afraid that I was compromising my security by relying on them before clicking. Elizabeth Weinberger "Diane Poremsky [MVP]" wrote: blocked is added to suspected phishing urls. what folder is the message in? ...
Show full article (3.95Kb)
wow masked magician doing criss angel stuff
Group: alt.magic.secrets · Group Profile · Search for mystifying in alt.magic.secrets
Author: bill page
Date: Sep 12, 2008 19:15

...1 Magics Biggest Secrets RETURNS! -------------------------------------------------------------------------------- “MAGIC’S BIGGEST SECRETS FINALLY REVEALED” The Masked Magician returns and dares to expose the secrets behind the world’s most mystifying illusions in “Magic’s Biggest Secrets Finally Revealed.” The controversial new series is scheduled to premiere on MyNetworkTV on October 6th and will be presented on Monday nights...
Show full article (9.00Kb)
News: Cells "from space" have unusual makeup
Group: sci.bio.evolution · Group Profile · Search for mystifying in sci.bio.evolution
Author: Robert Karl Stonjek
Date: Sep 11, 2008 09:28

... space rock could have broken up in the atmosphere and seeded clouds with these organisms, the pair argues, citing witness reports of an airburst just before the showers. Other scientists have conceded the particles are mystifying, but the claim of live cells from space is so bizarre that many are holding back any assent. Some note that the hazards of journey through space, including intense radiation and extraordinary travel times, make...
Show full article (4.42Kb)
Re: RfD - Local buffers, v4 (long)
Group: comp.lang.forth · Group Profile · Search for mystifying in comp.lang.forth
Author: Peter Fälth
Date: Aug 13, 2008 10:43

... array declaration in C versus alloca():     int *p[N]; versus     const int *p = alloca(N * sizeof (int)); which are for almost all purposes equivalent. I'm a bit mystified.  There is an obvious simple syntax (LBUFFER, above) and a complex special syntax.  Given that Forth generally eschews special syntactical forms, I can't see why you want this. Andrew. I have implemented local buffer in this way...
Show full article (2.03Kb)
Re: RfD - Local buffers, v4 (long)
Group: comp.lang.forth · Group Profile · Search for mystifying in comp.lang.forth
Author: Andrew Haley
Date: Aug 13, 2008 06:44

...:49:09 -0500, Andrew Haley <andrew29@littlepinkcloud.invalid> wrote: Given that you have a way to do this that avoids new syntax, and a way that adds it, why do you prefer adding syntax? I'm a bit mystified. There is an obvious simple syntax (LBUFFER, above) and a complex special syntax. Given that Forth generally eschews special syntactical forms, I can't see why you want this. I've seen at least three ...
Show full article (1.59Kb)
Re: RfD - Local buffers, v4 (long)
Group: comp.lang.forth · Group Profile · Search for mystifying in comp.lang.forth
Author: Stephen Pelc
Date: Aug 13, 2008 05:13

..., just asking about the additional syntax. My misunderstanding. Given that you have a way to do this that avoids new syntax, and a way that adds it, why do you prefer adding syntax? I'm a bit mystified. There is an obvious simple syntax (LBUFFER, above) and a complex special syntax. Given that Forth generally eschews special syntactical forms, I can't see why you want this. I've seen at least three mechanisms ...
Show full article (1.49Kb)
Re: RfD - Local buffers, v4 (long)
Group: comp.lang.forth · Group Profile · Search for mystifying in comp.lang.forth
Author: Andrew Haley
Date: Aug 13, 2008 02:49

... Given that you have a way to do this that avoids new syntax, and a way that adds it, why do you prefer adding syntax? Is there *any* reason other than "this is the way we do it" ? I'm a bit mystified. There is an obvious simple syntax (LBUFFER, above) and a complex special syntax. Given that Forth generally eschews special syntactical forms, I can't see why you want this. What Forth applications do you write these days? ...
Show full article (1.85Kb)
Re: RfD - Local buffers, v4 (long)
Group: comp.lang.forth · Group Profile · Search for mystifying in comp.lang.forth
Author: Stephen Pelc
Date: Aug 12, 2008 07:59

... } 4 chars LBUFFER to buf ... buf DISCARD ; versus : foo { a b | c d [ 4 chars ] buf } ... ; Your notation suffers badly when there are multiple exits from a word. I'm a bit mystified. There is an obvious simple syntax (LBUFFER, above) and a complex special syntax. Given that Forth generally eschews special syntactical forms, I can't see why you want this. What Forth applications do you write these days? And ...
Show full article (1.20Kb)
Re: RfD - Local buffers, v4 (long)
Group: comp.lang.forth · Group Profile · Search for mystifying in comp.lang.forth
Author: Andrew Haley
Date: Aug 11, 2008 09:30

... LBUFFER to buf I suppose this is similar to the variable-length array declaration in C versus alloca(): int *p[N]; versus const int *p = alloca(N * sizeof (int)); which are for almost all purposes equivalent. I'm a bit mystified. There is an obvious simple syntax (LBUFFER, above) and a complex special syntax. Given that Forth generally eschews special syntactical forms, I can't see why you want this. Andrew.
Show full article (0.92Kb)
Re: A Medical Morality Mandate!
Group: alt.philosophy · Group Profile · Search for mystifying in alt.philosophy
Author: zinnic
Date: Jul 27, 2008 14:14

... the production of nutrient, respectively. Your statement also regulates science as either a dead and lifeless thing incapable of movement or an over bloated monster too big, too lazy or too stupid to move. This mystifies me. My lifelong interest, advocacy and career has been in science. Go figure! Regards Zinnic either a dead and lifeless thing incapable of movement or an over bloated monster too big, too lazy or too ...
Show full article (4.40Kb)