Settings

The page will reload to apply your changes.
Theme

ASCII Art Font

ASCII Art Menu

Original Usenet thread from alt.ascii-art, started 8 Mar 1998.
 _   _                     _        _             _     _           
| | | |___  ___ _ __   ___| |_     / \   _ __ ___| |__ (_)_   _____ 
| | | / __|/ _ \ '_ \ / _ \ __|   / _ \ | '__/ __| '_ \| \ \ / / _ \
| |_| \__ \  __/ | | |  __/ |_   / ___ \| | | (__| | | | |\ V /  __/
 \___/|___/\___|_| |_|\___|\__| /_/   \_\_|  \___|_| |_|_| \_/ \___|
[req] Lips / Kiss

[req] Lips / Kiss

alt.ascii-art · 15 messages · 8 Mar 1998 - 11 Mar 1998
Hey Long time no post people! At least a year.. I'm glad to see that
the all-time goddess of ascii art still reigns supreme.. :)
BTW, Veronica, what is your homepage's address??? Not everybody has a
ROT-13 thing at their hands you know...

Anyway, I'm looking for any lips / kiss pics any of you might have!
Please? :) Anything..

--
Hilton Janfield --/-- val...@bcgroup.net --\-- darkfire productions
ICQ UIN: 7107014

I get knocked down, but I get up again, and your never gonna keep me down!

Hilton Janfield wrote:
[ 8< ]
> BTW, Veronica, what is your homepage's address??? Not everybody has a
> ROT-13 thing at their hands you know...
> 

Then you can always do it with a pen and a paper and two minutes worth
of patience...

Or try one of the following:

1. Go to the figlet site in my sig and use its rot13 "font".
2. Unix people can try: tr A-Za-z N-ZA-Mn-za-m < filename
3. Use this C program:

#include <stdlib.h>
#include <stdio.h>

main()
{
  int ch;

  while ((ch = getchar()) != EOF)
    {
      if ((ch >= 65) && (ch <= 90))
        {
          ch = 65 + ((ch - 65) + 13) % 26;
        }
      if ((ch >= 97) && (ch <= 122))
        {
          ch = 97 + ((ch - 97) + 13) % 26;
        }
      printf("%c", ch);
    }
}


4. Write your own program, in your favourite programming language.
5. Get somebody else to do it for you.
6. Search for my name in your favourite search engine.
7. Look up my name in the ultimate ascii art link list:
http://www.geocities.com/SoHo/2695/links.htm
8. Try something silly, like typing in  come.to/veronica  in the
"location" box in netscape... Who knows, it might actually work...

(btw, if your news program really doesn't have a rot13 function I would
recommend getting a better news program)

