Skip to content

Instantly share code, notes, and snippets.

@marclundgren
Last active April 19, 2022 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marclundgren/bdc91f96a42d917d4ac27c2e5764ed6c to your computer and use it in GitHub Desktop.
Save marclundgren/bdc91f96a42d917d4ac27c2e5764ed6c to your computer and use it in GitHub Desktop.
{
"meta": {
"theme": "actual"
},
"basics": {
"name": "Marc Lundgren",
"label": "Software Engineer",
"summary": "JavaScript nerd. TypeScript advocate. Serverless Cloud app builder. Dog lover.",
"picture": "https://avatars0.githubusercontent.com/u/1154834",
"phone": "(626) 404-8552",
"email": "marcrlundgren@gmail.com",
"website": "http://marclundgren.github.io",
"location": {
"address": "",
"postalCode": "CA 92618",
"city": "Irvine",
"countryCode": "US",
"region": "California"
},
"profiles": [
{
"network": "Github",
"username": "marclundgren",
"url": "http://github.com/marclundgren"
},
{
"network": "Codepen",
"username": "marclundgren",
"url": "http://codepen.io/marclundgren"
}
]
},
"work": [
{
"company": "Kareo/Tebra",
"position": "Senior Front End Engineer (remote)",
"website": "http://kareo.com",
"startDate": "2019-11-11",
"summary": "",
"highlights": [
"Delivered a payment processing solution that earned $30M in gross card volume",
"Designed and Developed proof of concept for a new Payment Facilitation platform",
"Reduced Kareo's monolith application's build time by ~30%",
"Deployed a serverless application with CI/CD, build phases and deployment lifecycles",
"Implemented an Apple Pay, Google Pay Point-Of-Sale UI with Stripe payment integration",
"Enabled TypeScript React.js capabilities for Kareo's UI monolith application",
"React.js, TypeScript, AWS"
]
},
{
"company": "Rallio",
"position": "Senior Front End Engineer, Cloud Software Engineer",
"website": "http://rallio.com",
"startDate": "2016-09-27",
"endDate": "2019-11-08",
"summary": "",
"highlights": [
"Redesigned and re-architected Rallio's flagship monolith UI application",
"Architected, designed and implemented a AWS Fault-tolerant Data-integration application",
"Mentored junior UI developers",
"Node.js, Ember.js, React.js, AWS"
]
},
{
"company": "Kinvey",
"position": "Front End Engineer (remote)",
"website": "http://kinvey.com",
"startDate": "2015-02-11",
"endDate": "2016-08-15",
"summary": "",
"highlights": [
"Built and maintained a high-traffic complex single page application with Ember.js",
"Delivered a cloud-data backed identification cross-platform mobile app with React Native",
"Deployed and iterated in an agile start-up environment",
"Increased stability by introducing integration and acceptance tests for all Kinvey UIs",
"Node.js, Ember.js, Google Firebase"
]
},
{
"company": "FIDM",
"position": "Front End Developer",
"website": "http://fidm.edu",
"startDate": "2014-08-21",
"endDate": "2015-02-01",
"highlights": [
"Designed and built two Single Page Applications with React.js",
"React.js, Mithril.js"
]
},
{
"company": "Liferay",
"position": "Front End Software Engineer",
"website": "http://liferay.com",
"startDate": "2012-02-22",
"endDate": "2014-08-20",
"highlights": [
"Open Source Development",
"Responsive, Mobile First Development",
"HTML5",
"Accessibility",
"Bootstrap 2 Implementation, Bootstrap 3 Migration",
"Platform Unit Testing"
]
}
],
"education": [
{
"institution": "California State University of Fullerton",
"area": "Computer Science",
"studyType": "Bachelor of Science",
"startDate": "2007-06-15",
"endDate": "2011-12-20",
"gpa": "",
"courses": []
}
],
"skills": [
{
"name": "Frontend",
"keywords": [
"HTML / JSX",
"SCSS / CSS / Styled Components",
"JavaScript / Typescript",
"React / React Native",
"Redux"
]
},
{
"name": "Backend",
"keywords": [
"Node",
"Postgres",
"Sequelize",
"Java"
]
},
{
"name": "Devops",
"keywords": [
"Serverless",
"AWS",
"G Cloud",
"Docker",
"Kubernetes",
"Terraform"
]
}
],
"certificates": [
{
"name": "AWS Certified Developer Associate",
"date": "2021-01-23",
"issuer": "AWS",
"url": "http://marclundgren.github.io/static/AWS_Certified_Developer_-_Associate_certificate.pdf"
},
{
"name": "AWS Certified Cloud Practitioner",
"date": "2020-07-17",
"issuer": "AWS",
"url": "https://marclundgren.github.io/static/AWS_Certified_Cloud_Practitioner_certificate.pdf"
}
]
}
@marclundgren
Copy link
Author

marclundgren commented Jan 25, 2021

// Before printing to PDF
$('.profile-pic, .social-links, .card.profile-card hr').toArray().forEach(el => el.style.display = 'none')
$('.card.profile-card').toArray().forEach(el => el.style.minHeight = 0)
$('.contact-details').toArray().forEach(el => {
  el.style.display = 'flex'
  el.style.alignItems = 'center'
  el.style.justifyContent = 'center'
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment