- Home
- (Powered by StrapDown.js)
# Rodney's Notes
This site is used to hold the information and ramblings for the implementation of the FabAcademy diploma. It is used as a resource for the participants in the FabAcademy Diploma hosted by Fablab Singapore Polytechnic.
This site is static, created using [strapdown.js](http://strapdownjs.com) which does not use any server side processing to render the markdown pages. Use this template ([strapdown_template.html](strapdown_template.html)) to write your markdown between the **xmp** tags using markdown. The Javascript will do the rest.
BTW This is [me](img/rodney_d.jpg) on a good day.
## Contents
The contents of this site is broken down into the following categories:
* [FabAcademy Documents](/fa2018/fa2018/fa2018.html)
* [Notes, Tips & Tricks](/fa2018/notes/notes.html)
* [Ramblings, not sorted yet](/fa2018/unsorted/unsorted.html)
* [References](/fa2018/references/references.html)
## Template
Use this template: [strapdown_template.html](/fa2018/strapdown/strapdown_template.html) to create your new pages. This site must be run from a http server as it has linkages to the root folder. You can do this with some python code:
```python
# python 2
python -m SimpleHTTPServer
# python 3
python3 -m http.server
# pages are hosted on localhost:8000
# if you want to host it on port 80, you will need to use sudo and specify the port
sudo python3 -m http.server 80
```
----
You can read how this site is created in the [Notes, Tips & Tricks](/fa2018/notes/notes.html) section.
You can also use the following links to 'quick link' to this section:
* [bit.ly/rodneyd_notes](http://bit.ly/rodneyd_notes) the notes page
* [bit.ly/rodneyd_iotclock](http://bit.ly/rodneyd_iotclock) the IOT clock page
Rodney Dorville
Fablab Singapore Polytechnic
(email: roddorville@gmail.com)