POV-Ray : Newsgroups : povray.general : #read fiasco Server Time
11 Aug 2024 17:16:25 EDT (-0400)
  #read fiasco (Message 31 to 40 of 102)  
<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>
From: Nieminen Mika
Subject: Re: BLESS YOU!
Date: 11 Aug 1999 02:40:39
Message: <37b11ae7@news.povray.org>
Matt Giwer <mgi### [at] giwersworldorg> wrote:
: 	The Vcard is a different solution by encapsulating all the sig
: words, read them if you wish and only if you wish. 

  Only if you use certain brwosers to read the news.

: 	There have always been problems of backwards campatibility of
: new ideas with old.

  That's like saying that windows sucks because it can't run unix programs.
  Come on. Get a life.

-- 
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):5;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/


Post a reply to this message

From: Greg M  Johnson
Subject: Re: #read fiasco
Date: 11 Aug 1999 07:38:27
Message: <37B16026.DC119B68@geocities.com>
Thanks for the exhaustive reply.  I was about to ask what one could do if one
had TWO variables, but I guess that I can simply turn my two 3D arrays into
one 6D array.

John VanSickle wrote:

> Greg M. Johnson wrote:
> > So, like how would you make your inc if you had two variables which
> > were [350][34] each?
> >
> > Would your file generator literally say:
> >
> > #declare position.x[1][1]=1;
> > #declare position.y[1][1]=2;
> > #declare position.z[1][1]=3;
> > #declare position.x[1][2]=4;
> > #declare position.y[1][2]=5;
> > #declare position.z[1][2]=6;
>
> No, the file generator can also dump out the following:
>
> #declare position=array[350][34] = {
>   { <1,2,3>,<4,5,6>, ... }, {... }, ...
> }
>
> The PovRay code would look like this:
>
> // START OF SAMPLE BASIC CODE
>
> #write(MyFile,"#declare position=array[", ROWS, "][", COLUMNS, "] = {\n")
> #local iI=0; #while(iI<ROWS)
>   #if (iI>0) #write(MyFile,",") #end
>   #write(MyFile,"{ ")
>   #local iJ=0; #while(iJ<COLUMNS)
>     #if (iJ>0) #write(MyFile,",") #end
>     #write(MyFile,MyDataArray[iI][iJ])
>   #local iJ=iJ+1; #end
>   #write(MyFile, " }\n" )
> #local iI=iI+1; #end
> #write(MyFile, "}\n" )
>
> // END OF SAMPLE CODE
>
> Your file generating program can print out the #declares, square
> brackets, angle brackets, squiggly brackets, commas, and so forth.
>
> The only difficulty is that if you want to have text data in there as
> well, you have to explicitly print out the quotes with the CHR$()
> function:
>
>   #write(MyFile, "#declare MyString="; CHR$(34); "Stormbringer";
>     CHR$(34); "\n")
>
> which will create a line of text that looks like this:
>
>   #declare MyString="Stormbringer"
>
> You can feed a vector to the #write() directive as well; my example does.
>
>   #write(MyFile,x-y+z*3)
>
> will cause the string
>
>   < 1,-1, 3>
>
> to be written to MyFile.  There is no need to bust up the vectors into
> scalars, only to build them back up later.
>
> Of course, keeping track of the brackets and quotation marks can be
> a bit of a trick. :-)
>
> Hope this helps,
> John


Post a reply to this message

From: Greg M  Johnson
Subject: Re: BLESS YOU!
Date: 11 Aug 1999 07:48:20
Message: <37B16278.43468FB2@geocities.com>
My browser can use html; those of many others cannot.  At first I thought it
was only the Luddites who were emailing me to complain that their stone-age
browsers weren't able to handle html.  Then I realized that I was guilty of
Micro-____-ism: inconveniencing others to accomodate my bells and whistles,
and calling it progress.  I later viewed it as a courtesy to the group not to

//resist
//resist
//resist the temptaiton to underline and boldface the next phrase with html
codes

*emphasize*

//whew, that was close!!

a word in every paragraph if it made things difficult for some friends with
outdated or no-frills browsers.




Matt Giwer wrote:

