It appears I already did.
No, I meant that the code in an artwork is not the work of art. I just mentioned that the code is mostly crappy, too.
[quote=“VeronicaConnor, post:72, topic:157303”]
As a lifelong software engineer, I’ve seen plenty of code that was so beautiful it sent a shiver down my spine. [/quote]
I don’t mean any disrespect to your experience as a software engineer, but might it be that most of that was probably still just very clever engineering? People see cars that send a shiver down their spine. I would not call them art either (unless it’s an actual art car, of course).
Even though I would agree that most “writing” is not art, it does not follow that therefore code that sends a shiver down your spine is necessarily art.
Of course, in certain code might still be art, consider this bit:
#!/usr/bin/python
from gods_names import name_at_index
# say all 9e9 names of god
idx = 0
while (True):
print(name_at_index(idx))
idx = idx + 1
Of course it’s a not particularly clever piece of art, and it only works because it stands on the shoulders of a giant to stand on. But it is clearly something other than a clever bit of engineering, although it has some of that, too, if you will. One might argue, though, that it is not code
On the other hand, the code used in this work of art that stands on the shoulder of the same giant is not art in itself. We don’t see that code, so it can’t even send a shiver down our spines.
That’s what my point was.
Edit: fixed the code above