Skip to content

Commit

Permalink
Make changes requested in #50
Browse files Browse the repository at this point in the history
  • Loading branch information
joewie committed Sep 17, 2019
1 parent 58274da commit 4a0b46b
Show file tree
Hide file tree
Showing 5 changed files with 232 additions and 132 deletions.
119 changes: 119 additions & 0 deletions _includes/cv.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@


<section id="post-cv">
<div class="container">
<div id="article">

{{ content }}
<hr class="separating-line no-print">

<h1>Education</h1>
{% for item in page.education %}
<div class="row cv-item">
<div class="col-md-3">
<h3 class="inlineifprinted">{{item.start}} - {{item.end}}</h3>
{% if item.location-link %}<h4 class="inlineifprinted"><a href="{{item.location-link}}" target="_blank">{{item.location}}</a></h4>
{% else %}<h4 class="inlineifprinted">{{item.location}}</h4>
{% endif %}
</div>
<div class="col-md-9">
<h2>{{item.name}}</h2>
<p>{% if item.title %}<i>{{item.title}}</i><br>{% endif %}
{{item.description}}
</p>
</div>
</div>
{% endfor %}

<h1>Professional Experience</h1>
{% for item in page.experience %}
<div class="row cv-item">
<div class="col-md-3">
<h3 class="inlineifprinted">{{item.start}} - {{item.end}}</h3>
{% if item.location-link %}<h4 class="inlineifprinted"><a href="{{item.location-link}}" target="_blank">{{item.location}}</a></h4>
{% else %}<h4 class="inlineifprinted">{{item.location}}</h4>
{% endif %}
</div>
<div class="col-md-9">
<h2>{{item.name}}</h2>
<p>{% if item.title %}<i>{{item.title}}</i><br>{% endif %}
{{item.description}}
</p>
</div>
</div>
{% endfor %}

<h1>Volunteering</h1>
{% for item in page.misc %}
<div class="row cv-item">
<div class="col-md-3">
<h3 class="inlineifprinted">{{item.start}} - {{item.end}}</h3>
{% if item.location-link %}<h4 class="inlineifprinted"><a href="{{item.location-link}}" target="_blank">{{item.location}}</a></h4>
{% else %}<h4 class="inlineifprinted">{{item.location}}</h4>
{% endif %}
</div>
<div class="col-md-9">
<h2>{{item.name}}</h2>
<p>{% if item.title %}<i>{{item.title}}</i><br>{% endif %}
{{item.description}}
</p>
</div>
</div>
{% endfor %}

<h1>Publications</h1>
{% for y in page.years %}
<h2>{{ y }}</h2>
{% for item in page.publications %}
{% if y == item.year %}
<div class="row cv-item pub">
<div class="col-md-3">
<h4 class="inlineifprinted">{{item.venue}}</h4>
{% if item.where %}<p class="no-print d-none d-md-block">{{item.where}}</p>{% endif %}
</div>
<div class="col-md-9">
<h2>{{item.title}}
{% if item.pdf %}<a class="no-print" href="{% if item.host %}{{ item.host }}{% else %}{{ site.url }}{% endif %}/papers/{{ item.pdf }}.pdf" target="_blank"> [PDF]</a><a class="no-print" href="{% if item.host %}{{ item.host }}{% else %}{{ site.url }}{% endif %}/papers/{{ item.pdf }}.bib" target="_blank"> [BIB]</a>{% endif %}
{% if item.arxiv %}<a class="no-print" href="https://arxiv.org/abs/{{ item.arxiv }}" target="_blank"> [arXiv]</a>{% endif %}</h2>
<p><i>{{item.authors}}</i><br>
{% if item.description %}{{item.description}}{% endif %}
</p>
</div>
</div>
{% endif %}
{% endfor %}
{% endfor %}

<h1>Service</h1>
{% for item in page.service %}
<div class="row cv-item">
{% if item.year or item.venue or item.where %}
<div class="col-md-4">
<h3 class="inlineifprinted">{{item.year}}</h3>
<h4 class="inlineifprinted">{{item.venue}}</h4>
<p class="no-print d-none d-md-block">{{item.where}}</p>
</div>
<div class="col-md-8">
{% else %}
<div class="col-md-12">
{% endif %}
<h2 {% if item.inline %}style="display:inline-block;"{% endif %}>{{item.title}}</h2>
{% if item.elems %}
<ul>
{% for elem in item.elems %}
{% if elem.year %}
<li><b>{{ elem.year }}</b> - {{ elem.where }} - {{ elem.description }}</li>
{% else %}<li>{{ elem }}</li>{% endif %}
{% endfor %}
</ul>
{% else %}
<p {% if item.inline %}style="display:inline-block;"{% endif %}>{% if item.authors %}<i class="no-print">{{item.authors}}</i><br class="no-print">{% endif %}
{{ item.description }}</p>
{% endif %}
</div>
</div>
{% endfor %}

<hr class="separating-line no-print">
</section>

18 changes: 17 additions & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</nav>

<!-- Header -->
{% if page.type != "article" and page.type != "fourofour" %}
{% if page.type != "article" and page.type != "fourofour" and page.type != "cv"%}
<header>
<div class="container">
<div class="row">
Expand All @@ -84,6 +84,22 @@
</div>
</header>
{% endif %}
{% if page.type == "cv" %}
<header>
<div class="container">
<div class="row">
<div class="col-lg-12">
<img class="img-fluid no-print with-shadow-on-hover cv-img" src="/img/people/{{page.pic}}" alt="{{page.title}}" style="border-radius: 100%; display: block; margin: 0 auto 20px;">
<div class="intro-text">
<span class="name no-print">{{ page.title }}</span>
<!-- <hr class="separating-line no-print"> -->
<span class="owner no-print">{{ page.description }}</span>
</div>
</div>
</div>
</div>
</header>
{% endif %}

