Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nbbeeken/neals-resume
My Resume
https://github.com/nbbeeken/neals-resume
Last synced: about 2 months ago
JSON representation
My Resume
- Host: GitHub
- URL: https://github.com/nbbeeken/neals-resume
- Owner: nbbeeken
- Created: 2018-09-16T18:51:05.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2022-06-25T21:11:42.000Z (over 2 years ago)
- Last Synced: 2023-03-03T13:26:34.274Z (almost 2 years ago)
- Language: CSS
- Size: 1.51 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neal's Resume
### Building
To build run the following command:```sh
npm run build
```To watch and live edit run the following command:
```sh
npm run watch
```> Note: this only watches pug files
> changes to css or data files requires restartTo "watch" all files use this hack:
```bash
while true; do sleep 4; npm run build; done
``````fish
while true
sleep 4
npm run build
end
```### Structure
You can find the projects and experience content in `src/data/projects.js` and `src/data/experience.js`. The render in the order declared in the js array.
CSS modifications should only be made in `src/styles/neal.css`
Html structure is in `.pug` files in `src/sections` which are included into `src/index.pug`.