Skip to content

Commit

Permalink
test_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
init committed Nov 18, 2024
1 parent ca00fa3 commit bf04f4b
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _includes/selected_papers.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<div class="publications">
<h2>selected publications</h2>
<h2>publications</h2>
{% bibliography -f papers -q @*[selected=true]* %}
</div>
6 changes: 3 additions & 3 deletions _pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ profile:
image_cicular: false # crops the image to make it circular

news: true # includes a list of news items
social: false # includes social icons at the bottom of the page
social: false # includes social icons at the bottom of the selected_papers: true


---

[\[Google Scholar\]](https://scholar.google.com/citations?user=vkm0OSoAAAAJ&hl=en) [\[Download CV\]](https://drive.google.com/file/d/1GPf-75I7dchSuVe8-0HYK-kmRek1Rr6t/view?usp=sharing)

I’m currently a Ph.D. student in Electrical Engineering at Yonsei University advised by [Prof. Seung Ah Lee](https://sites.google.com/oisl.me/oisl/) with my research centered on computational optics and imaging. During my Ph.D. studies, I had the opportunity to work with [Prof. Roarke Horstmeyer](http://horstmeyer.pratt.duke.edu/) in the Biomedical Engineering department at Duke University. I am a recipient of the Silver Prize at the [28th Samsung Humantech Paper Awards](https://humantech.samsung.com/saitext/index.jsp) and Graduate Research Fellowships from [NRF](https://www.nrf.re.kr/eng/index) and [MOHW](https://www.mohw.go.kr/eng/index.jsp).
I’m currently a Ph.D. student in Electrical Engineering at Yonsei University advised by [Prof. Seung Ah Lee](https://sites.google.com/oisl.me/oisl/) with my research centered on computational optics and imaging. During my Ph.D. studies, I had the opportunity to be mentored by [Prof. Roarke Horstmeyer](http://horstmeyer.pratt.duke.edu/) in the Biomedical Engineering department at Duke University. I've been honored to receive the Silver Prize at the [28th Samsung Humantech Paper Awards](https://humantech.samsung.com/saitext/index.jsp) and Graduate Research Fellowships from the [NRF](https://www.nrf.re.kr/eng/index) and [MOHW](https://www.mohw.go.kr/eng/index.jsp).

My research interests are broadly in computational optics and imaging, with a particular emphasis on the co-design the optical hardware and image processing software aiming to create advanced imaging system for real-world applications. I have extensive experience in mask-based lensless imaging, Fourier ptychography, and in-vivo imaging using speckle dynamics. I enjoy chats and collaborative works with individuals who share a passion for their work :)
My research interests lie broadly in computational optics and imaging, with a particular emphasis on co-designing optical hardware and image processing software aiming to create advanced imaging systems for real-world applications. I have extensive experience in mask-based lensless imaging, Fourier ptychography, and in-vivo imaging using speckle dynamics. I enjoy chats and collaborative works with individuals who share a passion for their work :)

31 changes: 31 additions & 0 deletions news.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

<div class="news">
<h2>news</h2>
{% if site.news != blank -%}
{%- assign news_size = site.news | size -%}
<div class="table-responsive" {% if site.news_scrollable and news_size > 3 %}style="max-height: 10vw"{% endif %}>
<table class="table table-sm table-borderless">
{%- assign news = site.news | reverse -%}
{% if site.news_limit %}
{% assign news_limit = site.news_limit %}
{% else %}
{% assign news_limit = news_size %}
{% endif %}
{% for item in news limit: news_limit %}
<tr>
<th scope="row">{{ item.date | date: "%b %-d, %Y" }}</th>
<td>
{% if item.inline -%}
{{ item.content | remove: '<p>' | remove: '</p>' | emojify }}
{%- else -%}
<a class="news-title" href="{{ item.url | relative_url }}">{{ item.title }}</a>
{%- endif %}
</td>
</tr>
{%- endfor %}
</table>
</div>
{%- else -%}
<p>No news so far...</p>
{%- endif %}
</div>

0 comments on commit bf04f4b

Please sign in to comment.