A senior software engineer with a PhD degree in Computer Science from USC. Blends research experience in Software Engineering field with diverse practical training in the software industries of Vietnam, S.Korea and U.S. to offer solid skills in software design and development. Experiences include:
This document explains the RSS feed implementation for your Jekyll academic website.
_posts/ directory_data/updates.yml_data/publications.ymlhttps://lemduc.github.io/feed.xml
feed.xml_posts/_data/updates.yml_data/publications.ymlEdit _data/updates.yml:
- title: "New Publication Accepted"
content: "Our paper has been accepted at ICSA 2024."
date: 2024-01-15
type: "publication"
link: "https://example.com/paper"
Run the helper script to add updates programmatically:
python update_rss.py
Or use the functions directly:
from update_rss import add_update, add_publication
# Add an update
add_update(
title="New Research Collaboration",
content="Started working with USC on architectural decay research.",
update_type="research"
)
# Add a publication
add_publication(
title="Architectural Decay in Software Systems",
authors="Duc Minh Le, et al.",
venue="ICSA 2024",
date="2024-01-01",
pdf_link="https://example.com/paper.pdf"
)
Create new posts in _posts/ directory:
---
layout: post
title: "Your Post Title"
date: 2024-01-15 10:00:00 -0500
categories: [blog, research]
---
Your post content here...
_config.yml:feed:
path: feed.xml
The RSS feed link is automatically included in the HTML head:
<link rel="alternate" type="application/rss+xml"
title="Duc Minh Le, PhD - RSS Feed"
href="https://lemduc.github.io/feed.xml">
RSS feed button added to header with proper styling.
https://lemduc.github.io/feed.xmlConsider adding feed analytics to track:
Popular services:
_site/feed.xml after buildingConsider adding:
Note: This RSS feed will automatically update whenever you build and deploy your Jekyll site to GitHub Pages.