> Margus Ramst wrote:
>
> > What can a vcard do that a sig can't, anyway?
>
>         I thought no one would ever ask.
>
>         For me it is a lack of annoyance. I appreciate them. What does
> annoy me to no end is exactly the same sig words over and over
> and over. And the more clever the faster the annoyance increases.
>
>         From the BBS days, one of the main selling points of the offline
> readers was rotating sigs.
>
>         The Vcard is a different solution by encapsulating all the sig
> words, read them if you wish and only if you wish.
>
>         There have always been problems of backwards campatibility of
> new ideas with old.
>
>   ------------------------------------------------------------------------
>
>   Matt Giwer <mgi### [at] giwersworldorg>
>   Owner
>   Images Incarnate
>
>   Matt Giwer
>   Owner                                      <mgi### [at] giwersworldorg>
>   Images Incarnate
>   14205 Nebraska Ave #27;Tampa;FL;33613;USA  Cellular: 813-694-3998
>                                              Work: 813-972-2574
>   Additional Information:
>   Last Name      Giwer
>   First Name     Matt
>   Version        2.1


Post a reply to this message

From: Xplo Eristotle
Subject: Re: BLESS YOU!
Date: 11 Aug 1999 08:58:41
Message: <37B173AB.7513@unforgettable.com>
Dave Kreskowiak wrote:
> 
> Nobody here appreciates your abuse of this server or them.  If you don't
> have anything constructive to say, kindly packup and leave.  I'm sure the
> owners of this server won't take kindly to your abuse of it or other
> people...

To judge from the way Matt gets away with saying "if you don't like my
lousy netiquette, filter me", the owners of this server don't seem to
care.

I wonder if I could get Usenet posters to use this guy's email address
as spam bait. After all, if he doesn't want to receive all that spam, he
can just filter it.. no skin off his nose. :P

-Xplo


Post a reply to this message

From: Matt Giwer
Subject: Re: [Profane] Re: BLESS YOU!
Date: 11 Aug 1999 09:15:04
Message: <37B1775D.47924A2A@giwersworld.org>
Nieminen Mika wrote:

> Matt Giwer <mgi### [at] giwersworldorg> wrote:
> :       Have you considered the fact that some children do read this
> : newsgroup?

>   Yes, it seems that there's at least one child reading this newsgroup: You.

> --
> main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
> ):5;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/

	If you do not like my posts, at least have the courtesy to shut
up. If you do not want to be boethered by them, filter them out. 

	I do not feel myself graced by complainers reading them. 

	Is this clear enough? 

	And if you can not have your way by everyone complying with your
wishes you are going to hurl insults, upon what do you base your
moral superiority save your love of your ancient tin? 

-- 
<blink>---please--don't---</blink>

http://www.giwersworld.org/artiii/

Oh my God! They've rendered Kenny!


Post a reply to this message


Attachments:
Download 'us-ascii' (1 KB)

From: Matt Giwer
Subject: Re: BLESS YOU!
Date: 11 Aug 1999 09:22:22
Message: <37B17912.2590D3CE@giwersworld.org>
Xplo Eristotle wrote:

> To judge from the way Matt gets away with saying "if you don't like my
> lousy netiquette, filter me", the owners of this server don't seem to
> care.

	"Filter" is the power of any user. 

	And IF the owners tell me about it, fine. Then I can choose to
change or not to participate. That will be MY choice. 

	Your choice is to filter or not to filter. You read my posts on
my terms, not yours. 

> I wonder if I could get Usenet posters to use this guy's email address
> as spam bait. After all, if he doesn't want to receive all that spam, he
> can just filter it.. no skin off his nose. :P

	Not that is an interesting threat and your email addr as
instigtator is quite interesting. And your post is forwarded to
your ISP. 

	If I do not comply with the dicatations of mere users of this
you folks are going to get me spammed. 

	Let me tell you this, boy. IF that happens, you all will regret
it. And I can do it in a heartbeat. And I will not do one direct
thing. 

	Are petty little Hilters going to try to enforce your will on
everyone else or are you going to grow up and join the human
race? 

	You newcomers should never think you know what the internet is
all about.


Post a reply to this message


Attachments:
Download 'us-ascii' (1 KB)

From: Matt Giwer
Subject: Re: BLESS YOU!
Date: 11 Aug 1999 09:27:28
Message: <37B17A45.8E2FE2BB@giwersworld.org>
Nieminen Mika wrote:

> Ron Parker <par### [at] fwicom> wrote:
> : As a counterexample I offer Warp's sig. >:)

>   At least my sig can be posted without multipart mime-encoding...

	Is that a good thing or an old fart stick in the mud position? 

>   And anyways, it's a good signature. It has my nick. Twice. ;)

	And that is a good thing? To post something as a sig that only
those familar with obscure legal but unprofession C code can read
if they want to waste the time? 

	Please explain why and exercise in obscurity is a good thing. 

	Yes, you are very clever. Yes you are a horrible example of the
art of programming. 

