Skip to content

peterfpeterson/musings

Repository files navigation

musings

Some of this is a webpage found here.

Using conda for package management

conda env create
source activate musings

Read the conda documenation for full details.

Jupyter notebooks

Once the dependencies are installed, just run

jupyter notebook

Alternatively, if your python is too old

ipython notebook

Testing webpages

The webpages are being generated using Jekyll and gh-pages. To get things running from scratch:

  1. install ruby and ruby developer packages (e.g. dnf install ruby ruby-devel)
  2. gem install bundle
  3. cd docs
  4. bundle update
  5. bundle exec jekyll serve --watch --drafts

Only the last step needs to be done if changes to the site are being made.

Various bits of the design were borrowed from jekyll-bootstrap.

The deploy technology is modified from this gist where the token is shared via github pages documentation on travis-ci.