Skip to main content

Posts

Showing posts with the label GitHub

I'm Just Trying to Get Better at Everything

I'm Trying to Get Better at Everything (and Accidentally Building another IoT Network at the same time) I don’t really know where I’m going in tech yet — and for a while, that bothered me. There are so many different paths: backend engineering, embedded systems , web development, networking… and it feels like everyone else has already picked a lane.  I’m trying to see that as a strength rather than a weakness. Instead of specialising too early, I’ve been focusing on getting better at as many areas as I can. Not in a scattered way, but by building things, testing them and testing myself as I go. One of the best examples of that mindset has been my recent dive into IoT . How I've Ended Up Building another IoT System Someone told me about their business idea and it involves IOT which was a big part of my course at Hallam University so I told him that I'm probably the ideal person to build him a prototype IoT system that he can present to his potential funders.  He knows more ...

C++ And The Never Ending Path Of Personal Development

Baines is on a path of continuous personal development, his next target is the programming language C++  πŸ’ͺπŸ’ͺπŸ’ͺ  I’ve always believed that growth happens when you deliberately step outside your comfort zone. That’s exactly why I’ve started learning C++. I’m constantly looking for ways to raise my programming game to the next level, and C++ feels like a natural progression—especially as I continue aiming for a future in embedded systems . Even though I haven’t yet had my big break into the professional embedded world, I want to be ready when the right opportunity appears. Preparation meets opportunity-that’s the goal. C++ is powerful, fast, and close to the hardware, which makes it ideal for embedded development. It forces you to think more carefully about memory, performance, and system design. That challenge is exactly what attracts me. I don’t just want to write code that works-I want to understand what’s happening under the hood. By building a strong foundation in C++, I’m...

Does Cuthbert Have What it Takes to be a Data Analyst?

I have always been good with numbers, when I was at school I did my Maths GCSE a year early and got a B. Unfortunately I had a lot of bad things going on in my life at the time so I didn’t go forward with University at that time.  Fast forward a decade or two and now I’m a recent graduate from Hallam University , I went there as a mature student to do a degree in computing and the course involved loads of data related modules. During my Computing course at Hallam University I spent a lot of time learning about data, databases, data cleaning , data processing, data management, data analytics and data visualisations . The course also involved a number of assignments that included a power point presentations in front of tutors and answering their questions about the work afterwards. Presentations were something I was very comfortable doing. I learned to collect raw sensor data using a Raspberry Pin (or from a pico using micropython/circuitpython), I learned that it is absolu...

Bar Billiards Auto-Score Project - Stage 1 Complete.

What is Bar Billiards? Bar Billiards Auto-Score Project Outline BB Auto-score code on git hub. πŸ†πŸ†πŸ† Stage 1 of my Bar Billiards Auto-Score Project is complete.  It's not rocket science but my method for making progress is to go step by step.  If I can do something straight away I'll do it then make incremental progress.  Whenever I'm working on a new kind of project that involves doing things I haven't done before and using technologies that I haven't used before I try to simplify it as much as I possibly can just so I can get something working.  It's a lot easier to start with something small and simple that works than something big and expansive that isn't working.  When it's new, big, complicated and not working it will be incredibly difficult to work out what's gone wrong. πŸ’»πŸ’ΎπŸ“ˆ Python command line is about as simple as it gets, I've done it this way because this is what's required for this project.  The next step will involve getting ...

What My RiverProject is about and Why Sensor Data + MQTT is Revolutionising Environmental Monitoring

What My RiverProject is about and Why Sensor Data + MQTT is Revolutionising Environmental Monitoring  πŸ’»πŸ“ΆπŸ“‘πŸ“ πŸ“‰πŸ“ŠπŸ“ˆπŸ’Ή River Project Repository My  RiverProject , hosted on GitHub, is an ambitious and practical environmental sensing system I built as part of my Year 2 project at Sheffield Hallam University. The core of the project involves collecting real-world sensor data - from a Sense HAT attached to a Raspberry Pi processing that data, and sending it in JSON format via the lightweight messaging protocol MQTT so it can be visualised and analysed elsewhere. GitHub At its heart, RiverProject exemplifies a modern approach to environmental monitoring: shifting away from manual data collection and towards continuous, automated remote sensing . In my project I gather environmental data, create rolling averages, and publish that information through MQTT to other platforms for dashboard visualisation - which can be invaluable for spotting trends or triggering alerts. GitHub Why...

Imperial Measurement Converter App Using A Python GUI

  Imperial measurement system converter app  I decided to spend an evening making a unit converter app without using an api to do the heavy lifting for me *and* with a python based gui because I haven't really made anything with one of them before and this is the result: πŸ‘πŸ‘πŸ‘      I installed Tinkter to get the GUI ( graphical user interface ) This is the GUI it produces when it's running.     The next job is to tidy up the code, it needs it.  Then I want to add some more functionality to it.  I can add volume conversion or weight .  I've always wanted to do some research into old money so I can add that to the app. After I've added a bit more functio Link to the app on github nality to it I'll find a way to host it on the public internet.     This is my advice to any other programmers out there:  Once you've got something working make the most of it because it's easier to add things onto something that's ...

Advice For Beginners To Get Up and Running with Python

1. Why a Proper Setup Matters Before diving into code, a structured setup helps you avoid “spaghetti” projects that become hard to maintain. Using a virtual environment ensures your dependencies are isolated (so you don’t clash with system Python or other projects). Having a clear skeleton (separating imports, variables, functions, and “main program logic”) gives you and future readers a map of where each piece lives. Many software engineering experts emphasize that good architecture up front can save you enormous friction later — clean structure is one of the foundations of maintainability . ( Ciklum ) 2. Creating a Virtual Environment  πŸ’ΎπŸ’»πŸ’Ή Here’s a typical workflow: Open your terminal / command prompt in your project folder (or create a new folder). Run (for Python 3): python3 -m venv venv This creates a directory venv/ (or whatever you name it) containing the isolated Python environment. Activate it: On macOS / Linux: source venv/bin/activate On Window...

Check Out Cuthbert's GitHub Pages site. https://cuthbert86.github.io/

This is a summary of my GitHub Pages site!   https://cuthbert86.github.io/ It is my personal corner of the web where I’m showcasing a range of projects and experiments as I learn more about web design and development. Whether you’re a fellow tech enthusiast, a curious visitor, or someone interested in learning alongside me, I hope you’ll find something interesting and useful here. The site is a living portfolio, featuring examples of my work as I explore different technologies and programming concepts. You’ll see projects built with HTML and enhanced with popular web tools like Bootstrap, giving my pages a clean and responsive look. I’m always updating and improving the design as I pick up new techniques, and many of the pages reflect my journey in web development. One of the highlights is my exploration of Python and its many applications. I’ve included projects that demonstrate data analysis, working with CircuitPython and MicroPython, and even connecting devices using MQTT....