Skip to content

RoxyLG/CISP1010-Fall2025-Examples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CISP 1010 – In-Class Code Examples

Welcome to the official repository for in-class code examples for CISP 1010. This repository contains the code written and discussed during lectures. Use it as a reference to reinforce your understanding of object-oriented programming concepts in C++ and other material covered in class.

Purpose of This Repository

  • Provide access to code written live during class
  • Help you review syntax, problem-solving strategies, and idiomatic C++ usage
  • Offer a baseline for your own experimentation and practice

How to Use This Repository

🔱 Step 1: Fork the Repository

To make your own copy of this repository under your GitHub account:

  1. Click the Fork button at the top-right of this page.
  2. Choose your GitHub account as the destination.
  3. GitHub will create a copy of this repository under your username.

You now have your own version you can edit freely.


💻 Step 2: Clone Your Fork to Codespaces or Your Local Machine

To work with your fork:

Option A: Use GitHub Codespaces (Recommended)

  1. Navigate to your forked repository on GitHub.
  2. Click the Code button and choose "Codespaces > Create codespace on main".
  3. GitHub will launch an online development environment in your browser.

Option B: Clone Locally (Advanced)

git clone https://github.com/gymmyp1/CISP1010-Fall2025-Examples.git
cd REPO_NAME

🔄 Step 3: Sync Your Fork with the Original Repository

As I add more examples to the original repo, you’ll want to keep your fork updated.

One-Time Setup (Add a remote for my repo)

git remote add upstream https://github.com/gymmyp1/CISP1010-Fall2025-Examples.git

To Fetch and Merge Updates:

git fetch upstream
git merge upstream/main

If you’re using Codespaces, open a terminal and run the above commands there.


📜 License

This repository is licensed under the MIT License, which means:

  • You are free to use, copy, modify, and share the code.
  • You are not required to credit me (though it’s appreciated!).
  • This code is provided as-is, with no warranty.

See the LICENSE file for full details.


Happy coding!

About

In-Class examples for CISP1010 Programming I

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%