This repository was archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathindex.html
99 lines (96 loc) · 10 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html><html><head><meta charset="UTF-8">
<title>Resume</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/angular_material/1.1.0-rc2/angular-material.min.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Raleway:500,200,700" rel="stylesheet">
<style>
h1,h2,h3,h4,h5,h6,p,a,li,span{font-family:'Raleway',sans-serif}.resume{background-color:#1f1f1f;min-height:100vh}.resume .main{height:100%;width:700px;background-color:#fff;padding:0 25px;margin:0 auto}.resume .main .header{border-bottom:2px solid #ddd}.resume .main .header .page-title-container{margin:0 auto;text-align:center;padding-bottom:10px}.resume .main .header .page-title{font-size:48pt;display:inline}.resume .main .header .page-title-first{font-weight:400}.resume .main .header .page-title-last{font-weight:200}.resume .main .header .header-icons{text-align:center}.resume .main .header .header-icons .page-subhead{margin:1rem 15px;display:inline}.resume .main .header .fa{padding-right:10px}.resume .main .indented{padding-left:40px}.resume .main .category-row{padding-bottom:2px}.resume .main .category-row .category{margin-right:10px;padding-left:5px;padding-right:10px;border-bottom:1px solid #ddd;border-right:1px solid #ddd}.resume .main .category-row .category-row-title{margin:.4rem 0}.resume .main .category-row .category-title,.resume .main .category-row .category-subtitle{display:inline;margin-top:10px;margin-bottom:5px}.resume .main .category-row .category-bullets{margin-top:5px}.resume .main .category-row p,.resume .main .category-row li{font-size:smaller}sidebar-category:last-of-type .category{border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}category:last-of-type category-item:last-of-type .category{border-bottom:0!important;padding-bottom:0!important;margin-bottom:0!important}a.page-subhead{color:initial;text-decoration:none}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-animate.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-aria.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-messages.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angular_material/1.1.0-rc2/angular-material.min.js"></script>
<script>angular.module("Resume",["ngMaterial"]).component("resume",{transclude:true,template:'<div class="resume">\n <section class="main" ng-transclude></section>\n </div>'}).component("resumeHeading",{controllerAs:"r",bindings:{firstName:"@",lastName:"@",website:"@",phone:"@",email:"@",github:"@",linkedin:"@"},template:'<div class="header">\n <div class="page-title-container">\n <h1 class="page-title page-title-first">{{r.firstName}}</h1>\n <h1 class="page-title page-title-last">{{r.lastName}}</h1>\n </div>\n <div class="header-icons">\n <a ng-if="r.website" class="md-subhead page-subhead" ng-href="https://{{r.website}}" target="_blank">\n <i class="fa fa-lg fa-code"></i>{{r.website}}\n </a>\n <span ng-if="r.phone" class="md-subhead page-subhead">\n <i class="fa fa-lg fa-phone"></i>{{r.phone}}\n </span>\n <a ng-if="r.email" class="md-subhead page-subhead" ng-href="mailto:{{r.email}}" target="_blank">\n <i class="fa fa-lg fa-envelope"></i>{{r.email}}\n </a>\n <a ng-if="r.github" class="md-subhead page-subhead" ng-href="https://github.com/{{r.github}}" target="_blank">\n <i class="fa fa-lg fa-github"></i>{{r.github}}\n </a>\n <a ng-if="r.linkedin" class="md-subhead page-subhead" ng-href="https://linkedin.com/in/{{r.linkedin}}" target="_blank">\n <i class="fa fa-lg fa-linkedin-square"></i>{{r.linkedin}}\n </a>\n </div>\n </div>'}).component("resumeBody",{transclude:true,template:'<div layout="row" ng-transclude></div>'}).component("resumeColumn",{transclude:true,template:"<div ng-transclude></div>"}).component("sidebarCategory",{controllerAs:"r",bindings:{name:"@"},transclude:true,template:'<div flex="" class="category-row">\n <div class="category">\n <h5 class="category-row-title">{{r.name}}</h5>\n <ng-transclude></ng-transclude>\n </div>\n </div>'}).component("category",{controllerAs:"r",bindings:{name:"@"},transclude:true,template:'<div flex="" class="category-row">\n <h4 class="category-row-title">{{r.name}}</h4>\n <ng-transclude></ng-transclude>\n </div>'}).component("categoryItem",{controllerAs:"r",bindings:{title:"@",subtitle:"@"},transclude:true,template:'<div class="category">\n <h5 class="category-title md-body-2">{{r.title}}</h5> \n <h5 class="category-subtitle md-caption">{{r.subtitle}}</h5>\n <ul class="category-bullets" ng-transclude></ul>\n </div>'});
</script>
</head><body ng-app="Resume" ng-cloak="">
<resume>
<resume-heading first-name="Taylor" last-name="Swift" linkedin="tay-swizzy" github="tswizzle" email="taylor@swift.com" phone="123-456-7890">
</resume-heading>
<resume-body>
<resume-column flex="20">
<sidebar-category name="Education">
<p>Dankmeme Polytechic Institue</p>
<p>Graduating May 2016</p>
<p>Computer Science</p>
<p>Computer Systems Engineering</p>
<p>GPA - 3.76</p>
</sidebar-category>
<sidebar-category name="Achievements">
<p>Penn App Finalist Spring 2016</p>
<p>Hophacks 2nd Place Spring 2016</p>
<p>Dankmeme Achievement Medal 2016</p>
<p>Dan Abromov's Top Follower 2016</p>
<p>Advanced Regents Diploma</p>
</sidebar-category>
<sidebar-category name="Coursework">
<p>Data Structures</p>
<p>Algorithms</p>
<p>Programmings Langauges</p>
<p>Operating Systems</p>
<p>Distributed Systems</p>
<p>Discrete Math</p>
</sidebar-category>
</resume-column>
<resume-column flex="80">
<category name="Professional Experience">
<category-item title="Co-Founder" subtitle="Torch Studios">
<li>Co-Founded company in 2015</li>
<li>Applies machine learning to customer purchase history for marketing materials</li>
<li>Featured on Product Hunt, clients include two Fourtune 500 companies</li>
</category-item>
<category-item title="Software Development Intern" subtitle="AirBnB (Summer 2015)">
<li>Worked in an Agile Environment on the iOS team with other interns</li>
<li>Used JIRA to collaborate with developers are on stories</li>
<li>Collaborated with other interns on design</li>
<li>Used Objective-C to create new app features and scaled on Kubernetes</li>
</category-item>
<category-item title="Software Development Intern" subtitle="Uber (Summer 2014)">
<li>Worked on the iOS application</li>
<li>Added new features and fixed several bugs on the app</li>
<li>Greenfield project to research a better way to call cars to your location</li>
</category-item>
</category>
<category name="Projects">
<category-item title="In-It-For-The-Prizes" subtitle="Penn Apps Spring 2016 (Finalist)">
<li>Such and amazing app that did a lot of things</li>
<li>Integrations with Uber, Postmates, Spotify, and Office 365</li>
<li>Written with Ionic Framework and hosted on Kubernetes 😎 for the cred</li>
</category-item>
<category-item title="FoodStash" subtitle="Hophacks Spring 2016 (2nd Place)">
<li>Food-storage-as-a-Service app that lets people put their food in your fridge</li>
<li>All storage and payment in based on the blockchain with Ethereum and Mist</li>
</category-item>
<category-item title="Turnup" subtitle="github.com/tswizzle/turnup">
<li>A new programming language with a focus on developers turning up</li>
<li>Implemented in Go and requires Docker 1.12 with Ceph on CoreOS</li>
</category-item>
</category>
<category name="Skills">
<category-item title="Web Development">
<li><strong>Dank Memes</strong> I can find the deepest, dankest memes out there on the inerwebs</li>
<li><strong>Distributed Systems</strong> I only run my apps on Kubernetes and a CoreOS cluster</li>
<li><strong>Tooling</strong> I literally treat Dan Abromov's Twitter as holy gospel</li>
<li><strong>Frameworks</strong> React, Redux, Reselect, Redankmeme, Revenant, Angular</li>
</category-item>
<category-item title="Technologies">
<li><strong>Experienced With</strong> Web & Hybrid App Development \ Functional Programming</li>
<li><strong>Programming</strong> Javascript \ Scala \ Python \ PHP \ C \ Java</li>
<li><strong>Databases</strong> RethinkDB \ MongoDB \ MySQL \ PostgreSQL \ Redis</li>
</category-item>
</category>
</resume-column>
</resume-body>
</resume>
</body></html>