Setup Custom Domain

Finally got around to setting up a custom domain, not hard but quite involved and required some serious concentration and patience, due to DNS record delays.

3 April 2026 · Mark

April Reminder Do A Post

I am apt to forget to post in my blog as I am often to distracted by the real world and so it slips my mind. So a note to self (like it will make a difference) post something, anything!

2 April 2026 · Mark

I Haven't Posted Anything

I feel like I should post something but I really don’t feel like. I don’t feel I have anything positive to post about in terms of CG or anything else at the moment. So this is in lieu of a post proper, a little note.

18 March 2026 · Mark

Renamed Description

The contents of the post were still called Description now they are Contents to match the dialog.

6 March 2026 · Mark

Post Description Wrong

The notes Contents were still is the capitalize function, commented out now. So This Should be Working 😀

6 March 2026 · Mark

Segmentation Fault On Linux

So it isn’t just Mac that is throwing up an error, also happening one linux. now i have managed to check the code on Debian it is clear something is wrong with the installation or calls in both. it seems to be related to QApplication, but i can’t be arsed to track it down any further. time for a rewrite using QWidget only.

6 March 2026 · Mark

Created A Post Symbolic Link

This will allow me to keep the desktop post shorcut while editing and renaming the python applications. A special case will be needed on windows but the mac and linux versions should work the same…

5 March 2026 · Mark

Check For Directory

Create a directory if it doesn’t exist: import os.path isdir = os.path.isdir(postpath) if not isdir: os.mkdir(postpath)

4 March 2026 · Mark

How To Pause Unix Shell Script

You can pause the execution of a shell script using read like this: read -t 5 -p "press any key to resume, will exit in 5 sec ..." The -t is the time in seconds and the -p is the pause followed by a message.

28 February 2026 · Mark

Changed Page Style Of Notes

I didn’t like the list style of the original notes page so removed the list.html from the theme/layouts/notes directory. This is now the default theme list as used in tags etc.

25 February 2026 · Mark