Settings

The page will reload to apply your changes.
Theme

ASCII Art Font

ASCII Art Menu

Original Usenet thread from alt.ascii-art, started 7 Dec 2003.
 _   _                     _        _             _     _           
| | | |___  ___ _ __   ___| |_     / \   _ __ ___| |__ (_)_   _____ 
| | | / __|/ _ \ '_ \ / _ \ __|   / _ \ | '__/ __| '_ \| \ \ / / _ \
| |_| \__ \  __/ | | |  __/ |_   / ___ \| | | (__| | | | |\ V /  __/
 \___/|___/\___|_| |_|\___|\__| /_/   \_\_|  \___|_| |_|_| \_/ \___|
Finally

Finally

alt.ascii-art · 14 messages · 7 Dec 2003 - 7 Dec 2003
lgbeard 7 Dec 2003 14:35 · permalink · report
Finally got around to putting up a webpage. Its fairly
simple nothing fancy. Had a few problems from the html
with \> />and _ so those pictures are linked to a txt 
file. As I learn more these will be fixed.

I would like to place quite a few links to various
ascii-art pages. If anyone has any objections from 
me placing a link to your page please say so.

CJRandell as the complier as maintainer of the Faqs.
I tried to e-mail you about posting the Faqs on to page
(Addy from your page and Faqs) never got a word one way 
or another, But they are there. 

If you would like to visit the webpage it is at
http://webpages.charter.net/lgbeard


Also would like to hear your constructive comments.


Have fun An Enjoy.

lgbeard

Veronica Karlsson <v...@hotbrev.com> ASCII art 7 Dec 2003 15:52 · permalink · report
lgbeard wrote:
> 
> Finally got around to putting up a webpage. Its fairly
> simple nothing fancy. Had a few problems from the html
> with \> />and _ so those pictures are linked to a txt
> file. As I learn more these will be fixed.

You can use this:

http://www.ludd.luth.se/~vk/cgi/ASCII/to-HTML.html

It adds all the necessary coding.

-- 
     __   __  _____  _____   ______   __    _  _   _____   __
 ||| \ \  ) )/ /  \|| | \ \ / /  \ \ |  \  | || | / /  \|  ) \
