new-coder - http://newcoder.io/
New Coder tutorials: 5 life jackets to throw the new coder
- Data Visualization
- Web Scraping
- APIs
- Networking
- GUI
Directory layout:
├── <Project>/
│ ├── README.md
│ ├── requirements.txt
│ ├── lib/
│ │ ├── full_source/
│ │ ├── tutorial_source/
│ ├─── tests/
│ │ ├── full_tests/
│ │ ├── tutorial_tests/
Simple install requirements, run the build command within website
directory.
You will need a C compiler: GCC or clang. To test if you have either GCC or clang, type gcc
or clang
into your terminal. If you get an error that says “command not found” then follow the install instructions for your OS:
- Mac:
- You will need XCode. Once you have XCode on your machine, you will need to navigate to Preferences –> Downloads –> and select Command Line Tools to download & install.
- Fedora:
sudo yum install gcc python-devel
- Ubuntu:
sudo apt-get install build-essential python-dev
– you may need to runsudo apt-get update
first.
Once the compiler is set up:
pip install -r website/requirements.txt
mynt gen website build
(cd build && python -m SimpleHTTPServer)
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.
- Network/IRC bot tutorial language
- Sudoku/GUI tutorial language
- Add better tags for subjects that are covered in tutorial parts (e.g. Generators, Iterators, classes, etc).
- Learn anchoring for Mynt/Markdown
- Remove the opening of the dataviz files in the tutorial to not give away the answers!