Settings

The page will reload to apply your changes.
Theme

ASCII Art Font

ASCII Art Menu

Original Usenet thread from alt.ascii-art, started 1 Jul 2003.
 _   _                     _        _             _     _           
| | | |___  ___ _ __   ___| |_     / \   _ __ ___| |__ (_)_   _____ 
| | | / __|/ _ \ '_ \ / _ \ __|   / _ \ | '__/ __| '_ \| \ \ / / _ \
| |_| \__ \  __/ | | |  __/ |_   / ___ \| | | (__| | | | |\ V /  __/
 \___/|___/\___|_| |_|\___|\__| /_/   \_\_|  \___|_| |_|_| \_/ \___|
[pic] portrait

[pic] portrait

alt.ascii-art · 6 messages · 1 Jul 2003 - 4 Jul 2003
N4biS <nab...@deadspammer.net> ASCII art 1 Jul 2003 02:38 · permalink · report
                    ____,,___,
                , ,;)""       `-._
              ,' ( (              '~^,
             (    _,,-,---,,._        ~,
             / ,'             ,        (
             |"               `,        )
             (,                "  )
             |""'``,            \( )   \
             I       "   ,,-''`,  \      \
             |__,,              `    (    )
             |\  o`,      ,,-,     ~  )   (
             | ''--,,   =`  o ',   (    @  )
             |      |    `''-'      \    \ )
             :      ;              ,')     `
                   ,   ',          |8 ~,      )
            (`.     `-'^'          (    )
               .   -._,_        .'       `
           (    .  \ __,-     ,'     )         )
            '    `.   "     ,'    Y
             /     `-._,,,-'     /
                     \          /        n4bis
                      `,,    ,,'
                         ````


Please use the console (xedit) to view.

 _.--- N4biS spoke in alt.ascii-art --------._ 
> Please use the console (xedit) to view.

Nice pic.  But xedit[0] isn't needed for most of us.  In addtion xedit
isn't "the console" because as it's name implies it is an X app.  

A console app would be like slrn (a newsgroup reader), emacs, pico, vi
or if you happen to be on a dos system "edit".

Most of us who read this group use fixed fonts in our news reader so
that part isn't a consern and if you use a proportional font in x then
xedit will have a proportional font as well.  This can bee seen via
xfontsel (fmly clearlyu).  

'---...____ Faux_Pseudo ________________...---~~~

[0] I didn't even know I had that installed!

-- 
   ICQ=66618055  :   http://asciipr0n.com/fp  UPDATED=05/06
 YIM=faux_pseudo : Rev: 2/tool/opiate_live/06_-_prison_sex.mp3
 I am the pusher : Now: /moterhead/bomber/03_-_Sweet_Revenge.mp3
  I'm the whore  : Fwd: lorious/eddie_izzard_-_15_-_swiss_protection.mp3

N4biS <nab...@deadspammer.net> ASCII art 1 Jul 2003 11:20 · permalink · report
Faux_Pseudo wrote:
>  _.--- N4biS spoke in alt.ascii-art --------._ 
> 
>>Please use the console (xedit) to view.
> 
> 
> Nice pic.  But xedit[0] isn't needed for most of us.  In addtion xedit
> isn't "the console" because as it's name implies it is an X app.  
> 
> A console app would be like slrn (a newsgroup reader), emacs, pico, vi
> or if you happen to be on a dos system "edit".  
> '---...____ Faux_Pseudo ________________...---~~~

Hi Faux. Yes, you are right, it's "console _or_ xedit". For some reason when
I cut-pasted the picture in Mozilla, it made it a little wider (you know how
important the proportions in a portrait).
I draw it in vim.

An idea you might like:
#!/bin/sh

printf "\033[31m                        _      \033[0m\n"
printf "\033[31m                        \\\`\\ \033[0m\n"
printf "\033[31m             /./././.   | |    \033[0m\n"
printf "\033[31m           /        \`/. | |   \033[0m\n"
printf "\033[31m          /     __    \`/\'/\' \033[0m\n"
printf "\033[31m       /\\__/\\ /\\'  \`\    / \033[0m\n"
printf "\033[31m      |  oo  |      \`.,.|     \033[0m\n"
printf "\033[31m       \\\vvvv/        ||||    \033[0m\n"
printf "\033[31m         ||||        ||||      \033[0m\n"
printf "\033[31m         ||||        ||||      \033[0m\n"
printf "\033[31m         \`'\`'        \`'\`'  \033[0m\n"

Vitaliy.

Faux_Pseudo <Fau...@yahoo.comERCIAL> ASCII art 1 Jul 2003 21:02 · permalink · report
 _.--- N4biS spoke in alt.ascii-art --------._ 
> An idea you might like:

I prefer to be more efficiant in my coding:

#!/bin/sh
echo -e "\033[31m                        _
                        \\\`\\
             /./././.   | |
           /        \`/. | |
          /     __    \`/\'/\'
       /\\__/\\ /\\'  \`\    /
      |  oo  |      \`.,.|
       \\\vvvv/        ||||
         ||||        ||||
         ||||        ||||
         \`'\`'        \`'\`'  \033[0m"

349 bytes vs your 648 and only requires one command (echo like printf
is a bash built in if you are using /bin/sh --> /bin/bash) and the
command only runs once so the code looks cleaner and runs cleaner.

For example here is the "time" on my script:
real    0m0.007s
user    0m0.000s
sys     0m0.000s

Here is yours:
real    0m0.009s
user    0m0.000s
sys     0m0.010s



'---...____ Faux_Pseudo ________________...---~~~

-- 
   ICQ=66618055  :   http://asciipr0n.com/fp  UPDATED=05/06
 YIM=faux_pseudo : Rev: /JP5_-_02_-_As_Is_Dept.mp3
    I am the     : Now: 11_-_Rolling_Stones_-_Sympathy_For_The_Devil.mp3
silencing scream : Fwd: /rammstein/herzeleid/11_-_rammstein.mp3

Mark Hill <mar...@yahoo.co.uk> ASCII art 1 Jul 2003 21:40 · permalink · report
On 2003-07-01, 
 Faux_Pseudo <Fau...@yahoo.comERCIAL> wrote:
>
> echo -e "\033[31m

Thanks. I was trying to remember the echo -e way for ages. (I used 
to colour my boot scripts that way).

OA: TV

------------
| -------- |
| | /~ / | |
| |  \   | |
| -------- |
| x      x |
------------

-- 
Mark Hill <mar...@yahoo.co.uk>

> '---...____ Faux_Pseudo ________________...---~~~
> 

Thanks for the tip.

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