jsonresume-theme-engineering-leader 1.0.6 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/.github/dependabot.yml +0 -11
- package/.github/workflows/publish.yml +0 -39
- package/.vscode/launch.json +0 -19
- package/.vscode/settings.json +0 -3
- package/examples/example-resume.html +0 -294
- package/examples/example-resume.json +0 -178
- package/examples/example-resume.pdf +0 -0
- package/examples/example-resume.png +0 -0
package/package.json
CHANGED
package/.github/dependabot.yml
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
-
# package ecosystems to update and where the package manifests are located.
|
|
3
|
-
# Please see the documentation for all configuration options:
|
|
4
|
-
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
5
|
-
|
|
6
|
-
version: 2
|
|
7
|
-
updates:
|
|
8
|
-
- package-ecosystem: "npm"
|
|
9
|
-
directory: "/" # Location of package manifests
|
|
10
|
-
schedule:
|
|
11
|
-
interval: "weekly"
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
name: Publish to npm
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
|
-
tags:
|
|
8
|
-
- 'v*' # only publish on version tags like v1.0.0
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
publish:
|
|
12
|
-
runs-on: ubuntu-latest
|
|
13
|
-
|
|
14
|
-
steps:
|
|
15
|
-
- name: Checkout code
|
|
16
|
-
uses: actions/checkout@v4
|
|
17
|
-
|
|
18
|
-
- name: Use Node.js
|
|
19
|
-
uses: actions/setup-node@v4
|
|
20
|
-
with:
|
|
21
|
-
node-version: 18
|
|
22
|
-
registry-url: 'https://registry.npmjs.org/'
|
|
23
|
-
|
|
24
|
-
- name: Install dependencies
|
|
25
|
-
run: npm ci
|
|
26
|
-
|
|
27
|
-
- name: Get build number
|
|
28
|
-
run: echo "BUILD_NUMBER=${{ github.run_number }}" >> $GITHUB_ENV
|
|
29
|
-
|
|
30
|
-
- name: Update package version
|
|
31
|
-
run: |
|
|
32
|
-
node -e "let pkg=require('./package.json'); \
|
|
33
|
-
pkg.version += '.${{ env.BUILD_NUMBER }}'; \
|
|
34
|
-
require('fs').writeFileSync('package.json', JSON.stringify(pkg, null, 2));"
|
|
35
|
-
|
|
36
|
-
- name: Publish to npm
|
|
37
|
-
run: npm publish
|
|
38
|
-
env:
|
|
39
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/.vscode/launch.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// Use IntelliSense to learn about possible attributes.
|
|
3
|
-
// Hover to view descriptions of existing attributes.
|
|
4
|
-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
-
"version": "0.2.0",
|
|
6
|
-
"configurations": [
|
|
7
|
-
{
|
|
8
|
-
"type": "node",
|
|
9
|
-
"request": "launch",
|
|
10
|
-
"name": "Export Resume",
|
|
11
|
-
"skipFiles": [
|
|
12
|
-
"<node_internals>/**"
|
|
13
|
-
],
|
|
14
|
-
"runtimeExecutable": "npm",
|
|
15
|
-
"runtimeArgs": ["run", "export-html"],
|
|
16
|
-
"console": "integratedTerminal"
|
|
17
|
-
}
|
|
18
|
-
]
|
|
19
|
-
}
|
package/.vscode/settings.json
DELETED
|
@@ -1,294 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html>
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
|
|
6
|
-
<meta charset="utf-8">
|
|
7
|
-
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
|
|
8
|
-
|
|
9
|
-
<title>Richard Hendriks</title>
|
|
10
|
-
|
|
11
|
-
<style>body {
|
|
12
|
-
font-family: Arial, Helvetica, sans-serif;
|
|
13
|
-
font-size: 11px;
|
|
14
|
-
margin: 24px 48px;
|
|
15
|
-
line-height: 1.5;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
h1 {
|
|
19
|
-
font-size: 26px;
|
|
20
|
-
text-align: center;
|
|
21
|
-
margin: 0;
|
|
22
|
-
line-height: 1.5;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
h2 {
|
|
26
|
-
border-width: 1px;
|
|
27
|
-
border-style: none none solid none;
|
|
28
|
-
margin: 10px 0 2.5px 0;
|
|
29
|
-
line-height: 2em;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
h3 {
|
|
33
|
-
display: inline;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
section {
|
|
37
|
-
margin: 3px 0;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
ul {
|
|
41
|
-
margin: 0;
|
|
42
|
-
padding-left: 20px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
a {
|
|
46
|
-
text-decoration: none;
|
|
47
|
-
color: black;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.item {
|
|
51
|
-
margin-top: 8px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.item>.item-header {
|
|
55
|
-
float: left;
|
|
56
|
-
display: block;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.item>.item-header>.item-header-title {
|
|
60
|
-
font-weight: bold;
|
|
61
|
-
white-space: nowrap;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.item>.item-header>.item-header-subtitle {
|
|
65
|
-
font-weight: bold;
|
|
66
|
-
white-space: nowrap;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.item>.item-header>.item-header-title>.location {
|
|
70
|
-
font-weight: normal;
|
|
71
|
-
white-space: nowrap;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.item>.item-details {
|
|
75
|
-
float: right;
|
|
76
|
-
text-align: right;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.item>.item-details>.item-details-title {
|
|
80
|
-
font-weight: bold;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.item>.item-details>.date {
|
|
84
|
-
font-weight: bold;
|
|
85
|
-
white-space: nowrap;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.item>.item-header>.item-header-subtitle>.degree {
|
|
89
|
-
font-weight: normal;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.clearfix {
|
|
93
|
-
clear: both;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.centered {
|
|
97
|
-
text-align: center;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
/* Section specific */
|
|
101
|
-
/* basics */
|
|
102
|
-
.vertical-separator {
|
|
103
|
-
text-align: center;
|
|
104
|
-
padding: 0 10px;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
/*
|
|
108
|
-
.vertical-separator:not(:first-child) {
|
|
109
|
-
border-left: 1px solid #000;
|
|
110
|
-
text-align: center;
|
|
111
|
-
}
|
|
112
|
-
*/
|
|
113
|
-
|
|
114
|
-
/* Set some print settings. */
|
|
115
|
-
@media print {
|
|
116
|
-
@page {
|
|
117
|
-
size: portrait;
|
|
118
|
-
margin: 10mm 25mm;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.resume {
|
|
122
|
-
max-width: 100%;
|
|
123
|
-
border: 0px;
|
|
124
|
-
background: #fff;
|
|
125
|
-
box-shadow: none;
|
|
126
|
-
-webkit-box-shadow: none;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
body,
|
|
130
|
-
html,
|
|
131
|
-
.resume {
|
|
132
|
-
margin: 0px;
|
|
133
|
-
padding: 0px;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.controls {
|
|
137
|
-
display: none;
|
|
138
|
-
}
|
|
139
|
-
}</style>
|
|
140
|
-
|
|
141
|
-
</head>
|
|
142
|
-
|
|
143
|
-
<body>
|
|
144
|
-
|
|
145
|
-
<div id="resume">
|
|
146
|
-
<section id="basics">
|
|
147
|
-
|
|
148
|
-
<h1>Richard Hendriks</h1>
|
|
149
|
-
|
|
150
|
-
<div class="contact centered">
|
|
151
|
-
Palo Alto, CA
|
|
152
|
-
US
|
|
153
|
-
</div>
|
|
154
|
-
|
|
155
|
-
<div class="contact centered">
|
|
156
|
-
<span>(912) 555-4321</span>
|
|
157
|
-
<span>|</span>
|
|
158
|
-
<span>richard.hendriks@piedpiper.com</span> </div>
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
</section>
|
|
163
|
-
|
|
164
|
-
<section id="work">
|
|
165
|
-
<h2>Experience</h2>
|
|
166
|
-
|
|
167
|
-
<div class="item">
|
|
168
|
-
<div class="item-header">
|
|
169
|
-
<h3 class="item-header-title">
|
|
170
|
-
Pied Piper,
|
|
171
|
-
|
|
172
|
-
<span class="location">
|
|
173
|
-
Palo Alto, CA
|
|
174
|
-
</span> </h3>
|
|
175
|
-
<div class="item-header-subtitle">
|
|
176
|
-
CEO/President
|
|
177
|
-
</div>
|
|
178
|
-
</div>
|
|
179
|
-
<div class="item-details">
|
|
180
|
-
<div class="date">
|
|
181
|
-
04/2014 - Current
|
|
182
|
-
</div>
|
|
183
|
-
</div>
|
|
184
|
-
<div class="clearfix"></div>
|
|
185
|
-
|
|
186
|
-
<p>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.</p>
|
|
187
|
-
|
|
188
|
-
<ul class="highlights">
|
|
189
|
-
<li>Build an algorithm for artist to detect if their music was violating copy right infringement laws</li>
|
|
190
|
-
<li>Successfully won Techcrunch Disrupt</li>
|
|
191
|
-
<li>Optimized an algorithm that holds the current world record for Weisman Scores</li>
|
|
192
|
-
<ul>
|
|
193
|
-
<li>Definitely, did not hack the entire internet</li>
|
|
194
|
-
<li>Successfully demod on Techcrunch stage</li>
|
|
195
|
-
</ul>
|
|
196
|
-
</ul>
|
|
197
|
-
</div>
|
|
198
|
-
|
|
199
|
-
<div class="item">
|
|
200
|
-
<div class="item-header">
|
|
201
|
-
<h3 class="item-header-title">
|
|
202
|
-
Hooli,
|
|
203
|
-
|
|
204
|
-
<span class="location">
|
|
205
|
-
Palo Alto, CA
|
|
206
|
-
</span> </h3>
|
|
207
|
-
<div class="item-header-subtitle">
|
|
208
|
-
Senior Software Engineer
|
|
209
|
-
</div>
|
|
210
|
-
</div>
|
|
211
|
-
<div class="item-details">
|
|
212
|
-
<div class="date">
|
|
213
|
-
01/2014 - 04/2014
|
|
214
|
-
</div>
|
|
215
|
-
</div>
|
|
216
|
-
<div class="clearfix"></div>
|
|
217
|
-
|
|
218
|
-
<p></p>
|
|
219
|
-
|
|
220
|
-
<ul class="highlights">
|
|
221
|
-
<li>Worked on optimizing the backend algorithms for Hooli</li>
|
|
222
|
-
</ul>
|
|
223
|
-
</div>
|
|
224
|
-
|
|
225
|
-
<div class="item">
|
|
226
|
-
<div class="item-header">
|
|
227
|
-
<h3 class="item-header-title">
|
|
228
|
-
Hooli,
|
|
229
|
-
|
|
230
|
-
<span class="location">
|
|
231
|
-
Palo Alto, CA
|
|
232
|
-
</span> </h3>
|
|
233
|
-
<div class="item-header-subtitle">
|
|
234
|
-
Software Engineer
|
|
235
|
-
</div>
|
|
236
|
-
</div>
|
|
237
|
-
<div class="item-details">
|
|
238
|
-
<div class="date">
|
|
239
|
-
01/2013 - 01/2014
|
|
240
|
-
</div>
|
|
241
|
-
</div>
|
|
242
|
-
<div class="clearfix"></div>
|
|
243
|
-
|
|
244
|
-
<p></p>
|
|
245
|
-
|
|
246
|
-
<ul class="highlights">
|
|
247
|
-
<li>Contributed bugfixes and smaller features for Hooli</li>
|
|
248
|
-
</ul>
|
|
249
|
-
</div>
|
|
250
|
-
</section>
|
|
251
|
-
|
|
252
|
-
<section id="education">
|
|
253
|
-
<h2>Education</h2>
|
|
254
|
-
|
|
255
|
-
<div class="item">
|
|
256
|
-
<div class="item-header">
|
|
257
|
-
<div class="item-header-title">
|
|
258
|
-
Stanford
|
|
259
|
-
|
|
260
|
-
<span class="location">
|
|
261
|
-
Palo Alto, CA US
|
|
262
|
-
</span> </div>
|
|
263
|
-
<div class="item-header-subtitle">
|
|
264
|
-
<span class="degree">B.S, Computer Science</span>
|
|
265
|
-
</div>
|
|
266
|
-
</div>
|
|
267
|
-
|
|
268
|
-
<div class="clearfix"></div>
|
|
269
|
-
</div>
|
|
270
|
-
</section>
|
|
271
|
-
|
|
272
|
-
<section id="awards">
|
|
273
|
-
<h2>Awards & Recognitions</h2>
|
|
274
|
-
<ul class="item">
|
|
275
|
-
<li>
|
|
276
|
-
<strong>Digital Compression Pioneer Award</strong>: There is no spoon.
|
|
277
|
-
</li>
|
|
278
|
-
</ul>
|
|
279
|
-
</section>
|
|
280
|
-
|
|
281
|
-
<section id="skills">
|
|
282
|
-
<h2>Skills</h2>
|
|
283
|
-
<ul class="item">
|
|
284
|
-
<li>
|
|
285
|
-
<strong>Web Development</strong>: HTML, CSS, Javascript
|
|
286
|
-
</li>
|
|
287
|
-
<li>
|
|
288
|
-
<strong>Compression</strong>: Mpeg, MP4, GIF
|
|
289
|
-
</li>
|
|
290
|
-
</ul>
|
|
291
|
-
</section>
|
|
292
|
-
</body>
|
|
293
|
-
|
|
294
|
-
</html>
|
|
@@ -1,178 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"basics": {
|
|
3
|
-
"name": "Richard Hendriks",
|
|
4
|
-
"label": "Programmer",
|
|
5
|
-
"picture": "http://www.piedpiper.com/app/themes/pied-piper/dist/images/richard.png",
|
|
6
|
-
"email": "richard.hendriks@piedpiper.com",
|
|
7
|
-
"phone": "(912) 555-4321",
|
|
8
|
-
"url": "http://piedpiper.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 <a href='http://www.hooli.xyz/'>Hooli</a> 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 <em>“length-limited”</em> conversation!",
|
|
10
|
-
"location": {
|
|
11
|
-
"city": "Palo Alto",
|
|
12
|
-
"countryCode": "US",
|
|
13
|
-
"region": "CA"
|
|
14
|
-
},
|
|
15
|
-
"profiles": [
|
|
16
|
-
{
|
|
17
|
-
"network": "Twitter",
|
|
18
|
-
"username": "siliconHBO",
|
|
19
|
-
"url": "https://twitter.com/siliconHBO"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"network": "Facebook",
|
|
23
|
-
"username": "SiliconHBO",
|
|
24
|
-
"url": "https://www.facebook.com/SiliconHBO"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"network": "Instagram",
|
|
28
|
-
"username": "siliconhbo",
|
|
29
|
-
"url": "https://www.instagram.com/siliconhbo/"
|
|
30
|
-
}
|
|
31
|
-
]
|
|
32
|
-
},
|
|
33
|
-
"work": [
|
|
34
|
-
{
|
|
35
|
-
"company": "Pied Piper",
|
|
36
|
-
"position": "CEO/President",
|
|
37
|
-
"url": "http://piedpiper.com",
|
|
38
|
-
"startDate": "04/2014",
|
|
39
|
-
"endDate": "Current",
|
|
40
|
-
"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.",
|
|
41
|
-
"highlights": [
|
|
42
|
-
"Build an algorithm for artist to detect if their music was violating copy right infringement laws",
|
|
43
|
-
"Successfully won Techcrunch Disrupt",
|
|
44
|
-
"Optimized an algorithm that holds the current world record for Weisman Scores",
|
|
45
|
-
[
|
|
46
|
-
"Definitely, did not hack the entire internet",
|
|
47
|
-
"Successfully demod on Techcrunch stage"
|
|
48
|
-
]
|
|
49
|
-
],
|
|
50
|
-
"location": {
|
|
51
|
-
"city": "Palo Alto",
|
|
52
|
-
"countryCode": "US",
|
|
53
|
-
"region": "CA"
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"company": "Hooli",
|
|
58
|
-
"position": "Senior Software Engineer",
|
|
59
|
-
"website": "http://www.hooli.xyz/",
|
|
60
|
-
"startDate": "01/2014",
|
|
61
|
-
"endDate": "04/2014",
|
|
62
|
-
"highlights": [
|
|
63
|
-
"Worked on optimizing the backend algorithms for Hooli"
|
|
64
|
-
],
|
|
65
|
-
"location": {
|
|
66
|
-
"city": "Palo Alto",
|
|
67
|
-
"countryCode": "US",
|
|
68
|
-
"region": "CA"
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
"company": "Hooli",
|
|
73
|
-
"position": "Software Engineer",
|
|
74
|
-
"website": "http://www.hooli.xyz/",
|
|
75
|
-
"startDate": "01/2013",
|
|
76
|
-
"endDate": "01/2014",
|
|
77
|
-
"highlights": [
|
|
78
|
-
"Contributed bugfixes and smaller features for Hooli"
|
|
79
|
-
],
|
|
80
|
-
"location": {
|
|
81
|
-
"city": "Palo Alto",
|
|
82
|
-
"countryCode": "US",
|
|
83
|
-
"region": "CA"
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
],
|
|
87
|
-
"volunteer": [
|
|
88
|
-
{
|
|
89
|
-
"organization": "CoderDojo",
|
|
90
|
-
"position": "Teacher",
|
|
91
|
-
"website": "http://coderdojo.com/",
|
|
92
|
-
"startDate": "01/2012",
|
|
93
|
-
"endDate": "01/2013",
|
|
94
|
-
"summary": "Global movement of free coding clubs for young people.",
|
|
95
|
-
"highlights": [
|
|
96
|
-
"Awarded 'Teacher of the Month'"
|
|
97
|
-
]
|
|
98
|
-
}
|
|
99
|
-
],
|
|
100
|
-
"education": [
|
|
101
|
-
{
|
|
102
|
-
"institution": "Stanford",
|
|
103
|
-
"area": "Computer Science",
|
|
104
|
-
"studyType": "B.S",
|
|
105
|
-
"specialization": "Machine Learning",
|
|
106
|
-
"startDate": "06/2011",
|
|
107
|
-
"endDate": "01/2014",
|
|
108
|
-
"gpa": "GPA 4.0",
|
|
109
|
-
"courses": [
|
|
110
|
-
"<strong>DB1101</strong> - Basic SQL",
|
|
111
|
-
"<strong>CS2011</strong> - Java Introduction"
|
|
112
|
-
],
|
|
113
|
-
"location": {
|
|
114
|
-
"city": "Palo Alto",
|
|
115
|
-
"countryCode": "US",
|
|
116
|
-
"region": "CA"
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
],
|
|
120
|
-
"awards": [
|
|
121
|
-
{
|
|
122
|
-
"title": "Digital Compression Pioneer Award",
|
|
123
|
-
"date": "2014-11-01",
|
|
124
|
-
"awarder": "Techcrunch",
|
|
125
|
-
"summary": "There is no spoon."
|
|
126
|
-
}
|
|
127
|
-
],
|
|
128
|
-
"publications": [
|
|
129
|
-
{
|
|
130
|
-
"name": "Video compression for 3d media",
|
|
131
|
-
"publisher": "Hooli",
|
|
132
|
-
"releaseDate": "2014-10-01",
|
|
133
|
-
"website": "http://en.wikipedia.org/wiki/Silicon_Valley_(TV_series)",
|
|
134
|
-
"summary": "Innovative middle-out compression algorithm that changes the way we store data."
|
|
135
|
-
}
|
|
136
|
-
],
|
|
137
|
-
"skills": [
|
|
138
|
-
{
|
|
139
|
-
"name": "Web Development",
|
|
140
|
-
"level": "Master",
|
|
141
|
-
"keywords": [
|
|
142
|
-
"HTML",
|
|
143
|
-
"CSS",
|
|
144
|
-
"Javascript"
|
|
145
|
-
]
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"name": "Compression",
|
|
149
|
-
"level": "Master",
|
|
150
|
-
"keywords": [
|
|
151
|
-
"Mpeg",
|
|
152
|
-
"MP4",
|
|
153
|
-
"GIF"
|
|
154
|
-
]
|
|
155
|
-
}
|
|
156
|
-
],
|
|
157
|
-
"languages": [
|
|
158
|
-
{
|
|
159
|
-
"language": "English",
|
|
160
|
-
"fluency": "Native speaker"
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
"interests": [
|
|
164
|
-
{
|
|
165
|
-
"name": "Wildlife",
|
|
166
|
-
"keywords": [
|
|
167
|
-
"Ferrets",
|
|
168
|
-
"Unicorns"
|
|
169
|
-
]
|
|
170
|
-
}
|
|
171
|
-
],
|
|
172
|
-
"references": [
|
|
173
|
-
{
|
|
174
|
-
"name": "Erlich Bachman",
|
|
175
|
-
"reference": "It is my pleasure to recommend Richard. That is all."
|
|
176
|
-
}
|
|
177
|
-
]
|
|
178
|
-
}
|
|
Binary file
|
|
Binary file
|