-- 
              _                                         _
  __   ___.--'_`.  __   __                _           .'_`--.___   __
 ( _`.'. -   'o` ) \ \ / /__ _ _ ___ _ _ (_)__ __ _  ( 'o`   - .`.'_ )
 _\.'_'      _.-'   \ V / -_) '_/ _ \ ' \| / _/ _` |  `-._      `_`./_
( \`. )    //\`      \_/\___|_| \___/_||_|_\__\__,_|    '/\\    ( .'/ )
 \_`-'`---'\\__,                                       ,__//`---'`-'_/
  \`        `-\    uggc://jjj.yhqq.yhgu.fr/hfref/ix/    /-'        '/
   ` _____________________ r93...@fz.yhgu.fr ____________________ '
        LIKE MY SIG? GO HERE: http://www.surfplaza.com/figlet/

val...@bcgroup.net (Hilton Janfield) writes:

>Anyway, I'm looking for any lips / kiss pics any of you might have!
>Please? :) Anything..

hmm.. I've only got two..(well two that I'm prepared to 
post anyway. :) ). I'll put kisses on my "pics to make
when I finally get the time" list. :)

,--------------------.   
|5 ,-._.-.         5 |
| /_,._,._\     5    |
| \`-._.' /  *mwah!* |
|  \_____/    note   |hjw
| 5                5 |`97
`--------------------'
  ,-._.-.     
 /_,._,._\ 
 \`-._.' / 
  \_____/   hjw
--
           .-.       ~@~ Hayley Jane Wakenshaw ~@~        .-.
          (. .)__.')   flu...@quadrant.xs4all.nl     (`.__(. .)
          / V      )            Visit               (      V \
    ()    \  (   \/    http://www.xs4all.nl/~klr     \/   )  /    ()
  <)-`\()  `._`._ \ Home of Flump's Ascii Collection / _.'_.'  ()/'-(>
    <)_>=====<<==`'==================================`'==>>=====<_(>
   <>-'"The only way to have a friend is to be one" - R.W.Emerson`-<>

Veronica Karlsson wrote:
> 
> Hilton Janfield wrote:
> [ 8< ]
> > BTW, Veronica, what is your homepage's address??? Not everybody has a
> > ROT-13 thing at their hands you know...
> >
> 
> Then you can always do it with a pen and a paper and two minutes worth
> of patience...

I doubt if anyone would do that, I certainly wouldn't do a rot13 by hand
just to see a homepage :)
 
> Or try one of the following:
> 
> 1. Go to the figlet site in my sig and use its rot13 "font".

Or get Figlet and use it at home!

> 2. Unix people can try: tr A-Za-z N-ZA-Mn-za-m < filename

on some systems, that's: tr [A-M][N-Z][a-m][n-z] [N-Z][A-M][n-z][a-m]

> 3. Use this C program:
> 
> #include <stdlib.h>
> #include <stdio.h>
> 
> main()
> {
>   int ch;
> 
>   while ((ch = getchar()) != EOF)
>     {
>       if ((ch >= 65) && (ch <= 90))
>         {
>           ch = 65 + ((ch - 65) + 13) % 26;
>         }
>       if ((ch >= 97) && (ch <= 122))
>         {
>           ch = 97 + ((ch - 97) + 13) % 26;
>         }
>       printf("%c", ch);
>     }
> }

or this one:

#include <stdio.h>
#define rot13(c)
(((c>64)&(c<91))?(65+(c-52)%26):((c>96)&(c<123))?(97+(c-84)%26):c)
void main() {int i; while ((i=getchar())!=-1) putchar(rot13(i));}

 
> 4. Write your own program, in your favourite programming language.
> 5. Get somebody else to do it for you.

Yes, you won't lose any real friends with this, not as long as you
don't do this several times a day :)

> 6. Search for my name in your favourite search engine.
> 7. Look up my name in the ultimate ascii art link list:
> http://www.geocities.com/SoHo/2695/links.htm
> 8. Try something silly, like typing in  come.to/veronica  in the
> "location" box in netscape... Who knows, it might actually work...
> 
> (btw, if your news program really doesn't have a rot13 function I would
> recommend getting a better news program)
> 

Greetz,
-- 
  <]   O -.                                 /Shimrod\___________________
  ==_._/\   vs lbh qrpbqr guvf,             |             Herman Hiddema