-- 
<blink>---please--don't---</blink>

http://www.giwersworld.org/artiii/

Oh my God! They've rendered Kenny!


Post a reply to this message


Attachments:
Download 'us-ascii' (1 KB)

From: Ron Parker
Subject: Re: BLESS YOU!
Date: 11 Aug 1999 09:28:26
Message: <37b17a7a@news.povray.org>
On Tue, 10 Aug 1999 22:35:39 -0400, Matt Giwer wrote:
>This is a multi-part message in MIME format.
>--------------353C53C99B3BCF3BB8CA77D4
>Content-Type: text/plain; charset=us-ascii
>Content-Transfer-Encoding: 7bit
>
>Ron Parker wrote:
>
>> Just because some idiot at Nutscrape doesn't understand USENET
>> culture doesn't mean you have to meekly follow along.
>
>	When .com domains were permitted, internet culture began a
>permanent change that will never turn back. 

Learn some history, then come tell me about the Internet.  If you
can find me.  It wasn't .com that changed the world, it was aol.com
and netscape.com in particular.  And it wasn't for the better.

>	I am hardly sympathetic to people who try to turn back the clock
>by claiming a company with maybe 40% of the installed market
>doesn't understand. And the other big chunck of the installed
>market is Free Agent. Shall the world go backwards because
>universities have not paid to move forward? 

Bzzzt.  trn is in the #2 spot, with almost as many users as Nutscrape.
In most non-alt groups, the proportion is higher for trn.


Post a reply to this message

From: Matt Giwer
Subject: Re: BLESS YOU!
Date: 11 Aug 1999 09:30:49
Message: <37B17B0F.CA7D010D@giwersworld.org>
Nieminen Mika wrote:

> Matt Giwer <mgi### [at] giwersworldorg> wrote:
> :       The Vcard is a different solution by encapsulating all the sig
> : words, read them if you wish and only if you wish.

>   Only if you use certain brwosers to read the news.

	Variety is something we cherish in the modern world. Only
Communists and Nazis said everyone had to be the same. 

	And you have a filter. USE IT! 

> :       There have always been problems of backwards campatibility of
> : new ideas with old.

>   That's like saying that windows sucks because it can't run unix programs.
>   Come on. Get a life.

	Use your filter to stop reading me instead of trying to play
hitlerite dictator. FILTER! FILTER! FILTER! And go away. 

> --
> main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
> ):5;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/

	What a horrible example of programming. And BORING!

-- 
<blink>---please--don't---</blink>

http://www.giwersworld.org/artiii/

Oh my God! They've rendered Kenny!


Post a reply to this message


Attachments:
Download 'us-ascii' (1 KB)

From: Matt Giwer
Subject: Re: BLESS YOU!
Date: 11 Aug 1999 09:46:41
Message: <37B17EC6.83C08146@giwersworld.org>
"Greg M. Johnson" wrote:

> My browser can use html; those of many others cannot.  At first I thought it
> was only the Luddites who were emailing me to complain that their stone-age
> browsers weren't able to handle html.  Then I realized that I was guilty of
> Micro-____-ism: inconveniencing others to accomodate my bells and whistles,
> and calling it progress.  I later viewed it as a courtesy to the group not to

	I am inconviencing no one with their high powered newsreaders.
They can all filter me out. If they choose to be inconvenienced
they have no business complaining. 

	If they WANT to read my posts then they put up with the
inconvenience. 

	So far I have been told there are all of exactly THREE people
who have a problem. 

	I do not care if no one reads what I post. 

	If you want to understand this all, go read The Fountainhead and
Atlas Shrugged. 

	How else explain my being "given a chance" to post without the
format they demand. Was that so nice of him in response to saying
FILTER? 

	Some clown with an anal fixation knowing children are reading
this wants to insert pages of the RFC because IN HIS OPINION not
the committee's it is non-compliant. Is that not cute? 

	And let me ask in general, how long these folks have been into
computers, programming, the ARPAnet? I have 32 years in October
and it would have been 34 years except I turned down a job offer
at Oak Ridge to finish college. Anyone here want to play, "match
the credentials"? 

	I would rather this whole thing drop and folks with those highly
superior newsreaders just use their filters. If the newsgroup
owners contact me to the contrary that is a different issue. And
then my above choice. 

	But I really do not like users presuming to dicate to other
users based upon their own choice of software and their own
arrogance. 

	Any questions?


Post a reply to this message


Attachments:
Download 'us-ascii' (1 KB)

<<< Previous 10 Messages Goto Latest 10 Messages Next 10 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.