Skip to content

Commit

Permalink
change semester
Browse files Browse the repository at this point in the history
  • Loading branch information
efrymire committed Jan 29, 2024
1 parent 5a71ca3 commit 9483cc9
Show file tree
Hide file tree
Showing 15 changed files with 73 additions and 73 deletions.
20 changes: 10 additions & 10 deletions 1_1_getting_started/2_GIT_SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

You can read more about `forking`, `syncing`, and our overall github flow [here](https://help.github.com/en/github/getting-started-with-github/fork-a-repo).

### 1. On Gitub, go to our [Class Repository](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024.git) and [`fork`](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) this repository into your own account.
### 1. On Gitub, go to our [Class Repository](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024.git) and [`fork`](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) this repository into your own account.

To do this, click on the "fork" button on the top right of this github account.

Expand All @@ -29,10 +29,10 @@ To do this, navigate to the folder where you want to save your files (I like to
$ cd PATH_TO_YOUR/FOLDER

# clone your fork to your local computer
$ git clone https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024
$ git clone https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024

# `cd` (change directory) into this repository
$ cd Interactive-Data-Vis-Fall2024
$ cd Interactive-Data-Vis-Spring2024
```

### 4. Set up your local repository so that it links back to the course repository.
Expand All @@ -43,26 +43,26 @@ We do this so that you can keep your local branch synced up with the main course
#See current remote branches:

$ git remote -v
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024 (fetch)
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024 (push)
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024 (fetch)
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024 (push)

# notice currently this is only tracking your version of the repository.
```

Add an `upstream` remote branch so you can keep yours synced with the main class repository:

```sh
$ git remote add upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024.git
$ git remote add upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024.git
```

Check remote branches again to ensure that the update worked. You should see 2 sets of branches, `origin` which links back to your fork, and `upstream` which references back to the course repository:

```sh
$ git remote -v
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024 (fetch)
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024 (push)
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024.git (fetch)
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024.git (push)
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024 (fetch)
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024 (push)
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024.git (fetch)
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024.git (push)

# now notice see that we are tracking both the original and your version of the repository
```
Expand Down
6 changes: 3 additions & 3 deletions 1_1_getting_started/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ The goals for this tutorial are:

## Deploy + Submit

Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. **NOTE**: It can take up to 10 minutes for pushed up code to appear in a deployed site. Post the following as a comment to the appropriate post on the [commons site](https://data73200Fall2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. **NOTE**: It can take up to 10 minutes for pushed up code to appear in a deployed site. Post the following as a comment to the appropriate post on the [commons site](https://data73200Spring2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)


6 changes: 3 additions & 3 deletions 1_2_basic_html/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ The goals for this tutorial are:

## Deploy + Submit

Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. **NOTE**: It can take up to 10 minutes for pushed up code to appear in a deployed site. Post the following as a comment to the appropriate post on the [commons site](https://data73200Fall2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. **NOTE**: It can take up to 10 minutes for pushed up code to appear in a deployed site. Post the following as a comment to the appropriate post on the [commons site](https://data73200Spring2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
6 changes: 3 additions & 3 deletions 1_3_intro_to_js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ The goals for this tutorial are:

## Deploy + Submit

Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. **NOTE**: It can take up to 10 minutes for pushed up code to appear in a deployed site. Post the following as a comment to the appropriate post on the [commons site](https://data73200Fall2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. **NOTE**: It can take up to 10 minutes for pushed up code to appear in a deployed site. Post the following as a comment to the appropriate post on the [commons site](https://data73200Spring2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)


8 changes: 4 additions & 4 deletions 2_1_quantities_and_amounts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The goals for this tutorial are:
You should already have a local copy of your repository from the [tutorial 1](../1_1_getting_started/README.md). Start by getting a [basic server](../1_1_getting_started/3_BASIC_SERVER.md) up and running. This should include all the changes you've made thus far.

Once your local serve is up and reacting to code changes, you're ready to begin working on your tutorial assignment.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/demo/) for additional context.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/demo/) for additional context.

## Assignment:

Expand All @@ -28,6 +28,6 @@ As you're building, don't forget you can always reference the [class code branch

## Deploy + Submit

Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. **NOTE**: It can take up to 10 minutes for pushed up code to appear in a deployed site. Post the following as a comment to the appropriate post on the [commons site](https://data73200Fall2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. **NOTE**: It can take up to 10 minutes for pushed up code to appear in a deployed site. Post the following as a comment to the appropriate post on the [commons site](https://data73200Spring2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
8 changes: 4 additions & 4 deletions 2_2_distributions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The goals for this tutorial are:
You should already have a local copy of your repository from the [tutorial 1](../1_1_getting_started/README.md). Start by getting a [basic server](../1_1_getting_started/3_BASIC_SERVER.md) up and running. This should include all the changes you've made thus far.

Once your local serve is up and reacting to code changes, you're ready to begin working on your tutorial assignment.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/demo/) for additional context.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/demo/) for additional context.

## Assignment:

Expand All @@ -28,8 +28,8 @@ As you're building, don't forget you can always reference the [class code branch

## Deploy + Submit

Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. Post the following as a comment to the appropriate post on the [commons site](https://data73200Fall2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. Post the following as a comment to the appropriate post on the [commons site](https://data73200Spring2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)


8 changes: 4 additions & 4 deletions 2_3_time_series/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The goals for this tutorial are:
You should already have a local copy of your repository from the [tutorial 1](../1_1_getting_started/README.md). Start by getting a [basic server](../1_1_getting_started/3_BASIC_SERVER.md) up and running. This should include all the changes you've made thus far.

Once your local serve is up and reacting to code changes, you're ready to begin working on your tutorial assignment.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/demo/) for additional context.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/demo/) for additional context.

## Assignment:

Expand All @@ -28,9 +28,9 @@ As you're building, don't forget you can always reference the [class code branch

## Deploy + Submit

Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. Post the following as a comment to the appropriate post on the [commons site](https://data73200Fall2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. Post the following as a comment to the appropriate post on the [commons site](https://data73200Spring2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)



8 changes: 4 additions & 4 deletions 2_4_geographic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The goals for this tutorial are:
You should already have a local copy of your repository from the [tutorial 1](../1_1_getting_started/README.md). Start by getting a [basic server](../1_1_getting_started/3_BASIC_SERVER.md) up and running. This should include all the changes you've made thus far.

Once your local serve is up and reacting to code changes, you're ready to begin working on your tutorial assignment.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/demo/) for additional context.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/demo/) for additional context.

## Assignment:

Expand All @@ -28,7 +28,7 @@ As you're building, don't forget you can always reference the [class code branch

## Deploy + Submit

Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. Post the following as a comment to the appropriate post on the [commons site](https://data73200Fall2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. Post the following as a comment to the appropriate post on the [commons site](https://data73200Spring2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)

8 changes: 4 additions & 4 deletions 3_1_quantities_and_amounts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The goals for this tutorial are:
You should already have a local copy of your repository from the [tutorial 1](../1_1_getting_started/README.md). Start by getting a [basic server](../1_1_getting_started/3_BASIC_SERVER.md) up and running. This should include all the changes you've made thus far.

Once your local serve is up and reacting to code changes, you're ready to begin working on your tutorial assignment.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2024/tree/demo/) for additional context.
As you're building, don't forget you can always reference the [class code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/class/) or the [demo code branch](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024/tree/demo/) for additional context.

## Assignment:

Expand All @@ -24,7 +24,7 @@ As you're building, don't forget you can always reference the [class code branch

## Deploy + Submit

Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. Post the following as a comment to the appropriate post on the [commons site](https://data73200Fall2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Fall2024/[TUTORIAL_PATH]/`)
Once you've completed the assignment, use the Github workflow to deploy your work to **your fork** of the course repository. Post the following as a comment to the appropriate post on the [commons site](https://data73200Spring2024.commons.gc.cuny.edu/):
1. a link to your committed code repository (your link will look something like: `https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)
2. a link to your deployed example (your link will look something like: `https://[YOUR_USERNAME].github.io/Interactive-Data-Vis-Spring2024/[TUTORIAL_PATH]/`)

Loading

0 comments on commit 9483cc9

Please sign in to comment.