I think it is valuable to reflect on the process of programming, just as you reflect on the process of creation in art. However I don't think that the parallel carries on too well from there.

The difference is that with physical artwork, you are creating a concrete something. It has form, mass, and these attributes are intrinsic to the experience.

By contrast programming has no real form or mass. If I write:

perl -MLWP::Simple -e 'getprint("http://www.perlmonks.org/index.pl?nod +e_id=36197")'
How big is that program? It is one line, right? But no, I pulled in LWP::Simple. Which pulled in more. And if I am going to talk about that, I pulled in Perl. And Perl used the operating system. Plus I used machines and networks over a good chunk of the US. Some of which include a webserver and database in (IIRC) California.

Does it even make sense to ask how big it is? Probably not. What makes sense is to ask how big that functionality was for me.

The answer is one line.

Were I to name 2 opposing pulls in programming, I would have to name building on what was done before, and reorganizing or reconceptualizing what was already done. At any given time these dynamics oppose each other. The first is a building dynamic. The second is creative destruction. Between the two of them you (hopefully) find solutions and then boil them down to easily repeated patterns that allow you to solve hard problems with ease.

Being from math I see parallels there. For some food for thought see The path to mastery. Like art, what you don't see is often as important as what you do...


In reply to Re (tilly) 1: Artistic Method by tilly
in thread Artistic Method by Dragonfly

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.