Skip to content

Add missing folder to project file tree diagram in Setup Your Machine post. #133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 24 additions & 22 deletions website/_posts/Begin/2013-09-29-Setup-your-machine.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,35 +382,37 @@ When you clone a repo with the above command, git creates a directory. Here, gi
```bash
.
└── Projects/
├── AUTHORS.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── apis/ # sample code for tutorial #2
├── dataviz/ # sample code for tutorial #1
├── gui/ # sample code for tutorial #5
├── network/ # sample code for tutorial #4
├── scrape/ # sample code for tutorial #3
└── website/ # files that make newcoder.io
└── new-coder/
├── AUTHORS.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── apis/ # sample code for tutorial #2
├── dataviz/ # sample code for tutorial #1
├── gui/ # sample code for tutorial #5
├── network/ # sample code for tutorial #4
├── scrape/ # sample code for tutorial #3
└── website/ # files that make newcoder.io
```

When you work through each project, make a new directory within `Projects` to keep your code away from the sample code. For example:

```bash
.
└── Projects/
# <-- snip -->
├── apis/ # sample code for tutorial #2
├── apis_workspace/ # your code for tutorial #2
├── dataviz/ # sample code for tutorial #1
├── dataviz_workspace/ # your code for tutorial #1
├── gui/ # sample code for tutorial #5
├── gui_workspace/ # your code for tutorial #5
├── network/ # sample code for tutorial #4
├── network_workspace/ # your code for tutorial #4
├── scrape/ # sample code for tutorial #3
├── scrape_workspace/ # your code for tutorial #3
└── website/ # files that make newcoder.io
└── new-coder/
# <-- snip -->
├── apis/ # sample code for tutorial #2
├── apis_workspace/ # your code for tutorial #2
├── dataviz/ # sample code for tutorial #1
├── dataviz_workspace/ # your code for tutorial #1
├── gui/ # sample code for tutorial #5
├── gui_workspace/ # your code for tutorial #5
├── network/ # sample code for tutorial #4
├── network_workspace/ # your code for tutorial #4
├── scrape/ # sample code for tutorial #3
├── scrape_workspace/ # your code for tutorial #3
└── website/ # files that make newcoder.io
```


Expand Down