Screencast Archives

Catch the WP Guru Video Podcast where Complex Stuff gets made extremely simple. These are screencasts on a variety of topics, such as WordPress, Dreamweaver, iOS Development and a lot of other super complicated stuff.

Check it out on iTunes
or subscribe with your favourite Podcast client

Sorting an Array on the Commodore 64

In this episode I’ll demonstrate how to sort a numeric array on the Commodore 64. The same principle works for string arrays, and of course on all other Commodore BASIC computers. The technique I’m using here is called Bubble Sort: in effect we’re comparing the first two items in the array, and if the left … Read more

How to generate Lottery Numbers on the Commodore 64

In this episode I’ll demonstrate how to draw random lottery numbers on a Commodore 64. The secret sauce here is not only the RND function to generate random numbers, but also two loops inside each other that prevent the same number from coming up more than once. Here’s the lottery generator code: 10 x=rnd(-ti) 20 … Read more

How to build a Word Splitter on the C64 in Commodore BASIC

In this episode I’m demonstrating how to build a word splitter on the Commodore 64. We’ll use string functions to parse a sentence and split each word off into an array of words so that they can be analysed later (for example, as part of an adventure game). Here’s the code I’m building: 20 input … Read more

How to build a time of day clock on the Commodore 64

In this video I’ll demonstrate how to build a simple clock on the C64. We’ll go through this process step by step, including the built-in TI and TI$ variables, string formatting with LEFT$, RIGHT$ and MID$, as well as screen formatting. Here’s the code I’m writing – works in Commodore BASIC v2 and above: 5 … Read more

How to create random YouTube URLs in Commodore BASIC v2

In this episode I’ll demonstrate how to create those seemingly random YouTube Video IDs using a Commodore 64. Here’s the code I’m writing – works in BASIC v2 and above: 10 print chr$(14) 20 gosub 100:x=rnd(-ti):cn=1 30 a$=”https://youtu.be/” 40 for i=1 to 11 50 rn=int(rnd(0)*62)+1 60 a$=a$+yt$(rn) 70 next 80 print:print cn;” : “;a$ 85 … Read more

My honest Logitech C920 Review (2018)

In this video I’m taking a closer look at the Logitech C920 webcam. I’m testing it on my Mac running Sierra, as well as under Windows 10 Pro. I wanted a 1080p capable webcam for use with Camtasia, mainly for my Windows system which currently doesn’t have a webcam. Let’s find out if it does … Read more

What is my YouTube Channel URL

In this episode I’ll show you four ways of finding your YouTube Channel’s URL. I’ll also explain why there are three types of YouTube Channel URLs, and what the query parameters are that you can append.

Just in case watching videos isn’t your thing, or you’re in a hurry, I thought I’d include some written instructions as well 🙂

Read more

How to turn off PayPal Notifications in the Facebook Messenger App on iOS

In this video I’ll show you how to switch off those super annoying PayPal notifications in the Facebook Messenger App in iOS on my iPhone 6s Plus. I’ve recorded this video on iOS 11 in March 2018. https://wpguru.co.uk/wp-content/uploads/2018/08/Switch-off-PayPal-Notifications-in-Facebook-Messenger-on-iOS.mp3Podcast: Download (Duration: 2:46 — 2.5MB)