Gatsby-theme-JSONResume

Gatsby Theme with JSONResume to generate your Resume and add it into your Application

How does it work? 🤔

Provide a valid JSON structure with your data, and when starting Gatsby and it will generate your resume in HTML and PDF format.

Theming 🌈

You can customize how your resume will look like by changing the theme property. You can use of the themes available for JSON Resume.

For more information please check the Usage Documentation.

Resume Data 📝

1{
2  "basics": {
3    "name": "test",
4    "label": "Programmer",
5    "picture": "",
6    "email": "test4@test.com",
7    "phone": "(912) 555-4321",
8    "website": "http://richardhendricks.com",
9    "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!",
10    "location": {
11      "address": "2712 Broadway St",
12      "postalCode": "CA 94115",
13      "city": "San Francisco",
14      "countryCode": "US",
15      "region": "California"
16    },
17    "profiles": [
18      {
19        "network": "Twitter",
20        "username": "neutralthoughts",
21        "url": ""
22      },
23      {
24        "network": "SoundCloud",
25        "username": "dandymusicnl",
26        "url": "https://soundcloud.com/dandymusicnl"
27      }
28    ]
29  },
30  "work": [
31    {
32      "company": "Pied Piper",
33      "position": "CEO/President",
34      "website": "http://piedpiper.com",
35      "startDate": "2013-12-01",
36      "endDate": "2014-12-01",
37      "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.",
38      "highlights": [
39        "Build an algorithm for artist to detect if their music was violating copy right infringement laws",
40        "Successfully won Techcrunch Disrupt",
41        "Optimized an algorithm that holds the current world record for Weisman Scores"
42      ]
43    }
44  ],
45  "volunteer": [
46    {
47      "organization": "CoderDojo",
48      "position": "Teacher",
49      "website": "http://coderdojo.com/",
50      "startDate": "2012-01-01",
51      "endDate": "2013-01-01",
52      "summary": "Global movement of free coding clubs for young people.",
53      "highlights": [
54        "Awarded 'Teacher of the Month'"
55      ]
56    }
57  ],
58  "education": [
59    {
60      "institution": "University of Oklahoma",
61      "area": "Information Technology",
62      "studyType": "Bachelor",
63      "startDate": "2011-06-01",
64      "endDate": "2014-01-01",
65      "gpa": "4.0",
66      "courses": [
67        "DB1101 - Basic SQL",
68        "CS2011 - Java Introduction"
69      ]
70    }
71  ],
72  "awards": [
73    {
74      "title": "Digital Compression Pioneer Award",
75      "date": "2014-11-01",
76      "awarder": "Techcrunch",
77      "summary": "There is no spoon."
78    }
79  ],
80  "publications": [
81    {
82      "name": "Video compression for 3d media",
83      "publisher": "Hooli",
84      "releaseDate": "2014-10-01",
85      "website": "http://en.wikipedia.org/wiki/Silicon_Valley_(TV_series)",
86      "summary": "Innovative middle-out compression algorithm that changes the way we store data."
87    }
88  ],
89  "skills": [
90    {
91      "name": "Web Development",
92      "level": "Master",
93      "keywords": [
94        "HTML",
95        "CSS",
96        "Javascript"
97      ]
98    },
99    {
100      "name": "Compression",
101      "level": "Master",
102      "keywords": [
103        "Mpeg",
104        "MP4",
105        "GIF"
106      ]
107    }
108  ],
109  "languages": [
110    {
111      "language": "English",
112      "fluency": "Native speaker"
113    }
114  ],
115  "interests": [
116    {
117      "name": "Wildlife",
118      "keywords": [
119        "Ferrets",
120        "Unicorns"
121      ]
122    }
123  ],
124  "references": [
125    {
126      "name": "Erlich Bachman",
127      "reference": "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."
128    }
129  ]
130}