https://github.com/rrwen/phd-prelim-research
Preliminary PhD research
https://github.com/rrwen/phd-prelim-research
aware brief collision context forecast geographic gis information model pdf phd prediction preliminary presentation research service slides systems traffic twitter
Last synced: 2 months ago
JSON representation
Preliminary PhD research
- Host: GitHub
- URL: https://github.com/rrwen/phd-prelim-research
- Owner: rrwen
- License: mit
- Created: 2018-12-16T01:14:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-18T05:02:52.000Z (over 6 years ago)
- Last Synced: 2025-02-08T21:11:19.701Z (4 months ago)
- Topics: aware, brief, collision, context, forecast, geographic, gis, information, model, pdf, phd, prediction, preliminary, presentation, research, service, slides, systems, traffic, twitter
- Language: HTML
- Size: 71.4 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phd-prelim-research
Richard Wen
[email protected]* [Slides](https://rrwen.github.io/phd-prelim-research)
* [PDF](https://github.com/rrwen/phd-prelim-research/blob/master/slides/wen2018_phd_prelim_research_slides.pdf)Preliminary PhD research.
[](https://travis-ci.org/rrwen/phd-prelim-research)
[](https://github.com/rrwen/phd-prelim-research/blob/master/LICENSE)
[](https://twitter.com/intent/tweet?text=Preliminary%20PhD%20research:%20https%3A%2F%2Fgithub.com%2Frrwen%2Fphd-prelim-research%20%23revealjs%20%23slides)## Install
1. Install [npm](https://www.npmjs.com/)
2. [Clone](https://git-scm.com/docs/git-clone) this repository
3. Install dependencies with `npm````
git clone https://github.com/rrwen/phd-prelim-research
cd phd-prelim-research
npm install
```See [Edits](#edits) and [Implementation](#implementation) for more details.
## Usage
1. Generate `docs/index.html` (see `script.html` in [package.json](https://github.com/rrwen/phd-prelim-research/blob/master/package.json))
2. Generate `slides/wen2018_phd_prelim_research_slides.pdf` (see `script.pdf` in [package.json](https://github.com/rrwen/phd-prelim-research/blob/master/package.json))```
npm run html
npm run pdf
```## Developer Notes
### Edits
The following can be edited before generating:
* `slides/wen2018_phd_prelim_research_slides.md`: [Markdown](https://daringfireball.net/projects/markdown/) file with slide contents
* `slides/template.html`: Custom [reveal-md](https://github.com/webpro/reveal-md) template to generate slides with
* `docs/edit/style.css`: [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS) file to adjust styling of slides
* `docs/edit/logo.png`: logo image to use### Implementation
The slides [phd-prelim-research](https://github.com/rrwen/phd-prelim-research) uses the following [npm](https://www.npmjs.com/) packages for its implementation:
npm | Purpose
--- | ---
[reveal-md](https://www.npmjs.com/package/reveal-md) | Converting `slides/wen2018_phd_prelim_research_slides.md` to `docs/index.html`
[decktape](https://www.npmjs.com/package/decktape) | Converting `slides/wen2018_phd_prelim_research_slides.md` to `slides/wen2018_phd_prelim_research_slides.pdf`
[windows-build-tools](https://www.npmjs.com/package/windows-build-tools) | Compiling dependencies for decktape on Windows Operating System (OS)```
reveal-md <-- Convert markdown slides to htmldecktape <-- Convert markdown slides to pdf
|
windows-build-tools <-- Compile decktape on Windows OS
```