2015-06-20 19:43:41 +00:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2015-06-20 20:02:27 +00:00
|
|
|
<title>I'm Marc!</title>
|
2015-06-20 19:49:46 +00:00
|
|
|
|
|
|
|
<!-- Stylesheets -->
|
|
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
|
|
|
|
|
|
<!-- JS -->
|
2015-06-20 20:52:06 +00:00
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
|
2015-06-20 21:58:01 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.3/handlebars.js"></script>
|
2015-06-20 20:52:06 +00:00
|
|
|
|
2015-06-20 21:01:32 +00:00
|
|
|
<script type='text/javascript' language='javascript' src='js/fx.js'></script>
|
2015-06-20 20:52:06 +00:00
|
|
|
|
2015-06-20 19:49:46 +00:00
|
|
|
|
2015-06-20 19:43:41 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2015-06-21 03:54:41 +00:00
|
|
|
<div id="page"> <!-- page wrapper -->
|
2015-06-21 03:51:14 +00:00
|
|
|
<div id="header_contents">
|
|
|
|
<a name="top"></a>
|
|
|
|
<div id="header_title">
|
|
|
|
<p>Hey there! My name is Marc.</p>
|
|
|
|
</div>
|
2015-06-21 05:23:56 +00:00
|
|
|
<div id="header_blurb" class="invisible">
|
2015-06-21 03:51:14 +00:00
|
|
|
<p>I am a 25 years old computer engineering major student at McGill University (Montreal, CAN). I also minor
|
|
|
|
in mathematics out of playful curiosity. Originally a physiology and mathematics double-major, bioinformatics-
|
|
|
|
related courses sparked my interest for all things computer systems and I promptly changed faculty to
|
|
|
|
pursue my new passion. I strive to have as broad a skillset as possible, which brought me to explore
|
|
|
|
hardware, computer software and recently, web development.</p>
|
|
|
|
<p>My biggest tech thrills revolve around playing with microcontrollers, finding ways to use multiple
|
|
|
|
technologies to get the job done as efficiently as possible and producing well-designed solutions to
|
|
|
|
the problems that land on my desk.</p>
|
|
|
|
<p>I'm also a pretty big fan of professional cycling, obstacle course racing and healthy cooking.</p>
|
|
|
|
</div>
|
2015-06-20 20:56:53 +00:00
|
|
|
</div>
|
2015-06-21 03:54:41 +00:00
|
|
|
<div id="skillset">
|
2015-06-21 05:08:18 +00:00
|
|
|
<div class="section_header fleft clearb fullwidth invisible">
|
2015-06-21 05:23:56 +00:00
|
|
|
<center><h1 class="nomargin">Skillset</h1></center>
|
2015-06-21 05:08:18 +00:00
|
|
|
</div>
|
|
|
|
<div class="contents">
|
2015-06-21 04:09:52 +00:00
|
|
|
<ul class="nomargin pad5">
|
2015-06-20 22:59:27 +00:00
|
|
|
<li>I comfortably program in <b>Java</b>,<b>C/C++</b>,<b>PHP</b> and <b>Javascript</b>.</li>
|
|
|
|
<li>I can also use <b>jQuery</b>,<b>HandlebarsJS</b>,<b>MongoDB</b> and <b>MySQL</b> without problems.</li>
|
|
|
|
<li>I am learning more about <b>node.js</b>.</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2015-06-21 03:54:41 +00:00
|
|
|
<div id="experience">
|
2015-06-21 05:08:18 +00:00
|
|
|
<div class="section_header fright clearb fullwidth invisible">
|
|
|
|
<center><h1 class="nomargin">Experience</h1></center>
|
|
|
|
</div>
|
|
|
|
<div class="contents">
|
|
|
|
<script id="exp-template" type="text/x-handlebars-template">
|
|
|
|
{{#each experiences}}
|
2015-06-20 22:03:32 +00:00
|
|
|
|
2015-06-21 05:08:18 +00:00
|
|
|
<div id="{{@index}}">
|
|
|
|
<p>{{title}} at {{org}} from {{start}} to {{end}}.</p>
|
|
|
|
<ul>
|
|
|
|
{{#each task}}<li>{{this}}</li>{{/each}}
|
|
|
|
</ul>
|
|
|
|
<div>
|
2015-06-20 21:58:01 +00:00
|
|
|
|
2015-06-21 05:08:18 +00:00
|
|
|
{{/each}}
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="projects">
|
|
|
|
<div class="section_header fleft clearb fullwidth invisible">
|
|
|
|
<center><h1 class="nomargin">Projects</h1></center>
|
|
|
|
</div>
|
2015-06-20 21:58:01 +00:00
|
|
|
</div>
|
2015-06-21 03:54:41 +00:00
|
|
|
</div> <!-- endof: page wrapper -->
|
2015-06-20 21:17:14 +00:00
|
|
|
|
2015-06-20 19:43:41 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|