Skip to content

Instantly share code, notes, and snippets.

@julian-ramos
Last active January 13, 2020 16:46
Show Gist options
  • Select an option

  • Save julian-ramos/92db052469c9e929611000ec1c61fa0a to your computer and use it in GitHub Desktop.

Select an option

Save julian-ramos/92db052469c9e929611000ec1c61fa0a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="PUI/SSUI Lab Week 1" />
<title>Week 1</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
<link rel="shortcut icon" href="favicon.ico" />
<link />
</head>
<body>
<!--
Useful Tags:
- <div>...</div> ==> block-level container for content
- <span>...</span> ==> inline container for content
- <h1>...</h1>(<h2>...</h2>, etc.) ==> headings (h1 through h6)
- <p>...</p> ==> paragraph of text
- <img src=”...” /> ==> image, src specifying path to image
- <a href=”...”>Link Text</a> ==> link, href specifying destination
-->
<h2>Instructors</h2>
<div id="instructors">
<div class="instructor">
<div class="info-container">
<h3>Jason Hong</h3>
<img src="http://www.patrickcarrington.com/images/headshot2.jpg" alt="Patrick Carrington" />
<a href="http://www.patrickcarrington.com/" target="_blank">
http://www.patrickcarrington.com/
</a>
</div>
<div class="bio-container">
<p>
I study accessibility, wearable technology, and build assistive technologies. As an accessibility and human-computer interaction researcher, I explore how technology can be used to understand human ability and support empowerment, independence, and improved quality of life. My research has focused on understanding user needs and designing technology systems that enhance and leverage the full potential of users with diverse abilities. While I spend a majority of my time on assistive technologies, I am also interested in web development, user experience, and physical computing.
</p>
</div>
</div>
<div class="instructor">
<div class="info-container">
<h3>Julian Ramos</h3>
<img src="https://www.andrew.cmu.edu/user/ingenia/img/profile-light.png" alt="Tianshi" />
<a href="https://www.andrew.cmu.edu/user/ingenia/" target="_blank">
https://www.andrew.cmu.edu/user/ingenia/
</a>
</div>
<div class="bio-container">
<p>
I'm a fifth year PhD student at Carnegie Mellon University - Human Computer Interaction Institute,
where I'm advised by Anind Dey and Mayank Goel. I work at the intersection of Human-computer Interaction,
Artificial Intelligence (AI) and Health. I create systems and methods with the goal of understanding
human behavior and improving people's wellbeing. Towards this goal, I have worked in projects on Stress,
Activity Recognition and interruptibility detection. I'm currently focused on the personalization
of health interventions using a combination of AI, wearables and a smartphone.I have also worked
on novel input interaction techniques like keyboard surface interaction and gestures detection
using a smartwatch.
</p>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment