GitXplorerGitXplorer
d

newcoder

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
210cc5fe8e6f165b93095ff82f2106e3fc536a1b

renamed directory

ddornheimer committed 7 years ago
Unverified
c4812ec164154ca8fe4c31d13bba7bc08df84796

fixed virtualenv issue

ddornheimer committed 7 years ago
Unverified
9f867a8e1a7c965f1a8aac6e3189f50bf0897bc3

Merge branch 'dataviz'

ddornheimer committed 7 years ago
Unverified
94eefa283df6d276ac50c18e29cbf78535718796

completed dataviz

ddornheimer committed 7 years ago
Unverified
fdf012e6b4979461ec03d88dd2ffcc346aeafa08

completed graph function

ddornheimer committed 7 years ago
Unverified
3cbdab01ba66a54934243313cbc01d0fd6ed3a43

completed dataviz

ddornheimer committed 7 years ago

README

The README file for this repository.

New Coder tutorials: 5 life jackets to throw the new coder

  • Data Visualization
  • Web Scraping
  • APIs
  • Networking
  • GUI

General directory layout:

├── <Project>/
│   ├── README.md
│   ├── requirements.txt
│   ├── lib/
│   ├── tests/  # only for more advanced tutorials

CONTRIBUTING

PLEASE – When editing tutorial or full source code, please edit the documentation to go along with it within the website folder (and vice-versa).

When writing documentation, please use smart quotes. :)

Documentation Build Instructions

Documentation is essentially the website itself. Simply install requirements, run the build command within website directory:

$ mkvirtualenv newcoder-website
(newcoder-website) $ cd website
(newcoder-website) $ pip install -r requirements.txt

To build the site:

(newcoder-website) $ mynt gen -f _site

To serve the site locally:

(newcoder-website) $ mynt serve _site

And navigate to localhost:5000.

I’ve included a simple script that combines the two above commands:

(newcoder-website) $ ./_local.sh

If you get a permission denied message, you may need to change the file mode in order to run the _local.sh with the ./ preceeding:

(newcoder-website) $ chmod +x _local.sh
(newcoder-website) $ ./_local.sh