I'm currently running GitLab in a Docker container and wanted a little Bash script to let me know when the container is healthy (e.g. ready) after reboot. The script uses an until command to ask Docker to list the containers, looking for the word 'Healthy' and until the word is found it outputs that it … Continue reading Do Until (BASH)
Author: Geek_Dude
National Apprenticeship Week 2023
Monday 6th February 2023 sees the start of National Apprenticeship Week in the UK, giving me an opportunity to write about my apprenticeship learning. My Previous Apprenticeships When I left high school (quite some time ago now) I didn’t really know what I wanted to do and although I was academic, I felt that I wanted … Continue reading National Apprenticeship Week 2023
Rubber Duck Debugging / Rubber Ducking (DevOps)
Thinking of the term Rubber Duck brings my mind to two things, Ernie from Sesame Street singing in the bath and the USB Rubber Ducky that looks like a regular USB pen drive but does a lot more. So what's Rubber Duck Debugging and does it involve singing in the bath? https://www.youtube.com/embed/Mh85R-S-dh8 When writing code … Continue reading Rubber Duck Debugging / Rubber Ducking (DevOps)
Pareto Principle aka 80/20 Rule (DevOps)
I am attempting to improve my coding skills with some optimisation and came across the Pareto Principle, also known as the 80/20 rule. Although not just a coding / DevOps rule, as it's background is in economy, the Pareto Principle fits code efficiency very well (or efficiently). So what is it? The Pareto Principle The … Continue reading Pareto Principle aka 80/20 Rule (DevOps)
Semantic Versioning (DevOps)
You may have noticed that programs, apps and libraries for your favourite code may use a numbering system that is not just sequential whole numbers. For example, a look at a Python requirements.txt file shows the Python libraries in use and the version. This is called semantic versioning. Library and version from a requirements file … Continue reading Semantic Versioning (DevOps)
What Is Technical Debt? (DevOps)
Just as financial systems have financial systems have financial debt, technical systems have technical debt. Technical debt is a shortcut taken to help quickly launch a feature or meet an urgent deadline. When the shortcut is used, it is generally with the intention of revisiting the work later on to add the work that shortcut … Continue reading What Is Technical Debt? (DevOps)
Adding Badges To Read Me File (GitHub)
Ever wanted to add one of those badges that say "passing", or even "failing" to your GitHub repositories README file? I recently created a project and had GitHub Actions run tests on the project so I could get an automatic notification if any changes broke my project. One option I could have added was for … Continue reading Adding Badges To Read Me File (GitHub)
Generating / Reading QR Codes via Python (Python)
A blog post looking at using Python to create or read QR Codes.
Azure Load Testing (Azure)
In this blog post I am going to look Azure Load Testing, using it to test how much my web application can take before it breaks. I am currently hosting my Flask (Python) web application within Microsoft Azure. Orignally I tried to go with the cheapest compute option I could find as this project is … Continue reading Azure Load Testing (Azure)
An Asset WebApp (Flask / Python)
The Software Engineering & Agile module of my degree apprenticeship is coming to a close. With that in mind I think I can now share the coding I've done for the assignment especially as I needed to store it in a public repository (it's on my GitHub at https://github.com/geektechdude/qa-se-webapp ) as part of the submissions … Continue reading An Asset WebApp (Flask / Python)
You must be logged in to post a comment.