Skip to content

Commit

Permalink
Update information
Browse files Browse the repository at this point in the history
  • Loading branch information
CompuIves committed Jul 23, 2016
1 parent 81d2501 commit e779ab9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 27 deletions.
58 changes: 32 additions & 26 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,9 @@ <h2 class="darkcolor h-card">Information</h2>
<div id="skillrow" class="row contentrow centerrow ultradarkbgcolor-transparent">
<h1>Skills</h1>
<div class="subheader-text descriptioncolor flow-text col s12 m10 offset-m1 l6 offset-l3">
These are the skills I'm comfortable with. I both love development and design and
always like learning new things in these fields.
I love development and design. I'm most
comfortable with front-end technologies like React and Redux, but I have also done a lot
of work in back-end technologies like Rails.
</div>
<!--
<div class="skills">
Expand Down Expand Up @@ -142,7 +143,7 @@ <h3 class="col s12">Frontend</h3>
<div class="name col l4 m4 s12">HTML5</div>
<div class="name col l4 m4 s12">CSS3</div>
<div class="name col l4 m4 s12">Sass</div>
<div class="name col l4 m4 s12">AngularJS</div>
<div class="name col l4 m4 s12">AngularJS 1</div>
<div class="name col l4 m4 s12">JQuery</div>
</div>
</div>
Expand Down Expand Up @@ -206,26 +207,7 @@ <h2 style="padding-bottom: 0;" class="col s12">Languages</h2>
<div id="experiencerow" class="row contentrow bgcolor-transparent">
<h1 class="headercolor">Experience</h1>
<div class="subheader-text ultradarkcolor flow-text col s12 m10 offset-m1 l6 offset-l3">
I'm trying to gain as much experience as possible each year.
</div>
<div class="subrow row">
<h2 style="margin-bottom: 0;" class="scrollfade darkcolor col s12">Education</h2>
<div class="entry col s12">
<div class="entryinfo col m4 s12 scrollfade">
<a href="http://www.nassaucollege.nl/" target="_blank" class=" ultradarkcolor entryname">Dr. Nassau College Quintus </a>
<div class="entryyears">
2009 - 2015
</div>
<div class="entrysub">
VWO - Nature & Technology + Biology
</div>
</div>
<div class="entrydescription col m8 s12 scrollfade">
<span class="flow-text">
This is a high school for pre-university training in Assen, The Netherlands. I took technological and biological courses with a special subject called Research & Development that allowed me to do projects for commercial enterprises. Some projects listed here were also done in Research & Development. My next step is to go to university and study Biomedical Engineering.
</span>
</div>
</div>
I'm trying to learn and gain as much experience as possible each year.
</div>

<div class="subrow row">
Expand All @@ -245,9 +227,10 @@ <h2 style="margin-bottom: 0;" class="scrollfade darkcolor col s12">Work</h2>
<div class="entrydescription col m8 s12 scrollfade">
<span class="flow-text">
Catawiki is an auction website focused on selling only exceptional items.
It is based in Assen and currently is the fastest growing tech company of the world.
I'm currently responsible for the implementation of a technology called React for the
website.
We are the fastest growing tech company of the world with a 45.080% growth over the past four years, our
site is visited by more than 12 million users each month.
I'm responsible for the implementation of a technology called React for different parts
of the website, including the auction and lot pages.
</span>
</div>
</div>
Expand Down Expand Up @@ -282,6 +265,29 @@ <h2 style="margin-bottom: 0;" class="scrollfade darkcolor col s12">Work</h2>
</div>
</div>
</div>

<div class="subrow row">
<h2 style="margin-bottom: 0;" class="scrollfade darkcolor col s12">Education</h2>
<div class="entry col s12">
<div class="entryinfo col m4 s12 scrollfade">
<a href="http://www.nassaucollege.nl/" target="_blank" class=" ultradarkcolor entryname">Dr. Nassau College Quintus </a>
<div class="entryyears">
2009 - 2015
</div>
<div class="entrysub">
VWO - Nature & Technology + Biology
</div>
</div>
<div class="entrydescription col m8 s12 scrollfade">
<span class="flow-text">
This is a high school for pre-university training in Assen, The Netherlands. I took technological and biological courses with a
special subject called Research & Development that allowed me to do projects for commercial enterprises.
Some projects listed here were also done in Research & Development. In September I will go to University of Twente to study
Computer Science.
</span>
</div>
</div>
</div>
</div>

<div id="projectrow" class="row contentrow portfoliorow ultradarkbgcolor-transparent" ng-controller="PortfolioController as portfolio">
Expand Down
6 changes: 5 additions & 1 deletion src/js/controller/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ app.controller("MainController", ["$scope", "uiGmapGoogleMapApi", "ColorService"
}
}

this.difference(date1, date2) = () => (
moment(date1).diff(date2, 'years');
);

/*
if (navigator.userAgent.match(/(iPad|iPhone|iPod)/g)) {
ScrollService();
Expand Down Expand Up @@ -165,4 +169,4 @@ app.controller("MainController", ["$scope", "uiGmapGoogleMapApi", "ColorService"
}, 800);
}
}
]);
]);

0 comments on commit e779ab9

Please sign in to comment.