From d9dd72bc301560b01d24105cecee00933222bbad Mon Sep 17 00:00:00 2001 From: bel Date: Sun, 13 Sep 2020 20:27:13 -0600 Subject: [PATCH] to folder structure --- go-app/app.yaml | 1 + main.go => go-app/main.go | 0 go-app/public/index.html | 78 +++++++++++++++++ go-app/public/resume.css | 177 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 256 insertions(+) create mode 100644 go-app/app.yaml rename main.go => go-app/main.go (100%) create mode 100644 go-app/public/index.html create mode 100755 go-app/public/resume.css diff --git a/go-app/app.yaml b/go-app/app.yaml new file mode 100644 index 0000000..898dccc --- /dev/null +++ b/go-app/app.yaml @@ -0,0 +1 @@ +runtime: go113 diff --git a/main.go b/go-app/main.go similarity index 100% rename from main.go rename to go-app/main.go diff --git a/go-app/public/index.html b/go-app/public/index.html new file mode 100644 index 0000000..3050c11 --- /dev/null +++ b/go-app/public/index.html @@ -0,0 +1,78 @@ + + + +Bree LaPointe + + + +
+

Bree LaPointe

+ +

Experience

+

Software Developer II
Qualtrics
Oct 2019 – Present

+ +

Software Developer I
Qualtrics
Feb 2018 – Oct 2019

+ +

Research

+

Arabidopsis thaliana computationally-generated next-state gene interaction models
Jan 2017 – Dec 2017

+ +

Education

+

Master of Science, Computer Science
Wake Forest University
Jan 2016 – Dec 2017

+ +

Bachelor of Arts, Computer Science
High Point University
Aug 2013 – Dec 2015

+ +

Skills

+
+ +
+ + diff --git a/go-app/public/resume.css b/go-app/public/resume.css new file mode 100755 index 0000000..dee1cfd --- /dev/null +++ b/go-app/public/resume.css @@ -0,0 +1,177 @@ +body { + color: #000000; + background: #EEEEEE; + font: 1.1em "Times New Roman"; + line-height: 1.2; + margin: 40px 0; +} +#resume, footer { + background: #FFFFFF; + border: 1px solid #CCCCCC; + box-shadow: 2px 2px 4px #AAAAAA; + -webkit-box-shadow: 2px 2px 4px #AAAAAA; +} +#social > a { + display: block; + max-width: 2em; +} +#social { + padding: 20px 30px; + display: flex; + flex-direction: row; + flex-wrap: wrap; +} +#social a, #social a:link, #social a:visited { + color: #000; + text-decoration: underline; +} +#social a { + margin: 0 1em 0 0; +} +#social a:hover { + color: #444; + text-decoration: underline; +} +#resume { + max-width: 800px; + padding: 40px 60px; +} +footer { + max-width: 925px; +} +#resume, footer { + margin: 0 auto; +} +h1 { + text-transform: uppercase; + text-align: center; + font-size: 150%; + margin: 0; + padding: 0; +} +h2 { + border-bottom: 1px solid #000000; + text-transform: uppercase; + font-size: 130%; + margin: 1.0em 0 0 0; + padding: 0; +} +h3 { + font-size: 100%; + margin: 0.8em 0 0.3em 0; + padding: 0; + display: flex; + justify-content: space-between; +} +h3 > div:nth-child(1) { + flex: 1; + padding: 0 2em 0 0; +} +h3 > div:nth-child(2) { + flex: none; +} +p { + margin: 0 0 0.5em 0; + padding: 0; +} +ul { + padding: 0; + margin: 0 1.5em; +} +/* ul immediately after h1 = contact list */ +h1 + ul { + text-align: center; + margin: 0; + padding: 0; +} +li { + margin: .5em 0 0 0; +} +h1 + ul > li { + margin: initial; + display: inline; + white-space: pre; + list-style-type: none; +} +h1 + ul > li:after { + content: " \2022 "; +} +h1 + ul > li:last-child:after { + content: ""; +} +/* p immediately after contact list = summary */ +h1 + ul + p { + margin: 1em 0; +} +footer { + display: flex; + flex-direction: row; + flex-wrap: wrap; +} +footer > div { + flex: 2; + min-width: 20em; +} +#thanks { + flex: 1; + text-align: center; + font-style: italic; + opacity: 75%; + display: flex; + align-items: center; + justify-content: center; + } +@media print { + body { + font-size: 12pt; + margin: 0; + padding: 0; + background: none; + } + #resume { + margin: 0; + padding: 0; + border: 0px; + background: none; + box-shadow: none; + -webkit-box-shadow: none; + } + /* Make links black in PDF */ + /* Move this outside the print block to apply this in HTML too */ + a, a:link, a:visited, a:hover { + color: #000000; + text-decoration: underline; + } + /* + ul:not(:nth-child(2)) > li:nth-child(1), + ul:not(:nth-child(2)) > li:nth-child(2) { + display: list-item; + } + ul:not(:nth-child(2)) > li, + */ + footer { + display: none; + } +} +@page { + /* Change margins and paper size of PDF */ + /* https://developer.mozilla.org/en-US/docs/Web/CSS/@page */ + size: letter; + margin: 0.5in 0.8in; +} +@media screen and (max-width: 800px) { + body { + font-size: 16pt; + margin: 0; + padding: 0; + background: #FFFFFF !important; + } + #resume { + margin: 0; + padding: 1em; + border: 0px; + background: none; + box-shadow: none; + -webkit-box-shadow: none; + } +}