-
Continue reading →: Moving Files By Type V1 (Python)If you are like me then your computers file/folder structure goes a little “out of whack” over time. I’m looking to create a Python script that finds a particular file type and moves it into a folder. I’m running this on a MacBook (so Mac OS). For my first version…
-
Continue reading →: Installing Citrix Receiver (Mac)Citrix Receiver allows for Citrix connections to be made from lots of different types of devices, including devices running Microsoft Windows OS, Android OS, Apple iOS and the various Linux OS families. Today I will be taking a quick look at installing Citrix Receiver on Mac OS X (10.13, aka…
-
Continue reading →: Chat Bot (Python)A while back I started looking at creating a chat bot in node.js (see here) but got distracted with having fun in Python. Today I picked up the Humble Bundle Dev Ops bundle. Humble Bundle is a great site that produces bundles of books / games / videos for very prices…
-
Continue reading →: Digital Eagle
Back in January I wrote a piece about teaching users to produce rather than just consume technology. I have been trying to help young people produce (and gain a deeper understanding of) tech rather than consume tech by running a Code Club. However today I got given another great opportunity,…
-
Continue reading →: Random Turtle Shapes (Python)After yesterday’s Code Club, my son asked if it would be possible to use Turtle to draw shapes randomly. I explained that it should be simple to define some shapes and then have use Python to randomly draw them in at random areas on the screen, which quickly lead to…
-
Continue reading →: Colourful Creations (Python / Code Club)Growing up my high school had some Nimbus computers – personally I preferred the Apple Macs but every so often I used a Nimbus. On those occasions I would get the opportunity to use Turtle to create some very basic shapes, and to be honest I never found it that…
-
Continue reading →: One Year LaterIn 2006, just after their “Infinite Crisis” storyline, DC Comics skipped a whole storytime year in their comic book universe. In 2017 I volunteered to run a Code Club, one year on and it has had some very positive events. My initial code club volunteering took place in a school,…
-
Continue reading →: Bingo V2 (Python)Okay, so adding the GUI window to display/update the numbers was a little easier than I thought it would be: #!/bin/python3 #geektechstuff #Bingo #libraries to import #randint generates a random integer from random import randint #tkinter for GUI windows from tkinter import * #time is here so that sleep can…
-
Continue reading →: Bingo V1 (Python)In the United Kingdom (UK) there is a game called Bingo which involves a caller randomly choosing a number between 1 and 90, calling out the number and then placing it so that it cannot be called again. Players have cards in front of them with 15 randomly chosen numbers…
-
Continue reading →: Paddle Ball V2 (Python)Added a scoring system, a newer title screen that accepts a mouse click, but not managed to change the ball physics yet (I want it to get faster the more it hits the paddle). Also adjusted the window size. #!/bin/python3 #geektechstuff #Python Paddle Ball #libraries to import from tkinter import…



You must be logged in to post a comment.