forked from ainsleyc/jsonresume-theme-onepage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
115 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,6 @@ node_modules | |
|
||
# User files | ||
index.html | ||
resume.json | ||
|
||
# Temp files | ||
*.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
{ | ||
"basics": { | ||
"name": "Richard Hendricks", | ||
"label": "Programmer", | ||
"picture": "", | ||
"email": "richard.hendricks@gmail.com", | ||
"phone": "(912) 555-4321", | ||
"website": "http://richardhendricks.com", | ||
"summary": "Richard hails from Tulsa. He has earned degrees from the University of Oklahoma and Stanford. (Go Sooners and Cardinals!) 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!", | ||
"location": { | ||
"city": "San Francisco", | ||
"countryCode": "US" | ||
}, | ||
"profiles": [ | ||
{ | ||
"url": "http://twitter.com/neutralthoughts" | ||
}, | ||
{ | ||
"url": "https://soundcloud.com/dandymusicnl" | ||
} | ||
] | ||
}, | ||
"work": [ | ||
{ | ||
"company": "Pied Piper", | ||
"position": "CEO/President", | ||
"website": "http://piedpiper.com", | ||
"startDate": "2013", | ||
"endDate": "2014", | ||
"summary": "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.", | ||
"details": [ | ||
{ "text": "Build an algorithm for artist to detect if their music was violating copy right infringement laws", "comment": "Java" }, | ||
{ "text": "Optimized an algorithm that holds the current world record for Weisman Scores", "comment": "c++" }, | ||
{ "text": "Successfully won Techcrunch Disrupt" } | ||
] | ||
} | ||
], | ||
"volunteer": [ | ||
{ | ||
"organization": "CoderDojo", | ||
"position": "Teacher", | ||
"website": "http://coderdojo.com/", | ||
"startDate": "2012", | ||
"endDate": "2013", | ||
"summary": "Global movement of free coding clubs for young people.", | ||
"highlights": [ | ||
"Awarded 'Teacher of the Month'" | ||
] | ||
} | ||
], | ||
"education": [ | ||
{ | ||
"institution": "University of Oklahoma", | ||
"area": "Information Technology", | ||
"studyType": "Bachelor", | ||
"startDate": "2011", | ||
"endDate": "2014", | ||
"gpa": "4.0", | ||
"courses": [ | ||
"DB1101 - Basic SQL", | ||
"CS2011 - Java Introduction" | ||
] | ||
} | ||
], | ||
"awards": [ | ||
{ | ||
"title": "Digital Compression Pioneer Award", | ||
"date": "2014", | ||
"awarder": "Techcrunch", | ||
"summary": "There is no spoon." | ||
} | ||
], | ||
"publications": [ | ||
{ | ||
"name": "Video compression for 3d media", | ||
"publisher": "Hooli", | ||
"releaseDate": "2014", | ||
"website": "http://en.wikipedia.org/wiki/Silicon_Valley_(TV_series)", | ||
"summary": "Innovative middle-out compression algorithm that changes the way we store data." | ||
} | ||
], | ||
"skills": [ | ||
{ | ||
"name": "Web Development", | ||
"details": [ | ||
{ "text": "HTML", "comment": "expert" }, | ||
{ "text": "CSS", "comment": "expert" }, | ||
{ "text": "Javascript", "comment": "expert" } | ||
] | ||
}, | ||
{ | ||
"name": "Compression", | ||
"details": [ | ||
{ "text": "Mpeg", "comment": "competent" }, | ||
{ "text": "MP4", "comment": "competent" }, | ||
{ "text": "GIF", "comment": "novice" } | ||
] | ||
} | ||
], | ||
"languages": [ | ||
{ | ||
"language": "English", | ||
"fluency": "Native speaker" | ||
} | ||
], | ||
"interests": [ | ||
{ | ||
"name": "Wildlife", | ||
"keywords": [ | ||
"Ferrets", | ||
"Unicorns" | ||
] | ||
} | ||
] | ||
} |