Saturday 6 January, 2018
Today is Epiphany. It also makes me think about this excellent track from the 1991 David Sylvian & Russell Mills collaboration - Ember Glance: The Permanence Of Memory. I particularly have always loved the spoken word samples on this, especially that of Irish Poet, Seamus Heaney, whose words are lifted from A Northern Hoard.
I should to spend some time this weekend going back over the first seven sessions as I find it has become very complex quite quickly - at least for me.
formatter = "%r %r %r %r"
print formatter % (1, 2, 3, 4)
print formatter % ("one", "two", "three", "four")
print formatter % (True, False, False, True)
print formatter % (formatter, formatter, formatter, formatter)
print formatter % (
"I had this thing.",
"That you could type up right.",
"But it didn't sing.",
"So I said goodnight."
)