Skip to content

Commit

Permalink
update profile
Browse files Browse the repository at this point in the history
  • Loading branch information
tkhang1999 committed Oct 2, 2023
1 parent de30aaf commit 5c9d7dd
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 62 deletions.
15 changes: 9 additions & 6 deletions src/components/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ const About = () => {
<div>
<h2 className="about__subtitle">People call me Khang</h2>
<p className="about__text">
My name is Khang Le and I am currently working as a software
engineer with great focus in developing full-stack applications and
exploring new technologies. I graduated from Nanyang Technological
University with a Bachelor of Engineering in Computer Science with
Honours (Highest Distinction). In my free time, I enjoy cooking,
jogging, and playing table tennis and badminton.
My name is Khang Le and I am currently a Master's (Thesis) student
at Simon Fraser University (SFU) with a research interest in
software testing and verification.
<br />
<br />
Previously, I graduated from Nanyang Technological University (NTU)
with a Bachelor degree in Computer Science with Honours (Highest
Distinction). In my free time, I enjoy cooking, jogging, and playing
table tennis and badminton.
</p>
</div>
</div>
Expand Down
53 changes: 7 additions & 46 deletions src/components/Projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,12 @@ const Projects = () => {
<div className="project__container bd-container">
<div>
<h3>Machine Learning for Food Review and Recommendation</h3>
<p>
Final Year Project supervised by Assoc. Prof. Hui Siu Cheung{" "}
<br />
<i>Jun 2020 - May 2021</i>
</p>
<i>Jun 2020 - May 2021</i>
</div>
<dl className="project__text">
<li>
Developed a website (Food Hunter) for food review and
recommendation using Django, PostgreSQL, and React
Developed a full-stack website for food review and recommendation
using Django, PostgreSQL, and React
</li>
<li>
Implemented different deep learning approaches to address the
Expand All @@ -36,51 +32,16 @@ const Projects = () => {
>
research paper
</a>{" "}
at International Student Conference on Artificial Intelligence (
<a className="external__link" href="https://stcai.ai/">
STCAI
</a>
) 2021
</li>
</dl>
</div>

<div className="project__container bd-container">
<div>
<h3>COVID19 Status Chatbot</h3>
<p>
Personal Project <br />
<i>May 2020</i>
</p>
</div>
<dl className="project__text">
<li>
Created an interactive{" "}
<a
className="external__link"
href="https://github.com/tkhang1999/COVID19-status-webhook"
>
chatbot
</a>{" "}
on multiple platforms to get real-time COVID-19 status globally or
in any country using Node.js, Dialogflow (Google Cloud), and
Heroku
</li>
<li>
Invited to be a guest speaker at a Google Developer Groups (GDG)
webinar to share about my chatbot development and learning
experiences on Google Cloud Platform
at International Student Conference on Artificial Intelligence
(STCAI) 2021
</li>
</dl>
</div>

<div className="project__container bd-container">
<div>
<h3>Undergraduate Research Experience on CAmpus (URECA)</h3>
<p>
Research Projects supervised by Assoc. Prof. Hui Siu Cheung <br />
<i>Aug 2018 - Jun 2019</i>
</p>
<h3>Undergraduate Research Experience on CAmpus (URECA) - NTU</h3>
<i>Aug 2018 - Jun 2019</i>
</div>
<dl className="project__text">
<li>
Expand Down
14 changes: 5 additions & 9 deletions src/components/Work.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const Work = () => {
</a>
</h3>
<p>
Analyst (Software Engineer) <br />
<i>Jul 2021 - Present</i>
Software Engineer <br />
<i>Jul 2021 - Aug 2023</i>
</p>
</div>
<dl className="work__text">
Expand All @@ -38,8 +38,7 @@ const Work = () => {
<li>
Enhance post-trade allocation flows with distributed processing,
automatic error resolution, and real-time missing allocation
report for more than 1,000 active clients across 50 markets
globally
report for 1,000+ active clients across 50 markets globally
</li>
</dl>
</div>
Expand Down Expand Up @@ -110,11 +109,8 @@ const Work = () => {
</h3>
<p>
Junior Engineer (Apprenticeship under{" "}
<a
className="external__link"
href="https://www.sginnovate.com/talentprogrammes"
>
SGInnovate Summation Programme
<a className="external__link" href="https://www.sginnovate.com/">
SGInnovate
</a>
) <br />
<i>May 2019 - Aug 2019</i>
Expand Down
2 changes: 1 addition & 1 deletion src/tests/Projects.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ describe("test Projects component", () => {
expect(wrapper.find("#projects").exists()).toBeTruthy();
expect(wrapper.find(".section-title").length).toEqual(1);
expect(wrapper.find(".project__list").length).toEqual(1);
expect(wrapper.find(".project__container").length).toEqual(3);
expect(wrapper.find(".project__container").length).toEqual(2);
});
});

0 comments on commit 5c9d7dd

Please sign in to comment.