vote up 12 vote down star
9

Are you using ascii art to decorate your code ?

            .-"""-.
           '       \
          |,.  ,-.  |
          |()L( ()| |                        license goes here
          |,'  `".| |
          |.___.',| `
         .j `--"' `  `.
        / '        '   \
       / /          `   `.
      / /            `    .
     / /              l   |
    . ,               |   |
    ,"`.             .|   |
 _.'   ``.   o     | `..-'l
|       `.`,        |      `.
|         `.    __.j         )
|__        |--""___|      ,-'
   `"--...,+""""   `._,.-' mh


   www
  /n n\        /\
  |/^\|       /  \        warning notes
  | , |       ^||^
   \_/         ||
   _U_         ||
 /`   `''-----'P3
/ |. .|''-----"||
\'|   |        ||
 \|   |        ||
  E   |        ||
 /#####\       ||
 /#####\       ||
   |||         ||
   |||         ||
   |||         ||
   ||| gem     ||
  molom        Ll



 /~~~\/~~\/~~~\/~~~\/~~\/~~~\                    /~~~\/~~\/~~~\/~~~\/~~\/~~~\
 | /\/ /\/ /\ || /\/ /\/ /\ |                    | /\ \/\ \/\ || /\ \/\ \/\ |
 \ \/ /\/ /\/ /\ \/ /\/ /\/ /    function name   \ \/\ \/\ \/ /\ \/\ \/\ \/ /
  \ \/\ \/\ \/  \ \/\ \/\ \/                      \/ /\/ /\/ /  \/ /\/ /\/ /
,_/\ \/\ \/\ \__/\ \/\ \/\ \______________________/ /\/ /\/ /\__/ /\/ /\/ /\_,
(__/\__/\__/\____/\__/\__/\________________________/\__/\__/\____/\__/\__/\__)
flag

39% accept rate

17 Answers

vote up 2 vote down

One time I came across some truly horrible code I needed to maintain, and took the time to insert the following comment.

/*
 __
/  \       ________________________________
|  |      /                                \
@  @      | Looks like you need to maintain|
|| ||     | this code.  For once you might |
|| ||  <--| wish I could help you.         |
|\_/|      \_______________________________/
\___/


    (   )                                                              
 (   ) (      
  ) _   )    <--Visual diagram of code logic.
   ( \_      
 _(_\ \)__                                                             
(____\___)) 

*/
link|flag
vote up 0 vote down

Not so much in my code, but I put ASCII art in the banner file on the embedded Linux systems that I develop. Each major release gets some new ASCII art in it which nobody ever really sees, except tech support -- they get a good laugh every time they log into a unit. Maybe I'll start code-naming new releases and inserting corresponding ASCII art to go with it. Hmmmmmm....

link|flag
vote up 0 vote down

No. Although much as I like it, putting it into code is like putting doodles in your doctoral thesis. It not only looks unprofessional, it also confuses the reader, has no useful purpose, ... it's just not done.

