Giter Club home page Giter Club logo

4474-project's Introduction

4474-Project

Git commands

git clone <git or https link> (download the repo)

Branching

See all the branches: git branch -a

Change to a branch: git checkout branchname

Create a local copy of remote branch: git checkout -t origin/branchname

Create a new branch locally: git checkout -b branchname

Deleting a local branch: git branch -d branchname

Deleting a branch on the remote: git push --delete origin branchname

Changes

Get all changes from remote: git fetch --all

Pull the changes from remote to local branch: git pull (can get more specific git pull origin main)

Add a file that has changes: git add \<file\>

Commit the file: git commit -m "\<message\>"

Push the changes to the remote: git push (can get more specific git push origin main)

First time pushing a local branch to remote: git push -u origin branchname

Starting python server

For python3: python -m http.server For python2: python -m SimpleHTTPServer

4474-project's People

Contributors

egoms avatar kirk-v avatar ksarson avatar nkolovos1 avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

kirk-v

4474-project's Issues

Parameter Passing

Need to pass the selected choices from Opponent Selection and Option choices to the game logic so it can configure the game properly.

Scoring

Need to keep track of user's sum to compare against the target sum. Additionally need to keep track of an overall match score.
Need to create some sort of levelling up to progress.

Turns

Need to implement a turn based system so the user cannot make consecutive before the CPU (need to figure that out) or the second user has made a move.

Post Game Screen

After a player reaches the target sum or the maximum number of moves is completed a post game screen needs to pop up.
This will show the outcome of the game, a return button and an option to progress to the next difficulty (or continue at the current one)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.