Skip to content

skingry/resume

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 

Repository files navigation

Summary

Want to know what I've done and what I'm good at? Well look no further, it's my resume in easily parsible JSON (sort of)!!!!

The current format of the raw data is base64. I chose to do this to protect my personal information from web crawlers (ie. my email address and telephone number). If you'd like a copy that isn't obfuscated, you can either look through the commit history and find a copy... or you can decode it yourself.

An example of how to do that would be:

if [ `uname` = "Darwin" ]; then
  cat resume.base64 | base64 -D > resume.json
else
  cat resume.base64 | base64 -d > resume.json
fi

If you just prefer to see a short form of this resume, please take a look at my LinkedIn profile.

Ok.. so I have it in JSON. Now how do I make it look "pretty"?

If you would like to see a single page rendering of the JSON data...

  1. Install the resume NPM package:

    Note: a prerequisite is that you have Node.js installed.

    npm install -g resume-cli jsonresume-theme-spartan
    
  2. Do a little bit of this:

    if [ -f resume.json ]; then
      resume export --theme spartan --format html Seth-Kingry && open Seth-Kingry.html
    else
      echo "Decode resume.base64 first. (cat resume.base64 | base64 -D > resume.json)"
    fi
    
  3. ????

    Et Voila! (Should open a browser where my resume is displayed.)
    
  4. Profit!

    screenshot


If you've gotten this far... give me a call or shoot me an email if you'd like to know more... or submit a PR if you really want to impress me :)

About

My Resume in JSON format

Resources

Stars

Watchers

Forks

Packages

No packages published