Renaming the Default Git Branch from master to main
August 8th, 2024 2:49 PM Mr. Q Categories: github
As part of a move toward more inclusive language in software development, many Git platforms and tools have transitioned from using master as the default branch name to main. Renaming the primary branch in your Git repository is a straightforward process but requires a few steps to ensure everything continues […] Read more »
A Complete Guide to Git Workflow: From Cloning to Merging
August 8th, 2024 2:36 PM Mr. Q Categories: github
Git is a powerful version control system that allows developers to collaborate on projects efficiently. Understanding the proper workflow from cloning a repository to merging changes is essential for maintaining a clean and manageable codebase. This guide walks you through the entire process, highlighting key commands and considerations to ensure […] Read more »
How to Connect to Git Repositories Using SSH
August 8th, 2024 11:46 AM Mr. Q Categories: github
SSH (Secure Shell) provides a secure way to access and manage Git repositories without the need for password authentication. This guide walks you through the steps to set up SSH keys, add them to your Git hosting service, and configure your environment for secure, password-free interactions with your repositories. To […] Read more »
Using Git Without Sudo: A Guide to Seamless Git Operations
August 8th, 2024 9:20 AM Mr. Q Categories: github
While Git is a powerful tool for version control, many users often find themselves needing to use sudo for certain Git operations, which can be cumbersome and potentially risky. This guide is designed to help you set up and use Git without requiring elevated privileges, ensuring that your development workflow […] Read more »
Essential GitHub Commands: A Comprehensive Guide for Effective Version Control
August 8th, 2024 9:11 AM Mr. Q Categories: github
GitHub is an indispensable tool for developers, enabling collaboration, version control, and seamless code management. Whether you’re working on a personal project or contributing to a large team, understanding the core Git commands is crucial for efficient workflow management. This guide covers 30 of the most commonly used GitHub commands, […] Read more »
Learning Game Development: Complete guide using HTML5, CSS & JavaScript
September 22nd, 2021 10:54 AM Mr. Q Categories: JavaScript, Learning
Game development steps start to finish; layout of everything needed to create JavaScript games. Using the three pillars of Object Oriented Programming, (Encapsulation, Inheritance, & Polymorphism) to keep our code clean and easy to maintain. Why use JavaScript for game programming: #1 answer is, it will run on any device […] Read more »
The high and mighty John Conway’s “Game of Life” using HTML, CSS & JS
September 12th, 2021 10:35 AM Mr. Q Categories: CSS, HTML, JavaScript
Hey guys, today we’re gonna make a cool game called John Conway’s Game of Life using HTML, CSS, and JavaScript. John Conway is a really smart math guy that we should look up to. The Game of Life is a game that nobody plays, it’s kinda weird. Each square on […] Read more »