Skip to content

Instantly share code, notes, and snippets.

View qoryhanisagal's full-sized avatar

Sequoyah Descoteaux qoryhanisagal

View GitHub Profile

Git for Pairs

🎯 Learning Goals

  • Understand the flow of Git + GitHub collaboration
  • Learn how two developers can work from the same repository
  • Practice resolving merge conflicts

HTML

1. What is HTML?

Think of HTML as the skeleton of a webpage.

HTML (HyperText Markup Language) structures the content on the web, defining elements like headings, paragraphs, and images.

2. What is an HTML element?

Git and GitHub Cheat Sheet

🧠 Overview

  • Git is a version control system for tracking code changes.
  • GitHub is a platform to host and collaborate on Git repositories.
  • Repositories contain your project's folders, files, and version history.
  • Git uses branches and commits to manage your work and history safely.

Git Sample Flow

🚀 A Recommended Workflow for Teams


🏗️ Setting Up the Repository

  1. Initialize local repo and file structure:

Git Merge Conflicts Guide

Learning Goals

  • Understand what a merge conflict is
  • Learn resolution steps using the text editor
  • Identify best practices to avoid merge conflicts

Git Collaborative Workflow Guide

Learning Goals

  • Use git and GitHub to collaborate on code with another developer
  • Submit and respond to a pull request
  • Understand the importance of code review

FSDI 103 Variables and Constants in JavaScript

What Are Variables and Constants?

Variables and constants in JavaScript are used to store and manage data within a program. A variable allows the value it holds to be changed, while a constant holds a value that cannot be reassigned.


Variable Declaration Keywords

FSDI 103 Variables Notes on var, let, and const in JavaScript

Introduction to Variables

In JavaScript, variables are like labeled storage boxes where you can store and manipulate data. You can use three main types of variables: var, let, and const. Each has specific use cases and behaviors.


Linking JavaScript to HTML

Preliminary Setup

xcode-select --install
brew install git
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash

Project Branch Setup


Team Member: ✅ Done

Step 1: Set up Iteration Branches (1-4)

Commands:

# Create Iteration 1 branch