link|flag
3  
The same thing goes for your shameful ellipsis after a comma (or an ellipsis anywhere that you aren't shortening an existing quotation that can be referenced, and then only for the sake of clarity through brevity). All of your posts on Stack Overflow should be treated as doctoral theses. Shameful. – Frank Crook Apr 6 at 15:31
@Frank - I'm not sure what are you trying to say. About the ellipsis, english is not my main language (not even my second, or third), so I don't state I know all its rules. If you're were somewhat offended by my answer, – ldigas Apr 6 at 17:40
you shouldn't have asked the question. Although I still can't see what troubled you in it so much. It was a hypothetical comparison. – ldigas Apr 6 at 17:41
Sorry, confused the original poster with you. Still, the rest stands. – ldigas Apr 6 at 17:48
vote up 2 vote down

Man, I haven't, but after looking at the examples here, I am so going to start.

link|flag
vote up 3 vote down

No, just like I don't put

/*************************Comment***********************/

or similar stuff. I like my comments and code as short as possible. It's a principle I learned from writing: you shouldn't be able to take away one word without collapsing the whole story. I try to apply it to code as well, since code is basically writing but within rigid rules.

Also, I found that such art makes it harder to refactor, since I'd feel like killing unicorn. Simple and readable code without decoration is easy to refactor.

link|flag
vote up 3 vote down
                               ,
                               #
                              #+#
                             #**#
                             @****@
                          ,   @****@
                   ,      #   @******@
                   #     ##    @******@
                  ##    #+#     @*****+@     ,
                 #+@   @**@      @******@    #
               @#**#  @***@       @*****@   #+@
             @#+***@  #***@       @******@  #**@
           @#*****#  @*****@     @******@   @**@
          @******@    +******@@@********@    @**@
        @*******+     @****************+@    @***@
       @********@       @*************@      @****@
      @********@          @***********@       @*****
     @*********@           @+********@        @******@
    @**********@            @********@        @*******@
    @*********+@            @*********@     @**********@
    @***********@           @**********+@@@+***********@
    @************@         @****************************@
    @+*************@     @******************************@
     @**************+@@@+******************************@
      ************************************************.  #W
   W    *******************************************. .####
    ####.  ************************************.  .####W
      W####.   *****************************. .#######W
         W######.  *********************.  .#########
          .W########.   ***************.##########W
          +  W*##########.  ******   .##########W *+
        @#**** W*###########W****W#############W ***@
       @******** W*##########################W ******@
       @********** W##########**###########W ********@
        @*********** W#####W**@@**W######W **********@
         @************* W **#@  @#** W#W ***********@
          +@****************@    @+*** ***********@
            @@***@@@+******@  @@  @*******@@@****@
                    @*******@@**@@*****@
                    @*+****************@
                   @******@********@****@@
                  @+****@  @*****@   @****@
                   @***@   @+****@   @+**@
                     @@   @*******@  @@@@
                           @@@@@@@

I use ASCII art generators I find on Open Directory to generate ASCII from an image file, then clean up the results into something pretty. It's a meditative experience while you're thinking of a solution, and will make yourself and others smile when you come across it later.

After a little practice, you can make decent art out of any image, and you'll have a small library of images to mark important spots in your code.

link|flag
vote up 3 vote down

I've put ASCII art diagrams in a couple of times to explain complex data structures.

link|flag
vote up 3 vote down

Definitely not. Waste of space and can confuse others. That said, I sort of like finding ASCII art left by others. :-)

link|flag
2  
So it's neat when you see other people do it, but you won't entertain the idea yourself? – Frank Crook Apr 3 at 16:10
vote up 0 vote down

Yes, but mostly words mangled through this: ASCII Generator

link|flag
vote up 0 vote down

It looks cool but nothing more. I like ASCII art and could use it in my readme files but not in code files.

link|flag
vote up 1 vote down