{% if site.banner %}
{% if site.banner-link %}<a href="{{ site.url }}/{{ site.banner-link }}" target="_blank">{% endif %}
Expand Down
2 changes: 2 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
{% include portfolio.html %}
{% elsif page.type == "publications" or page.type == "people" %}
{{ content }}
{% elsif page.type == "cv" %}
{% include cv.html %}
{% else %}
{% include article.html %}
{% endif %}
Expand Down
94 changes: 94 additions & 0 deletions _posts/people/2019-09-16-joewie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
---
title: Joewie J. Koh
description: PhD Student
tags: [cv]
type: cv
pic: joewie.jpg
permalink: joewie.html

education:
- name: Master of Science in Computer Science
title: Specialization in Machine Learning
start: 2017
end: 2019
location: Georgia Institute of Technology, Atlanta, GA, United States
location-link: https://www.gatech.edu/
description: "I pursued my master's degree concurrently with full-time employment. I also satisfied the requirements for the specialization in interactive intelligence."
- name: Bachelor of Arts in Mathematics
title: Concentration in Computer Science
start: 2013
end: 2017
location: Reed College, Portland, OR, United States
location-link: https://www.reed.edu/
description: My senior thesis was titled "Algorithms for the Computation of Delaunay Triangulations", advised by Jim Fix. Somehow or other, I found myself completing all the required coursework for the physics major as well.

experience:
- name: Graduate Research Assistant
title: University of Colorado Boulder
start: Feb 2019
end: Present
location: Boulder, CO, United States
description: "I perform robotics research in the HIRO Group and mentor a few of the undergraduate students in the group."
- name: Graduate Teaching Assistant
title: University of Colorado Boulder
start: Aug 2019
end: Present
location: Boulder, CO, United States
description: "I am a TA for the introductory computer science course at CU Boulder. I grade assignments and teach weekly recitations for a class of 48 students, in addition to holding weekly office hours."
- name: Machine Learning Engineer
title: Optfit LLC
start: Oct 2017
end: Jan 2019
location: Denver, CO, United States
description: "I worked at a Denver-based startup, where I built scalable machine learning solutions leveraging cloud computing for problems in cybersecurity and legal informatics. I was also the project lead for NLP engineering, and held a Professional Data Engineer certification from Google Cloud."
- name: Operations Supervisor
title: Reed Research Reactor
start: Sep 2013
end: May 2017
location: Portland, OR, United States
description: "As the Operations Supervisor, I was the most senior supervisor on staff at the research reactor. Before this appointment, I served as the Requalification Supervisor for a year. In this role, I was solely responsible for the facility requalification program which assured continued competence of facility staff in reactor operation. I was licensed as a Reactor Operator and a Senior Reactor Operator by the U.S. Nuclear Regulatory Commission in 2014 and 2015 respectively."
- name: Battalion Deputy Manpower Officer, 1st Army Maintenance Base
title: Singapore Armed Forces
start: Apr 2011
end: Dec 2012
location: Singapore
description: "I was a Lieutenant in the Singapore Army. As the Deputy S1 of my battalion, I assisted the manpower officer in overseeing the manpower and HR matters of the battalion. Prior to this, I attended Officer Cadet School at the SAFTI Military Institute."

misc:
- name: Teaching Volunteer
title: Microsoft Philanthropies TEALS (Technology Education and Literacy in Schools)
start: Jan 2019
end: Apr 2019
location: Englewood, CO, United States
description: "I taught AP Computer Science at Englewood High School twice a week."

publications:
- title: "Inline Detection of Domain Generation Algorithms with Context-Sensitive Word Embeddings"
authors: <b>Joewie J. Koh</b>, Barton Rhodes
year: 2018
venue: 2018 IEEE International Conference on Big Data
where: Seattle, WA, United States, December 10-15
arxiv: "1811.08705"
- title: "Algorithms for the Computation of Delaunay Triangulations"
authors: <b>Joewie J. Koh</b>
year: 2017
venue: B.A. Thesis
where: Reed College
years:
- 2018
- 2017

service:
- title: "Reviewer"
elems:
- "<i>Cognitive Systems Research</i> (2019)"
---

# About Me

I work primarily on problems at the intersection of robotics and reinforcement learning. Currently, I'm pursuing several lines of research in robotic grasping and multi-robot systems. I'm also supervising an undergraduate project that seeks to leverage both verbal and visual context in the modeling of user intent. Before starting the doctoral program at CU Boulder, I worked at a Denver-based startup applying techniques from the latest NLP research to challenges in cybersecurity and legal informatics.

I spent the first two decades of my life in Singapore, but uprooted to the United States for college. In between these two places, I spent half a year living and studying in Russia following an edge-to-edge overland traversal of Europe. But I digress. Drawn to the mountains, I moved to Colorado after my graduation from Reed College. I've been here since.

Like almost everyone in Boulder, I enjoy running, hiking, snowboarding, and, well, bouldering.

131 changes: 0 additions & 131 deletions _posts/personal/2019-09-16-joewie.md

This file was deleted.

0 comments on commit 4a0b46b

Please sign in to comment.