||..  \ \/ /| |_/|  | |_/ /| |    | ||   \ | || || |       /  \
|.PP.  \  / | | \|  | | \ \| |    | || |\_\| || || |      / /\ \
 _\/___ \_(  \_\__/||_|  \_\\_\__/_/ |_|   |_||_| \_\__/|(_(  \_\
|____ A S C I I  A R T  C H A T  http://www.ludd.luth.se/~vk/ ___|

n46is <nab...@anisp.com> 7 Dec 2003 17:19 · permalink · report
lgbeard wrote:
> Finally got around to putting up a webpage. Its fairly
> simple nothing fancy. Had a few problems from the html
> with \> />and _ so those pictures are linked to a txt 
> file. As I learn more these will be fixed.


Hi lgbeard, if you are using any of the *nixes, give it a try:

cat file.txt | sed -e "s/</\&lt;/" | sed -e "s/>/\&gt;/" > file_html-ready.txt

Where is Faux?

n46is <nab...@anisp.com> ASCII art 7 Dec 2003 17:31 · permalink · report
PS: fantastic art!
With your permission:


-= Mushroom house =-

           .
         ('
         '|
         |'
        [::]
        [::]   _......_
        [::].-'      _.-`.
        [:.'    .-. '-._.-`.
        [/ /\   |  \        `-..
        / / |   `-.'      .-.   `-.
       /  `-'            (   `.    `.
      |           /\      `-._/      \
      '    .'\   /  `.           _.-'|
     /    /  /   \_.-'        _.':;:/
   .'     \_/             _.-':;_.-'
  /   .-.             _.-' \;.-'
/   (   \       _..-'     |
\    `._/  _..-'    .--.  |
  `-.....-'/  _ _  .'    '.|
           | |_|_| |      | \  (o)
      (o)  | |_|_| |      | | (\'/)
     (\'/)/  ''''' |     o|  \;:;
      :;  |        |      |  |/)
  LGB  ;: `-.._    /__..--'\.' ;:
           :;  `--' :;   :;

Veronica Karlsson <v...@hotbrev.com> ASCII art 7 Dec 2003 17:55 · permalink · report
n46is wrote:
> lgbeard wrote:
> > Finally got around to putting up a webpage. Its fairly
> > simple nothing fancy. Had a few problems from the html
> > with \> />and _ so those pictures are linked to a txt
> > file. As I learn more these will be fixed.
> 
> Hi lgbeard, if you are using any of the *nixes, give it a try:
> 
> cat file.txt | sed -e "s/</\&lt;/" | sed -e "s/>/\&gt;/" > file_html-ready.txt

Lets see if I get that right:

Change  <  to  &lt;   then change  >  to  &gt;

That's bad advice. You do *need* to change  &  to  &amp;  and you need
to do that *before* you change  <  to  &lt;

You do not need to change  >  to  &gt;   (but it's not *wrong* either).

-- 
     __   __  _____  _____   ______   __    _  _   _____   __
 ||| \ \  ) )/ /  \|| | \ \ / /  \ \ |  \  | || | / /  \|  ) \
||..  \ \/ /| |_/|  | |_/ /| |    | ||   \ | || || |       /  \
|.PP.  \  / | | \|  | | \ \| |    | || |\_\| || || |      / /\ \
 _\/___ \_(  \_\__/||_|  \_\\_\__/_/ |_|   |_||_| \_\__/|(_(  \_\
|____ A S C I I  A R T  C H A T  http://www.ludd.luth.se/~vk/ ___|

n46is <nab...@anisp.com> ASCII art 7 Dec 2003 18:03 · permalink · report
Veronica, *the mean scripter*, wrote:

> Lets see if I get that right:
> 
> Change  <  to  &lt;   then change  >  to  &gt;
> 
> That's bad advice. You do *need* to change  &  to  &amp;  and you need
> to do that *before* you change  <  to  &lt;
> 
> You do not need to change  >  to  &gt;   (but it's not *wrong* either).

k :p

cat file.txt | sed -e "s/&/&amp;/" | sed -e "s/</\&lt;/" \
| sed -e "s/>/\&gt;/" > file_html-ready.txt

Hi, VK :)

Sharky <sha...@hellsgate.corg> ASCII art 7 Dec 2003 18:05 · permalink · report
In message <3FD...@hotbrev.com>  Veronica Karlsson <v...@hotbrev.com>
wrote:

>That's bad advice. You do *need* to change  &  to  &amp;  and you need
>to do that *before* you change  <  to  &lt;

No, that's not true.  Here's an example of the html for one of LGB's links.

|<html>
|<body>
|<pre>             _                              _          _
|            &lt;o)                            &lt;o)        &lt;o)
|            (\\                            (\\        (\\           ___
|      ,----- &quot;&quot;---------------------------- &quot;&quot;-------- &quot;&quot;----------|   |-.
|      | (o)                (o)       (o)                    (o)    | O | |
|      `------------------------------------------------------------|   |-`
|         O               ___O___ ___ _O_                     O     |   /
|         O       ___ ___|       |   Y   |_______             O     \  |
|         O______|   Y   |.|   | |.  1   |   _   |_______     O      | |
| _______|   _   |.  |   `-|.  |-|.  _   |.  1   |   _   |__  O  __  |  \
||   _   |.  |   |.  |   | |:  | |:  |   |.  ____|. |_|  |  \ O /  |/    |
||   1___|.  |   |:  1   | |::.| |::.|:. |:  |   |.      |. | O |  ||    |
||____   |:  1   |::.. . | `---` `--- ---|::.|   |:  .   |. \/ \/  ||   /
||:  1   |::.. . |-------`--.            `---`   |::/ \. |::  _    ||  |
||::.. . |-------`.-.   /    \                   `-'   `-|:::/ \:. |\  |
|`-------`       /   `-.\     | ,--.                     `--`   '--`|  \
|                `.     \`. _/ |    '.                              |   |
|                  \_ _.'      \     |                             /    |
|                .-.      ,----.`...-'                             \    |
|               |   `-.  /        `-.                              L    |
|                \     \|            |                             G    |
|                 `-..-'|          _.'                             B   /
|                       |      ,--'                                \  |
|                       `.__.-'                                    |__|</pre>
|</body>
|</html>

In message <3FD...@hotbrev.com>  Veronica Karlsson
<v...@hotbrev.com> wrote:

><snip>
>> |<pre>             _                              _          _
>> |            &lt;o)                            &lt;o)        &lt;o)
>> |            (\\                            (\\        (\\           ___
>> |      ,----- &quot;&quot;---------------------------- &quot;&quot;-------- &quot;&quot;----------|   |-.
>> |      | (o)                (o)       (o)                    (o)    | O | |
><snip>
>
>The  &quot;  stuff only needs to be if the  "  character is to appear
>inside an attribute value (like the page title for example).

True, but it doesn't hurt. ;-)

Veronica Karlsson <v...@hotbrev.com> ASCII art 7 Dec 2003 18:40 · permalink · report
Sharky wrote:
> Veronica Karlsson wrote:
> 
> >That's bad advice. You do *need* to change  &  to  &amp;  and you need
> >to do that *before* you change  <  to  &lt;
> 
> No, that's not true.  Here's an example of the html for one of LGB's links.

<snip>
> |<pre>             _                              _          _
> |            &lt;o)                            &lt;o)        &lt;o)
> |            (\\                            (\\        (\\           ___
> |      ,----- &quot;&quot;---------------------------- &quot;&quot;-------- &quot;&quot;----------|   |-.
> |      | (o)                (o)       (o)                    (o)    | O | |
<snip>

The  &quot;  stuff only needs to be if the  "  character is to appear
inside an attribute value (like the page title for example).

-- 
     __   __  _____  _____   ______   __    _  _   _____   __
 ||| \ \  ) )/ /  \|| | \ \ / /  \ \ |  \  | || | / /  \|  ) \
||..  \ \/ /| |_/|  | |_/ /| |    | ||   \ | || || |       /  \
|.PP.  \  / | | \|  | | \ \| |    | || |\_\| || || |      / /\ \
 _\/___ \_(  \_\__/||_|  \_\\_\__/_/ |_|   |_||_| \_\__/|(_(  \_\
|____ A S C I I  A R T  C H A T  http://www.ludd.luth.se/~vk/ ___|

Veronica Karlsson <v...@hotbrev.com> ASCII art 7 Dec 2003 18:41 · permalink · report
n46is wrote:
> Veronica, *who's looked this stuff up*, wrote:
> 
> > Lets see if I get that right:
> >
> > Change  <  to  &lt;   then change  >  to  &gt;
> >
> > That's bad advice. You do *need* to change  &  to  &amp;  and you need
> > to do that *before* you change  <  to  &lt;
> >
> > You do not need to change  >  to  &gt;   (but it's not *wrong* either).
> 
> k :p
> 
> cat file.txt | sed -e "s/&/&amp;/" | sed -e "s/</\&lt;/" \
> | sed -e "s/>/\&gt;/" > file_html-ready.txt

:)

> Hi, VK :)

hi  :)

-- 
     __   __  _____  _____   ______   __    _  _   _____   __
 ||| \ \  ) )/ /  \|| | \ \ / /  \ \ |  \  | || | / /  \|  ) \
