Introduction

  • I was approached by Tshiamo Ndlovu to help create a website for a local furniture store here in Pretoria. My role in particular was mainly to add responsiveness and a bit of CSS work here and there, but the bulk of the work was done by Tshiamo as he wanted to learn PHP for some work he has at school.

  • In the week and a half, we had to work on this, we did deliver a finished product. What we did wrong has more to do with the development of this website. Let's discuss it...

Error #1: Not utilising Git and GitHub

  • I have used Git & GitHub on multiple projects of my own and have become quite familiar with it over my time using it. For the sake of staying on topic, I won't discuss why we didn't use it, but we definitely should've...

  • Git and GitHub are incredibly useful tools when it comes to implementing changes, tracking changes, sharing changes and reverting to previous versions of the code. These are features we deprived ourselves of and oh boy was it a mission to replicate.

  • Our way of tracking changes and sharing changes was sending zip files to each other over WhatsApp and that was very inconvenient when we wanted to merge the changes Tshiamo made with the changes I made. What would be a simple "git rebase" and "git merge" turned into sharing the file I changed and manually adding the lines into his file since he would've made changes in the same file as well.

  • We did this frequently given how quickly we needed to work at the same time to deliver this site on time. I view the time spent manually adding the changes to be wasted time that would've been better spent on actual coding instead of merging.

Error #2: Not keeping it simple

  • We should've kept it simple from the get-go.

  • I prefer using Tailwind CSS over vanilla CSS. Tailwind just simplifies a lot of what comes with writing CSS. Things like naming classes, styling them, media queries and that fluff.

  • Since my job was to make the site responsive and minor CSS work, I insisted on using Tailwind given its ease and speed. Terrible idea...

  • What was supposed to be quick and easy CSS work turned into changing and migrating all the CSS files to Tailwind classes, failing, and returning to vanilla CSS, but this time in-file CSS with the intention of later turning them to CSS files after cleaning up already existing CSS files.

  • The reason we bailed on Tailwind was that we ran into a problem we felt we didn't have time to solve, so vanilla CSS was the next best option and we ran with it to completion.

  • Looking back this was probably the best option anyway since we both know CSS and only I know Tailwind, picking what the majority know is always the best option.

Error #3: Not knowing a bit of everything

  • Throughout the project, our tasks often overlapped. There would be times when I needed to understand PHP and I didn't and times when Tshiamo needed to understand CSS and he did, but not fully.

  • This is where I feel we could've saved time used for explaining and assisting and maybe we could've helped each other more than we did in our dedicated tasks.

  • In a small team like the one we were, we need to be fully aware of everything to do with a project so we can identify things the other person may have not noticed. A peer review...we robbed ourselves of having "peer reviews" by not knowing everything.

  • I believe a small team should be about splitting tasks for the sake of speed rather then specialisation, everyone should know a bit of everything instead of all of one thing and be clueless about the rest.

How did we manage to do it?

  • Great communication.

  • Over the years, Tshiamo and I have worked together on multiple occasions (not exclusive to programming), so given how familiar we are with each other, exceptional communication allowed us to complete this project on time and with everything promised.

  • If you're going to do a project the way we did, make sure your communication is that of a married couple because you'll be spending many hours together in frustration, looking line by line, file by file for the change that messed everything up.

Conclusion

To conclude don't do it the way we did. Save yourself the frustration, late nights, and possibly conflict and use a version control system (git) and upload it to the cloud (GitHub), keep it simple and use tools that everyone knows, also know a bit of everything if you're working in a small team.