update build.sh for yaml
parent
98e1f7c8cb
commit
56d847ea1e
|
|
@ -44,7 +44,7 @@ install_cli() {
|
|||
install_themes() {
|
||||
for theme in ${THEMES//,/ }; do
|
||||
if [ -d node_modules/jsonresume-theme-$theme ]; then
|
||||
return
|
||||
return
|
||||
fi
|
||||
log installing theme $theme
|
||||
if ! npm install jsonresume-theme-$theme; then
|
||||
|
|
@ -57,6 +57,14 @@ install_themes() {
|
|||
}
|
||||
|
||||
build() {
|
||||
if ! [ -f ./resume.yaml ]; then
|
||||
resume init
|
||||
mv ./resume.json ./resume.yaml
|
||||
return $?
|
||||
fi
|
||||
|
||||
cat ./resume.yaml | jq --yaml-input > resume.json
|
||||
|
||||
for theme in ${THEMES//,/ }; do
|
||||
THEME=$theme build_theme
|
||||
done
|
||||
|
|
@ -64,18 +72,14 @@ build() {
|
|||
|
||||
build_theme() {
|
||||
log building theme $THEME
|
||||
if ! [ -f ./resume.json ]; then
|
||||
resume init
|
||||
return $?
|
||||
fi
|
||||
|
||||
(
|
||||
resume validate
|
||||
resume validate
|
||||
|
||||
resume export resume.$THEME.html --theme $THEME || true
|
||||
if [ -f resume.$THEME.html ]; then
|
||||
wkhtmltopdf --page-size $PAGE_SIZE ./resume.$THEME.html ./resume.$THEME.pdf
|
||||
fi
|
||||
resume export resume.$THEME.html --theme $THEME || true
|
||||
if [ -f resume.$THEME.html ]; then
|
||||
wkhtmltopdf --page-size $PAGE_SIZE ./resume.$THEME.html ./resume.$THEME.pdf
|
||||
fi
|
||||
) || true
|
||||
}
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"jsonresume-theme-flat": "^0.3.7"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,97 +0,0 @@
|
|||
Bree LaPointe
|
||||
Programmer
|
||||
|
||||
Contact
|
||||
Email
|
||||
contact@blapointe.com
|
||||
Phone
|
||||
(912) 555-4321
|
||||
|
||||
About
|
||||
Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and
|
||||
Cardinal!) Before starting Pied Piper, he worked for Hooli as a part time software developer. While his work
|
||||
focuses on applied information theory, mostly optimizing lossless compression schema of both the length-limited
|
||||
and adaptive variants, his non-work interests range widely, everything from quantum computing to chaos theory.
|
||||
He could tell you about it, but THAT would NOT be a “length-limited” conversation!
|
||||
|
||||
Profiles
|
||||
Twitter
|
||||
neutralthoughts
|
||||
SoundCloud
|
||||
dandymusicnl
|
||||
|
||||
Work
|
||||
2013-12-01 — 2014-12-01
|
||||
CEO/President
|
||||
Pied Piper is a multi-platform technology based on a proprietary universal compression algorithm that has
|
||||
consistently fielded high Weisman Scores™ that are not merely competitive, but approach the theoretical limit of
|
||||
lossless compression.
|
||||
|
||||
Highlights
|
||||
Build an algorithm for artist to detect if their music was violating copy right infringement laws
|
||||
Successfully won Techcrunch Disrupt
|
||||
Optimized an algorithm that holds the current world record for Weisman Scores
|
||||
|
||||
Volunteer
|
||||
CoderDojo
|
||||
2012-01-01 — 2013-01-01
|
||||
Teacher
|
||||
Global movement of free coding clubs for young people.
|
||||
|
||||
Highlights
|
||||
Awarded 'Teacher of the Month'
|
||||
|
||||
Education
|
||||
|
||||
Education
|
||||
University of Oklahoma
|
||||
2011-06-01 — 2014-01-01
|
||||
|
||||
Information Technology
|
||||
Bachelor
|
||||
|
||||
Courses
|
||||
DB1101 - Basic SQL
|
||||
CS2011 - Java Introduction
|
||||
|
||||
Awards
|
||||
Digital Compression Pioneer Award
|
||||
by Techcrunch
|
||||
|
||||
Awarded 2014-11-01
|
||||
|
||||
There is no spoon.
|
||||
|
||||
Publications
|
||||
Video compression for 3d media
|
||||
2014-10-01
|
||||
Published by Hooli
|
||||
Innovative middle-out compression algorithm that changes the way we store data.
|
||||
|
||||
Skills
|
||||
Web Development
|
||||
HTML
|
||||
CSS
|
||||
Javascript
|
||||
|
||||
Compression
|
||||
Mpeg
|
||||
MP4
|
||||
GIF
|
||||
|
||||
Languages
|
||||
English
|
||||
Native speaker
|
||||
|
||||
Interests
|
||||
Wildlife
|
||||
Ferrets
|
||||
Unicorns
|
||||
|
||||
References
|
||||
It is my pleasure to recommend Richard, his performance working as a consultant for Main St. Company
|
||||
proved that he will be a valuable addition to any company.
|
||||
|
||||
— Erlich Bachman
|
||||
|
||||
|
||||
Loading…
Reference in New Issue