jsonresume-theme-engineering 0.2.0 → 0.2.1
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/Makefile +1 -1
- package/TODO.md +1 -0
- package/package.json +1 -1
- package/resume.2025-04-13-09:15:34.png +0 -0
- package/resume.2025-04-13-09:49:57.png +0 -0
- package/resume.png +0 -0
- package/sample-resume.json +6 -6
- package/style.css +11 -3
- package/views/awards.hbs +1 -1
- package/views/basics.hbs +1 -1
- package/views/education.hbs +1 -1
- package/views/volunteer.hbs +2 -2
- package/views/work.hbs +1 -1
- package/resume.2024-04-2110:16:53.png +0 -0
- package/resume.old.png +0 -0
package/Makefile
CHANGED
package/TODO.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
- switch from resume-cli to https://github.com/rbardini/resumed
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
package/resume.png
CHANGED
|
Binary file
|
package/sample-resume.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"email": "richard.hendriks@piedpiper.com",
|
|
7
7
|
"phone": "(912) 555-4321",
|
|
8
8
|
"website": "http://piedpiper.com",
|
|
9
|
-
"summary": "Richard hails from Tulsa
|
|
9
|
+
"summary": "Richard hails from <strong>Tulsa</strong>. 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
10
|
"location": {
|
|
11
11
|
"address": "Newell Road",
|
|
12
12
|
"postalCode": "94303",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"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.",
|
|
42
42
|
"highlights": [
|
|
43
43
|
"Build an algorithm for artist to detect if their music was violating copy right infringement laws",
|
|
44
|
-
"Successfully won Techcrunch Disrupt",
|
|
44
|
+
"Successfully won <a href='https://techcrunch.com/event-type/disrupt/'>Techcrunch Disrupt</a>",
|
|
45
45
|
"Optimized an algorithm that holds the current world record for Weisman Scores"
|
|
46
46
|
]
|
|
47
47
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"startDate": "2014-01-01",
|
|
53
53
|
"endDate": "2014-04-06",
|
|
54
54
|
"highlights": [
|
|
55
|
-
"Worked on optimizing the backend algorithms for Hooli"
|
|
55
|
+
"Worked on optimizing the backend algorithms for <a href='http://www.hooli.xyz/'>Hooli</a>"
|
|
56
56
|
]
|
|
57
57
|
},
|
|
58
58
|
{
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"startDate": "2013-01-01",
|
|
63
63
|
"endDate": "2014-01-01",
|
|
64
64
|
"highlights": [
|
|
65
|
-
"Contributed bugfixes and smaller features for Hooli"
|
|
65
|
+
"Contributed bugfixes and smaller features for <a href='http://www.hooli.xyz/'>Hooli</a>"
|
|
66
66
|
]
|
|
67
67
|
}
|
|
68
68
|
],
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
"endDate": "2014-01-01",
|
|
91
91
|
"gpa": "GPA 4.0",
|
|
92
92
|
"courses": [
|
|
93
|
-
"DB1101 - Basic SQL",
|
|
94
|
-
"CS2011 - Java Introduction"
|
|
93
|
+
"<strong>DB1101</strong> - Basic SQL",
|
|
94
|
+
"<strong>CS2011</strong> - Java Introduction"
|
|
95
95
|
]
|
|
96
96
|
}
|
|
97
97
|
],
|
package/style.css
CHANGED
|
@@ -2,7 +2,15 @@
|
|
|
2
2
|
body {
|
|
3
3
|
font-family: Georgia, serif;
|
|
4
4
|
font-size: 11px;
|
|
5
|
-
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
#resume {
|
|
10
|
+
max-width: 800px;
|
|
11
|
+
width: 100%;
|
|
12
|
+
padding: 24px 48px;
|
|
13
|
+
box-sizing: border-box;
|
|
6
14
|
}
|
|
7
15
|
|
|
8
16
|
h1 {
|
|
@@ -83,7 +91,7 @@ a {
|
|
|
83
91
|
size: portrait;
|
|
84
92
|
margin: 10mm 25mm;
|
|
85
93
|
}
|
|
86
|
-
|
|
94
|
+
#resume {
|
|
87
95
|
max-width: 100%;
|
|
88
96
|
border: 0px;
|
|
89
97
|
background: #fff;
|
|
@@ -92,7 +100,7 @@ a {
|
|
|
92
100
|
}
|
|
93
101
|
body,
|
|
94
102
|
html,
|
|
95
|
-
|
|
103
|
+
#resume {
|
|
96
104
|
margin: 0px;
|
|
97
105
|
padding: 0px;
|
|
98
106
|
}
|
package/views/awards.hbs
CHANGED
package/views/basics.hbs
CHANGED
package/views/education.hbs
CHANGED
package/views/volunteer.hbs
CHANGED
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
{{#> item title=organization subtitle=position location=location startDate=startDate endDate=endDate }}
|
|
6
6
|
{{#if summary}}
|
|
7
7
|
<div class="summary">
|
|
8
|
-
<p>{{summary}}</p>
|
|
8
|
+
<p>{{{summary}}}</p>
|
|
9
9
|
</div>
|
|
10
10
|
{{/if}}
|
|
11
11
|
|
|
12
12
|
{{#if highlights.length}}
|
|
13
13
|
<ul class="highlights">
|
|
14
14
|
{{#each highlights}}
|
|
15
|
-
<li>{{.}}</li>
|
|
15
|
+
<li>{{{.}}}</li>
|
|
16
16
|
{{/each}}
|
|
17
17
|
</ul>
|
|
18
18
|
{{/if}}
|
package/views/work.hbs
CHANGED
|
Binary file
|
package/resume.old.png
DELETED
|
Binary file
|