T"""T  _/|     lbh bjr zr n qevax.          |         shi...@fmf.ml.org
|   | /| |                                  | http://fmf.ml.org/~shimrod

Veronica Karlsson <dre...@on.spammer> ASCII art 10 Mar 1998 00:00 · permalink
Shimrod wrote:
> Veronica Karlsson wrote:
> > Hilton Janfield wrote:
> > > BTW, Veronica, what is your homepage's address??? Not everybody has a
> > > ROT-13 thing at their hands you know...
> >
> > Then you can always do it with a pen and a paper and two minutes worth
> > of patience...
> 
> I doubt if anyone would do that, I certainly wouldn't do a rot13 by hand
> just to see a homepage :)

But it would work...

[ 8< ] 
> or this one:
> 
> #include <stdio.h>
> #define rot13(c)
> (((c>64)&(c<91))?(65+(c-52)%26):((c>96)&(c<123))?(97+(c-84)%26):c)
> void main() {int i; while ((i=getchar())!=-1) putchar(rot13(i));}
> 

:D

I would call that ascii art, not software...

> > 5. Get somebody else to do it for you.
> 
> Yes, you won't lose any real friends with this, not as long as you
> don't do this several times a day :)

But it would work...

-- 
 __                                                                 __
/\ )            .. uggc://jjj.yhqq.yhgu.fr/hfref/ix/ ..            (  \
|-|            /||                                   ||\            | |
|-|           /   \        r93...@fz.yhgu.fr       /   \           | |
|-|_________.'   (|\                               /|)   `._________| |
| | | | | | |     > )                             ( <                 |
| | | | | | `  .__.'                               `.__.              |
 \ /  | | |   /    __   __                _             \            /
  )--)-----|-||    \ \ / /__ _ _ ___ _ _ (_)__ __ _     || |-----(  (
 (--((     |-||     \ V / -_) '_/ _ \ ' \| / _/ _` |    || |     ))  )
  \__))    \__))     \_/\___|_| \___/_||_|_\__\__,_|   ((__/    ((__/

[from alt.ascii-art "discussion" on what to do when your newsreader
doesn't support ROT13]

>3. Use this C program:
>
>#include <stdlib.h>
>#include <stdio.h>
>
>main()
>{
>  int ch;
>
>  while ((ch = getchar()) != EOF)
>    {
>      if ((ch >= 65) && (ch <= 90))
>        {
>          ch = 65 + ((ch - 65) + 13) % 26;
>        }
>      if ((ch >= 97) && (ch <= 122))
>        {
>          ch = 97 + ((ch - 97) + 13) % 26;
>        }
>      printf("%c", ch);
>    }
>}
>
>>[from a reply]
>>Or use this code:
>>
>>#include <stdio.h>
>>#define rot13(c)
>>(((c>64)&(c<91))?(65+(c-52)%26):((c>96)&(c<123))?(97+(c-84)%26):c)
>>void main() {int i; while ((i=getchar())!=-1) putchar(rot13(i));}
>
> 4. Write your own program, in your favourite programming language.

Hmm... well, lets see here... as I recall, ROT13 is a simple
transposition of A-M and N-Z...
Here's a little Pascal for ya all! :)
Reads in a line

program ROT13;

var
  s: string;
  x: byte;

begin
  write('Enter the string to do a ROT13 on: ');
  readln(s);
  for x := 1 to length(s) do
    case s[x] of
      'A'..'M', 'a'..'m': inc(s[x], 13);
      'N'..'Z', 'n'..'z': dec(s[x], 13);
    end;
  write('ROT13 string: '); writeln(s);
end.

Or, if your a tightcoder <G>

program ROT13;var s:string;x:byte;begin write('Enter the string to do a
ROT13 on: ');readln(s);for x:=1 to length(s) do case s[x] of
'A'..'M','a'..'m':inc(s[x],13);'N'..'Z','n'..'z':dec(s[x],13);end;write('ROT13
string: ');writeln(s);end.

Shimrod <csg...@wing.rug.nl> ASCII art 10 Mar 1998 00:00 · permalink
Veronica Karlsson wrote:
> 
> Shimrod wrote:
> > Veronica Karlsson wrote:
> > > Hilton Janfield wrote:
> > > > BTW, Veronica, what is your homepage's address??? Not everybody has a
> > > > ROT-13 thing at their hands you know...
> > > Then you can always do it with a pen and a paper and two minutes worth
> > > of patience...
> > I doubt if anyone would do that, I certainly wouldn't do a rot13 by hand
> > just to see a homepage :)
>
> But it would work...

Well OK, but I'll just stick to tr :)

> 
> [ 8< ]
> > or this one:
> >
> > #include <stdio.h>
> > #define rot13(c)
> > (((c>64)&(c<91))?(65+(c-52)%26):((c>96)&(c<123))?(97+(c-84)%26):c)
> > void main() {int i; while ((i=getchar())!=-1) putchar(rot13(i));}
> >
> 
> :D
> 
> I would call that ascii art, not software...

Well, that makes it perfect for this group, doesn't it. But that one wrapped
(emacs defaults to 90 cols, so the define line was wider than I thought.

Here's a fixed, more artistic version:

#include <stdio.h>
#define rot13(_) (((_>64)&(_<91))?(65+(_-52)%26):\
                 ((_>96)&(_<123))?(97+(_-84)%26):_)

void main() {int i; while ((i=getchar())!=-1) putchar(rot13(i));}

See how nicely that backslash at the end of line 2 lines up with the
parenthesis at the end of line 3? It looks like a train! :D
And replacing that c with _ made it lots nicer, because those line up
with the parenthesis too. :D


> > > 5. Get somebody else to do it for you.
> >
> > Yes, you won't lose any real friends with this, not as long as you
> > don't do this several times a day :)
> 
> But it would work...
> 

At least until you run out of friends. :)

> --
>  __                                                                 __
> /\ )            .. uggc://jjj.yhqq.yhgu.fr/hfref/ix/ ..            (  \
> |-|            /||                                   ||\            | |
> |-|           /   \        r93...@fz.yhgu.fr       /   \           | |
> |-|_________.'   (|\                               /|)   `._________| |
> | | | | | | |     > )                             ( <                 |
> | | | | | | `  .__.'                               `.__.              |
>  \ /  | | |   /    __   __                _             \            /
>   )--)-----|-||    \ \ / /__ _ _ ___ _ _ (_)__ __ _     || |-----(  (
>  (--((     |-||     \ V / -_) '_/ _ \ ' \| / _/ _` |    || |     ))  )
>   \__))    \__))     \_/\___|_| \___/_||_|_\__\__,_|   ((__/    ((__/

Very nice cats! Did they eat the frogs? They seem to be chewing on something. :)

Oh, did you know that here in the Netherlands, we've got a special website
dedicated to you? NO? Well go see:
  http://www.veronica.nl/

Greetz,
-- 
  <]   O -. Veronica komt naar              /Shimrod\___________________
  ==_._/\   je toe deze zomer! <g>          |             Herman Hiddema
T"""T  _/|                                  |         shi...@fmf.ml.org
|   | /| |                                  | http://fmf.ml.org/~shimrod

