-
Continue reading →: Where is the International Space Station? (Python)Now that I know how to use images in Python I’ve tackled the “Where is the space station?” lesson of Code Club projects as a) I will be teaching the lesson at some point and its always good to practise the lesson before teaching it and b) I want to…
-
Continue reading →: Python using Turtle to show imagesI’ve been puzzling how to use images in a Python script since yesterdays “Scissor, Paper, Stone” game. I don’t like “Googling” for an answer straight away when I’m working on personal projects and instead bounced through a few ideas before I clicked that turtle could be used to display an…
-
Continue reading →: Scissor, Paper, Stone…but with Pokemon!This week at Code Club I taught Python Lesson 2 (Scissors, Paper, Stone) . When I got home I showed my son (who is a massive Pokemon fan) how the lesson can be expanded to make a slightly more complicated version that included names and the option to keep playing with…
-
Continue reading →: Github
Just a heads up that I am going to also post my code/programming/scripts onto Github. Who knows, I might also get to help out on other people’s code/programming/scripts…. My Github page can be found at: https://github.com/geektechdude
-
Continue reading →: Caesar Cipher (Python)I’m having a play in Python today and looking at the Caesar Cipher. The Caesar Cipher (Caesar Shift, Caesar’s Code) is a simple, easy to implement substitution cipher. The cipher is named after Julius Caesar. The cipher works by taking the letters of the message and then shifts the letter…
-
Continue reading →: Amazon Price Checker (Part 3)Version 3 of my Amazon.co.uk price checker utilises the JSON (JavaScript Object Notation) module so that JSON files can be used by Python. I’ve stored the ASIN (Amazon IDs) of the Amazon products that I want to check the price of in a JSON file (called amazlist.json) and Python now…
-
Continue reading →: Amazon.co.uk Price Checker (Part 2)Building on my price checker (see part 1) I’ve now added in an option asking how much spends (a.k.a pocket money) is available and allowing for the end user to enter multiple ASINs before the program checks the prices. Next step; storing the ASINs in/reading the ASINs from a file…
-
Continue reading →: Amazon.co.uk Price Checker (Part 1)One of my daily non-work related tasks is checking the prices of products from Amazon.co.uk that family members of myself are after at a cheap price. This is generally accomplished by either loading up the Amazon.co.uk individual product pages or adding all the items to an Amazon wishlist and loading…
-
Continue reading →: Python 3 – Merge Multiple PDFs Into One PDF
One of the issues I’ve seen in the real world is end users having multiple PDFs and wanting to merge them into one PDF without paying for expensive PDF software or using freeware from unknown sources. The below is a Python script to try and resolve that issue (Python 3,…
-
Continue reading →: Python 3 – Importing Modules (Mac OSX)
I’m currently playing around with Python 3 on Mac OSX. One of the first issues I’ve hit is importing modules. During a Python script the import command is used to call on other modules so that their functionality can be used in the script. However before Python can import a…





You must be logged in to post a comment.