Sometimes I use the figlet widget to add comments in source code or configuration files. This often helps when scrolling quick through a longer file (yeah I know, there shouldn't be any long files) or when printing 2 columns landscape (as I like to).

link|flag
vote up 4 vote down

I use the ascii art text generator at http://www.network-science.de/ascii/ by Jörg Seyfferth. This is the "graffiti" font.

__________                   .___             __  .__               
\______   \_______  ____   __| _/_ __   _____/  |_|__| ____   ____  
 |     ___/\_  __ \/  _ \ / __ |  |  \_/ ___\   __\  |/  _ \ /    \ 
 |    |     |  | \(  <_> ) /_/ |  |  /\  \___|  | |  (  <_> )   |  \
 |____|     |__|   \____/\____ |____/  \___  >__| |__|\____/|___|  /
                              \/           \/                    \/
link|flag
vote up 0 vote down

I've always wanted to write an app that turns monochrome bitmaps into ascii art. Not sure how I'd do it though.

Holy Moly... =:O That Pascal Pong app is crazy.

link|flag
Already been done. en.wikipedia.org/wiki/…. – Andrew Sep 30 '08 at 5:06
The really fun thing to do is to watch videos via ASCII art ... i.e. use mplayer -vo aa for B&W ascii or -vo caca for awesome color ascii. Watch video file on a remote server right in your SSH term! (Of course to get sound you have to run locally.) – joelhardi Sep 30 '08 at 8:08
vote up 13 vote down

How about this one. This is a working Turbo Pascal program that plays pong under DOS. Here is a program on sourceforge that creates ascii art from a bitmap file.

                     program         GrouchoMarx
             ;const topline=      09;bottomline=21;
         leftcol=10;rightcol   =68;var deltax,deltay,
       xpos,ypos:integer;ch   :char;procedure Border;var
   i:integer;begin for i   :=leftcol to rightcol do begin
   gotoxy(i,topline);{}   write('-');gotoxy(i,bottomline);
  write('-') end;for      i:=topline to bottomline do begin
  gotoxy(leftcol             ,i)   ;write('|');gotoxy({}{}{}
  rightcol,i)                               ;write('|'); end
   end;{}{}                                 begin ClrScr;xpos
   :=leftcol                                  ;ypos:=topline;{}
    deltax                                     :=1;deltay:=1;{}
      {!}                                       gotoxy(33,5);{}{}
                                                write('Groucho Bo'
                               +'unce');        gotoxy(30,7);write
           ('by '            +'John M. P'       +'assaniti');{}{}{
       }Border;{}{}{       }gotoxy(29,24);{     }write('Press any'
   +' key to quit.'       );while not {-ugh-}   keypressed do begin
  gotoxy(xpos,ypos)       ;xpos:=xpos+deltax;    ypos:=ypos+deltay
   ;{      }if{}            (xpos =leftcol)       or(xpos=rightcol
  ){}      then{  }{       {}     deltax{          }:=-deltax;if(  ypos
  =       topline){}      or     (ypos={}{}{       }bottomline){   }   {}
  {      }  then  {       }     {         }         deltay:=-{}   {}    {}
  {     }{}     {}{       }      {        }          deltay;{}   delay   (
  {}      {    }{         }       {     }20           ) end;{   }{}{}{}{}
   {}                     {}           {}     {} {}{}    gotoxy (1,24);{}
    {}        {}           {?}        {}     {}    {}      ClrEol;{<>}
     {?}     {}              {?}     {}      {      }{     }gotoxy(27,
       topline                 +3);{!}       {       }{    } write({}
             {                               }{       {}   'Not very '
             {                 }              +'e'     {}  +'xciti'  {
             {}               +'ng, '           {}      +'was it?'   );
              {}       {?}  gotoxy(23            ,         topline    +
               5)     ;write('Well, l'            +        'et''s'    {}
          +' see you write a program');           {{       }{}{  }     {}{
          }gotoxy(23,topline+6);write({            }{        {   }       {
          }'where the source code look'             +        {  }{       }
          's like');gotoxy(23,topline+       7);write        ( {}        {
           }'Groucho'+   ' Marx!!');{       }{    { }        {??}       {}
                                        gotoxy    (1,1        );        {}
                        write(         ^G    {}      {}                {}
                       {});{  ;;}     {{      {{                       }
                         delay       ({        }{                     }{
                            {        }  9999                          )
                                     ;    {{{}                       {}
                                     for ypos                       :=
                                      {                            }{
                                     }{                            {}
{ --Groucho Bounce-- }              {}                            {}
{by John M. Passaniti}             {{                             }
{compile with Turbo  }            {}                             {}
{Pascal, any version.}           {}                              {
                               {{{                            {{{
                             {{}                         topline
                             +                         3 {
                             }                        to
                             {}                      {}
                              {}                    {}
                               {                   {{
                               }                   {
                           }topline+7 do begin gotoxy(23,ypos)
                           ;write('                          '
                           +'         ');delay(50)end;gotoxy({
                           }34,topline+6);write('See Ya Bye!!'
                           );gotoxy(1,1);write(^G^G^G)end.{!!}
link|flag
1  
Impressive. Also proof that some people have WAY too much free time. – Andrew Sep 30 '08 at 4:38
You should check out the IOCCC. – TraumaPony Sep 30 '08 at 4:45
LOL I agree with the time stuff – Jhonny D. Cano -Leftware- Apr 3 at 18:52
vote up 6 vote down

When using tricky code...

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . _________
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ./ It's a trap!\
. . . . . . . . . . . . . . . . _,,,--~~~~~~~~--,_ . . .\ .________/
. . . . . . . . . . . . . . ,-‘ : : : :::: :::: :: : : : : :º ‘-, . . \/. . . . . . . . . .
. . . . . . . . . . . . .,-‘ :: : : :::: :::: :::: :::: : : :o : ‘-, . . . . . . . . . .
. . . . . . . . . . . ,-‘ :: ::: :: : : :: :::: :::: :: : : : : :O ‘-, . . . . . . . . .
. . . . . . . . . .,-‘ : :: :: :: :: :: : : : : : , : : :º :::: :::: ::’; . . . . . . . .
. . . . . . . . .,-‘ / / : :: :: :: :: : : :::: :::-, ;; ;; ;; ;; ;; ;; ;\ . . . . . . . .
. . . . . . . . /,-‘,’ :: : : : : : : : : :: :: :: : ‘-, ;; ;; ;; ;; ;; ;;| . . . . . . .
. . . . . . . /,’,-‘ :: :: :: :: :: :: :: : ::_,-~~,_’-, ;; ;; ;; ;; | . . . . . . .
. . . . . _/ :,’ :/ :: :: :: : : :: :: _,-‘/ : ,-‘;’-‘’’’’~-, ;; ;; ;;,’ . . . . . . . .
. . . ,-‘ / : : : : : : ,-‘’’ : : :,--‘’ :|| /,-‘-‘--‘’’__,’’’ \ ;; ;,-‘ . . . . . . . .
. . . \ :/,, : : : _,-‘ --,,_ : : \ :\ ||/ /,-‘-‘x### ::\ \ ;;/ . . . . . . . . . .
. . . . \/ /---‘’’’ : \ #\ : :\ : : \ :\ \| | : (O##º : :/ /-‘’ . . . . . . . . . . .
. . . . /,’____ : :\ ‘-#\ : \, : :\ :\ \ \ : ‘-,___,-‘,-`-,, . . . . . . . . . . .
. . . . ‘ ) : : : :’’’’--,,--,,,,,,¯ \ \ :: ::--,,_’’-,,’’’¯ :’- :’-, . . . . . . . . .
. . . . .) : : : : : : ,, : ‘’’’~~~~’ \ :: :: :: :’’’’’¯ :: ,-‘ :,/\ . . . . . . . . .
. . . . .\,/ /|\\| | :/ / : : : : : : : ,’-, :: :: :: :: ::,--‘’ :,-‘ \ \ . . . . . . . .
. . . . .\\’|\\ \|/ ‘/ / :: :_--,, : , | )’; :: :: :: :,-‘’ : ,-‘ : : :\ \, . . . . . . .
. . . ./¯ :| \ |\ : |/\ :: ::----, :\/ :|/ :: :: ,-‘’ : :,-‘ : : : : : : ‘’-,,_ . . . .
. . ..| : : :/ ‘’-(, :: :: :: ‘’’’’~,,,,,’’ :: ,-‘’ : :,-‘ : : : : : : : : :,-‘’’\\ . . . .
. ,-‘ : : : | : : ‘’) : : :¯’’’’~-,: : ,--‘’’ : :,-‘’ : : : : : : : : : ,-‘ :¯’’’’’-,_ .
./ : : : : :’-, :: | :: :: :: _,,-‘’’’¯ : ,--‘’ : : : : : : : : : : : / : : : : : : :’’-,
/ : : : : : -, :¯’’’’’’’’’’’¯ : : _,,-~’’ : : : : : : : : : : : : : :| : : : : : : : : :
: : : : : : : :¯’’~~~~~~’’’ : : : : : : : : : : : : : : : : : : | : : : : : : : : :
link|flag
The Death Star is operational – Brad Gilbert Sep 30 '08 at 13:28
If I ever find this in code, I can retire a happy man; flush with the knowledge that my career is complete. – Electrons_Ahoy Apr 3 at 18:57
vote up 6 vote down
           ___    ___    ____      
    ___   /   \__/   \__/____\     
  _/   \_/  :           /_____\   
 /|      :  :  ..      /       \   
| |     ::     ::      \       /   
| |     :|     ||     \ \_____/    
| |     ||     ||      |\   / |     
 \|     ||     ||      |   / | \    
  |     ||     ||      |  / /_\ \   
  | ___ || ___ ||      | /  /    \  
   \_-_/  \_-_/ | ____ |/__/      \ 
                _\_--_/    \      / 
               /____             /  
              /     \           /   
              \______\_________/
link|flag
vote up 30 vote down

Oh yes

━━━━━┓⌒ζ
┓┓┓┓┓┃
┓┓┓┓┓┃
┓┓┓┓┓┃ GOOD LUCK
┓┓┓┓┓┃ MAINTAINING
┓┓┓┓┓┃ THIS SHIT
┓┓┓┓┓┃
▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒

Always popular

/*************************************************************
 *                                                           *
 *   .=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-.      *
 *   |                     ______                     |      *
 *   |                  .-"      "-.                  |      *
 *   |                 /            \                 |      *
 *   |     _          |              |          _     |      *
 *   |    ( \         |,  .-.  .-.  ,|         / )    |      *
 *   |     > "=._     | )(__/  \__)( |     _.=" <     |      *
 *   |    (_/"=._"=._ |/     /\     \| _.="_.="\_)    |      *
 *   |           "=._"(_     ^^     _)"_.="           |      *
 *   |               "=\__|IIIIII|__/="               |      *
 *   |              _.="| \IIIIII/ |"=._              |      *
 *   |    _     _.="_.="\          /"=._"=._     _    |      *
 *   |   ( \_.="_.="     `--------`     "=._"=._/ )   |      *
 *   |    > _.="                            "=._ <    |      *
 *   |   (_/                                    \_)   |      *
 *   |                                                |      *
 *   '-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-='      *
 *                                                           *
 *        ABANDON ALL HOPE, ALL YE WHO ENTER HERE            *
 *************************************************************/

For the international audience (might be off, depending on your fonts):

          / ̄ヽ
         /⌒⌒⌒ヽ/|
       ⊂| ◎     ∥
         ヽ  ゚∀゚丿\|
          __ 〃ヽ〈_
      γ´⌒´--ヾvーヽ⌒ヽ-:,,  
     /⌒ y..   /\   ); `ヽ-:,,
    /    ノ\_| .萬 | ._.イ  | "-:,,
    !  ,,,ノ爻ヘ._\/__.ノr;^ >  )  \,
    .|   <_ \ヘ,,___,+、__,rノ /\ /:    ヽ,,
     |ヽ_/\ )...、__,+、_アソ〃 /       \
     | ヽ、___ ヽ.=┬─┬〈  ソ          "-.,
    |   〈J .〉、| 亀 |, |ヽ-´           ゝ
    .|   /"" | 甲 |: |               ミ
     |   レ  :| 男 .| リ               "-:,,
     |   /  ノ|__| |                  "-:,,
     .|  | ,, ソ  ヽ  )                ,,,-ー"
     | .,ゝ   )  イ ヽ ノ             ,,,-ー"
     .| y `レl   〈´  リ          ,,,-ー"
      | /   ノ   |   |    / """"
      l ̄ ̄/   l ̄ ̄|  ,,,-
       〉 〈 `ー-ー-|   |-ー" 
      /  ::|    (_   \
     (__ノ      \___)
link|flag
1  
One per answer! I want to vote up "GOOD LUCK MAINTAINING THIS SHIT" – Jacob Sep 30 '08 at 5:24
Good luck maintaining +1. Sweet that fits perfect with some code i have to update. – mattlant Sep 30 '08 at 7:14
Not strictly ASCII art anymore, though. ;-) – Konrad Rudolph Sep 30 '08 at 8:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.