St Michael's Mount, Cornwall


St Ives, Cornwall

Perranporth Beach, Cornwall on New Years Day




It has been a while since the last post- I have been a busy boy. Last Saturday headed up to Camden to see Jarvis play at the Roundhouse. Another brilliant gig, with a bit more crowd banter than the previous one. Played all new stuff and a couple of covers - no Space Oddity this time though. I wasn't very close so no photos this time - you'll have to take my ticket as evidence. If you don't have the new album you really should get it. Be nice - buy it for someone for Christmas .....

def showImage(imageFile):
import PyQt4.Qt as qt
app = qt.QApplication([])
imgWin = qt.QLabel(None)
img = qt.QImage(imageFile)
imgWin.setPixmap(qt.QPixmap.fromImage(img))
imgWin.resize(img.width(), img.height())
imgWin.setWindowTitle(imageFile)
imgWin.show()
app.exec_()
showImage("C:\\tmp\\zoom.jpg")
import PyQt4.Qt as qt
app = qt.QApplication([])
hello = qt.QPushButton("Hello world",None)
hello.resize(100, 30)
hello.show()
app.exec_()
Enough for today .... hopefully I will get around to doing something a little more useful with it. Thanks to this link which helped me on my way.