Donovan <bak...@gwtc.net> ASCII art 10 Mar 1998 00:00 · permalink
Hilton Janfield wrote:
> 
> [from alt.ascii-art "discussion" on what to do when your newsreader
> doesn't support ROT13]
> 
> >3. Use this C program:
> >
> >#include <stdlib.h>
> >#include <stdio.h>
> >
> >main()
> >{
> >  int ch;
> >
> >  while ((ch = getchar()) != EOF)
> >    {
> >      if ((ch >= 65) && (ch <= 90))
> >        {
> >          ch = 65 + ((ch - 65) + 13) % 26;
> >        }
> >      if ((ch >= 97) && (ch <= 122))
> >        {
> >          ch = 97 + ((ch - 97) + 13) % 26;
> >        }
> >      printf("%c", ch);
> >    }
> >}
> >
> >>[from a reply]
> >>Or use this code:
> >>
> >>#include <stdio.h>
> >>#define rot13(c)
> >>(((c>64)&(c<91))?(65+(c-52)%26):((c>96)&(c<123))?(97+(c-84)%26):c)
> >>void main() {int i; while ((i=getchar())!=-1) putchar(rot13(i));}
> >
> > 4. Write your own program, in your favourite programming language.
> 
> Hmm... well, lets see here... as I recall, ROT13 is a simple
> transposition of A-M and N-Z...
> Here's a little Pascal for ya all! :)
> Reads in a line
> 
> program ROT13;
> 
> var
>   s: string;
>   x: byte;
> 
> begin
>   write('Enter the string to do a ROT13 on: ');
>   readln(s);
>   for x := 1 to length(s) do
>     case s[x] of
>       'A'..'M', 'a'..'m': inc(s[x], 13);
>       'N'..'Z', 'n'..'z': dec(s[x], 13);
>     end;
>   write('ROT13 string: '); writeln(s);
> end.
> 
> Or, if your a tightcoder <G>
> 
> program ROT13;var s:string;x:byte;begin write('Enter the string to do a
> ROT13 on: ');readln(s);for x:=1 to length(s) do case s[x] of
> 'A'..'M','a'..'m':inc(s[x],13);'N'..'Z','n'..'z':dec(s[x],13);end;write('ROT13
> string: ');writeln(s);end.



Excuse my ignorance but what is so special about ROT13? Why is it in
this newsgroup and who uses it?

These are serious questions. I'm not being sarcastic....yet.

Thanks

Donovan

-- 
                                                  ______          
 Poems By Donovan - Home of DA QUIZ! and the     /  ___ \         
          Famous Secret Link Game.              |  / ,.\ |O    O  
  Conquer the Secret Link and win an award      | |  \d/ | \__/   
             for your homepage!                 |__\_____/-(..)   
http://www.geocities.com/Paris/LeftBank/6558/ _/_____________/ dwb
``````````````````````````````````````````````````````````````````
      (".___.")     EVANS PLUNGE BEANIE BABIES PRICE LIST       
      _ { + } _                                                 
    ()__|>o<|__()     http://www.gwtc.net/~bakd/bb.html         
       (  .  )                                                   
     (_)     (_)   New and Retired Beanies are available!!!

Jeremy <jrs...@wcnet.org> ASCII art 10 Mar 1998 00:00 · permalink
Heres a Kiss... hehe... Hershey's Kiss!
Enjoy!
.
       _______
   ,.._Kisses!_`
 ,`\
/` `\
`'''`


.��``��.
 Later,

   Jeremy
   _____
 _|     |.-----.----.-----.--------.--.--.
|       ||  -__|   _|  -__|        |  |  |
|_______||_____|__| |_____|__|__|__|___  |
 jrs...@wcnet.org                |_____|
                  www.wcnet.org/~jrshrodr/


<HTML>
<TT>Heres a Kiss... hehe... Hershey's Kiss!</TT>
<BR><TT>Enjoy!</TT>
<BR><TT>.</TT>
<BR><TT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; _______</TT>
<BR><TT>&nbsp;&nbsp; ,.._Kisses!_`</TT>
<BR><TT>&nbsp;,`\&nbsp;</TT>
<BR><TT>/` `\</TT>
<BR><TT>`'''`</TT>
<BR><TT></TT>&nbsp;<TT></TT>

<P><TT>.&middot;&deg;``&deg;&middot;.</TT>
<BR><TT>&nbsp;Later,</TT>
<BR><TT>&nbsp;</TT>
<BR><TT>&nbsp;&nbsp; Jeremy</TT>
<BR><TT>&nbsp;&nbsp; _____</TT>
<BR><TT>&nbsp;_|&nbsp;&nbsp;&nbsp;&nbsp; |.-----.----.-----.--------.--.--.</TT>
<BR><TT>|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ||&nbsp; -__|&nbsp;&nbsp;
_|&nbsp; -__|&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |&nbsp; |&nbsp;
|</TT>
<BR><TT>|_______||_____|__| |_____|__|__|__|___&nbsp; |</TT>
<BR><TT>&nbsp;jrs...@wcnet.org&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
|_____|</TT>
<BR><TT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
www.wcnet.org/~jrshrodr/</TT></HTML>



Donovan wrote in message <350...@gwtc.net>...
>Excuse my ignorance but what is so special about ROT13? Why is it in
>this newsgroup and who uses it?
>
>These are serious questions. I'm not being sarcastic....yet.

ROT13 is a decoding method used by people who want to keep things hidden
from plain view; for example, to spamblock email addresses, to hide spoiler
information, or to protect people who don't want to see inoffensive
information.

They just rotate the letters 13 spaces through the alphabet.


--
>>BKNambo
----------------------------------------------------------------------------
----http://come.to/brocks.place
Hey look, it's the Roman Empire!

Donovan <bak...@gwtc.net> ASCII art 10 Mar 1998 00:00 · permalink
Brock Kevin Nambo wrote:
> 
> Donovan wrote in message <350...@gwtc.net>...
> >Excuse my ignorance but what is so special about ROT13? Why is it in
> >this newsgroup and who uses it?
> >
> >These are serious questions. I'm not being sarcastic....yet.
> 
> ROT13 is a decoding method used by people who want to keep things hidden
> from plain view; for example, to spamblock email addresses, to hide spoiler
> information, or to protect people who don't want to see inoffensive
> information.
> 
> They just rotate the letters 13 spaces through the alphabet.
> 
> --
> >>BKNambo
> ----------------------------------------------------------------------------
> ----http://come.to/brocks.place
> Hey look, it's the Roman Empire!


OK! Thanks for explaining that to me.

Now what does it have to do with our newsgroup? I'm sorry I'm so slow at
these things. *S*

Donovan
-- 
                                                  ______          
 Poems By Donovan - Home of DA QUIZ! and the     /  ___ \         
          Famous Secret Link Game.              |  / ,.\ |O    O  
  Conquer the Secret Link and win an award      | |  \d/ | \__/   
             for your homepage!                 |__\_____/-(..)   
http://www.geocities.com/Paris/LeftBank/6558/ _/_____________/ dwb
``````````````````````````````````````````````````````````````````
      (".___.")     EVANS PLUNGE BEANIE BABIES PRICE LIST       
      _ { + } _                                                 
    ()__|>o<|__()     http://www.gwtc.net/~bakd/bb.html         
       (  .  )                                                   
     (_)     (_)   New and Retired Beanies are available!!!

On Tue, 10 Mar 1998 23:18:53 -0600, Donovan <bak...@gwtc.net> wrote:

%Brock Kevin Nambo wrote:
%> 
%> Donovan wrote in message <350...@gwtc.net>...
%> >Excuse my ignorance but what is so special about ROT13? Why is it in
%> >this newsgroup and who uses it?
%> >
%> >These are serious questions. I'm not being sarcastic....yet.
%> 
%> ROT13 is a decoding method used by people who want to keep things hidden
%> from plain view; for example, to spamblock email addresses, to hide spoiler
%> information, or to protect people who don't want to see inoffensive
%> information.
%> 
%> They just rotate the letters 13 spaces through the alphabet.
%> 
%> --
%> >>BKNambo
%> ----------------------------------------------------------------------------
%> ----http://come.to/brocks.place
%> Hey look, it's the Roman Empire!
%
%
%OK! Thanks for explaining that to me.
%
%Now what does it have to do with our newsgroup? I'm sorry I'm so slow at
%these things. *S*
%
%Donovan


Donovan,

	I don't think this is anything particular to _this_ newsgroup, but
people everywhere use ROT-13.  It's a very very basic form of encoding, simple
enough to decode by hand if you had the time ;)

-R-

-- enq...@npvq.bet

 RaD Man % ACiD Productions Founder % Artpacks Archive Founder

  Words to live by: " It's better to be controversial for the
  right reasons, than to be popular for the wrong reasons. "

To the CLPB people: don't reply.. they're talking about alt.ascii-art

>> >Excuse my ignorance but what is so special about ROT13? Why is it in
>> >this newsgroup and who uses it?
>> >
>> >These are serious questions. I'm not being sarcastic....yet.
>> 
>> ROT13 is a decoding method used by people who want to keep things hidden
>> from plain view; for example, to spamblock email addresses, to hide spoiler
>> information, or to protect people who don't want to see inoffensive
>> information.
>> 
>> They just rotate the letters 13 spaces through the alphabet.
>
>OK! Thanks for explaining that to me.
>
>Now what does it have to do with our newsgroup? I'm sorry I'm so slow at
>these things. *S*

--
Hilton Janfield --/-- val...@bcgroup.net --\-- darkfire productions
ICQ UIN: 7107014

I get knocked down, but I get up again, and your never gonna keep me down!

Donovan wrote in message <350...@gwtc.net>...
>Brock Kevin Nambo wrote:
>> ROT13 is a decoding method used by people who want to keep things hidden
>> from plain view; for example, to spamblock email addresses, to hide
spoiler
>> information, or to protect people who don't want to see inoffensive
>> information.
>>
>> They just rotate the letters 13 spaces through the alphabet.
>OK! Thanks for explaining that to me.
>
>Now what does it have to do with our newsgroup? I'm sorry I'm so slow at
>these things. *S*

Depends which newsgroup you're reading this from. <g>
If it's alt.ascii-art (and I think it is), VK's signature is almost always
ROT13ed.  Also, Randy Gardner (whom I haven't seen in a while) is author of
a ROT13 program.

Not exactly an a.a-a issue, but it's our people, ya see.

>>BKNambo
--
http://come.to/brocks.place - Hey look, it's the Roman Empire!
'"USENET" is actually a very odd text-adventure game written by Infocom
that someone installed on your computer when you weren't looking.'
--Michael Straight

Donovan <bak...@gwtc.net> ASCII art 11 Mar 1998 00:00 · permalink
Brock Kevin Nambo wrote:
> 
> Donovan wrote in message <350...@gwtc.net>...
> >Brock Kevin Nambo wrote:
> >> ROT13 is a decoding method used by people who want to keep things hidden
> >> from plain view; for example, to spamblock email addresses, to hide
> spoiler
> >> information, or to protect people who don't want to see inoffensive
> >> information.
> >>
> >> They just rotate the letters 13 spaces through the alphabet.
> >OK! Thanks for explaining that to me.
> >
> >Now what does it have to do with our newsgroup? I'm sorry I'm so slow at
> >these things. *S*
> 
> Depends which newsgroup you're reading this from. <g>
> If it's alt.ascii-art (and I think it is), VK's signature is almost always
> ROT13ed.  Also, Randy Gardner (whom I haven't seen in a while) is author of
> a ROT13 program.
> 
> Not exactly an a.a-a issue, but it's our people, ya see.
> 
> >>BKNambo
> --
> http://come.to/brocks.place - Hey look, it's the Roman Empire!
> '"USENET" is actually a very odd text-adventure game written by Infocom
> that someone installed on your computer when you weren't looking.'
> --Michael Straight


Thanks for getting that so I could understand it! I saw Randy's program
and have it now....I haven't used it yet, but I may. *S*

At least I don't feel so in the dark! *S* Thanks again everyone!

Donovan
-- 
                                                  ______          
 Poems By Donovan - Home of DA QUIZ! and the     /  ___ \         
          Famous Secret Link Game.              |  / ,.\ |O    O  
  Conquer the Secret Link and win an award      | |  \d/ | \__/   
             for your homepage!                 |__\_____/-(..)   
http://www.geocities.com/Paris/LeftBank/6558/ _/_____________/ dwb
``````````````````````````````````````````````````````````````````
      (".___.")     EVANS PLUNGE BEANIE BABIES PRICE LIST       
      _ { + } _                                                 
    ()__|>o<|__()     http://www.gwtc.net/~bakd/bb.html         
       (  .  )                                                   
     (_)     (_)   New and Retired Beanies are available!!!

About this thread. These messages were posted publicly to the newsgroup alt.ascii-art in 1998 and are mirrored here unchanged as part of the Historic Archives – only email addresses are masked. The artwork and text belong to their original authors: if you copy a piece, keep the artist's initials or signature intact and credit them where you can. Are you one of the authors? Contact us to get your posts attributed, connected to your artist profile, or removed.