||..  \ \/ /| |_/|  | |_/ /| |    | ||   \ | || || |       /  \
|.PP.  \  / | | \|  | | \ \| |    | || |\_\| || || |      / /\ \
 _\/___ \_(  \_\__/||_|  \_\\_\__/_/ |_|   |_||_| \_\__/|(_(  \_\
|____ A S C I I  A R T  C H A T  http://www.ludd.luth.se/~vk/ ___|

lgbeard 7 Dec 2003 22:44 · permalink · report
On Sun, 07 Dec 2003 15:52:32 +0000, Veronica Karlsson <v...@hotbrev.com> wrote:

>lgbeard wrote:
>> 
>> Finally got around to putting up a webpage. Its fairly
>> simple nothing fancy. Had a few problems from the html
>> with \> />and _ so those pictures are linked to a txt
>> file. As I learn more these will be fixed.
>
>You can use this:
>
>http://www.ludd.luth.se/~vk/cgi/ASCII/to-HTML.html

Tried the tool works good. Had overlooked three
other pictures they are fixed also. Thank you
>
>It adds all the necessary coding.

It does. Any more cool tools ?

lgbeard

lgbeard 7 Dec 2003 22:50 · permalink · report
On Sun, 07 Dec 2003 11:31:41 -0600, n46is <nab...@anisp.com> wrote:

>PS: fantastic art!

Thanks
>With your permission:

be my guest
>
>-= Mushroom house =-
>

lgbeard

Veronica Karlsson <v...@hotbrev.com> ASCII art 7 Dec 2003 23:13 · permalink · report
lgbeard wrote:
> Veronica Karlsson wrote:
> >lgbeard wrote:
> >> Had a few problems from the html
> >> with \> />and _ 
> >
> >http://www.ludd.luth.se/~vk/cgi/ASCII/to-HTML.html
> 
> Tried the tool works good. Had overlooked three
> other pictures they are fixed also. Thank you

:)

> >It adds all the necessary coding.
> 
> It does. Any more cool tools ?

Plastic bag toy:

  http://www.ludd.luth.se/~vk/cgi/ASCII/plastic-bag.cgi

Ascii purity test:

  http://www.ludd.luth.se/~vk/cgi/ASCII/purity.html

And, of course, my chat!

  http://www.ludd.luth.se/~vk/pics/ascii/chat/


-- 
     __   __  _____  _____   ______   __    _  _   _____   __
 ||| \ \  ) )/ /  \|| | \ \ / /  \ \ |  \  | || | / /  \|  ) \
||..  \ \/ /| |_/|  | |_/ /| |    | ||   \ | || || |       /  \
|.PP.  \  / | | \|  | | \ \| |    | || |\_\| || || |      / /\ \
 _\/___ \_(  \_\__/||_|  \_\\_\__/_/ |_|   |_||_| \_\__/|(_(  \_\
|____ A S C I I  A R T  C H A T  http://www.ludd.luth.se/~vk/ ___|

Veronica Karlsson wrote:
>lgbeard wrote:
>>Any more cool tools ?
>
>Plastic bag toy:
>
>  http://www.ludd.luth.se/~vk/cgi/ASCII/plastic-bag.cgi
>
>Ascii purity test:
>
>  http://www.ludd.luth.se/~vk/cgi/ASCII/purity.html
>
>And, of course, my chat!
>
>  http://www.ludd.luth.se/~vk/pics/ascii/chat/

Free stuff:
http://www.flamingtext.com/

Source Book:
http://archive.devx.com/sourcebank/

A cool site with an author who offers to help:

http://www.arseiam.com/index2.htm

About this thread. These messages were posted publicly to the newsgroup alt.ascii-art in 2003 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.

Report this message

Help us keep the archive clean and accurate. Reports are reviewed by a person – nothing is changed automatically.

Help classify this post