My First Blog Post Using an IPython Notebook
This is it — my first post written entirely as an IPython notebook and published through Nikola. The workflow is:
- Write a notebook with text and code cells
- Nikola converts it to HTML
- Deploy to GitHub Pages
To get this working, I followed the guides from Damian Avila and Shankar.
Here’s what the notebook looks like — just some basic Python to prove it works:
import sys
print('Python: {}'.format(sys.version))
print('This is really exciting')
print('hello, notebook blog :)')
It’s not much, but seeing code render cleanly on a blog I control feels great. The barrier between “I wrote some code” and “I shared what I learned” just got a lot lower.