Skip to content

Commit e56a73e

Browse files
committed
Initial commit
1 parent b0f8130 commit e56a73e

File tree

194 files changed

+13312
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+13312
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
.DS_Store

404.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: Page Not Found
3+
---
4+
<!DOCTYPE html>
5+
<html lang="en">
6+
<head>
7+
{%- include head.html -%}
8+
<style>
9+
h2 {
10+
font-feature-settings: "lnum";
11+
background-color: #ddd;
12+
width: 140px;
13+
height: 140px;
14+
border-radius: 100%;
15+
display: flex;
16+
justify-content: center;
17+
align-items: center
18+
}
19+
body {
20+
display: flex;
21+
justify-content: center;
22+
align-items: center;
23+
flex-direction: column;
24+
font-size: 20px;
25+
height: 80vh;
26+
}
27+
p {text-align: center; line-height: 2em;}
28+
</style>
29+
</head>
30+
<body>
31+
<h2>404</h2>
32+
<p>Page not found</p>
33+
</body>
34+
</html>

Gemfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# frozen_string_literal: true
2+
3+
source "https://rubygems.org"
4+
5+
gem "jekyll-remote-theme"
6+
gem 'plainwhite', '~> 0.13'
7+
gem 'jekyll-target-blank'
8+
gem "webrick", "~> 1.7"

Gemfile.lock

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.0)
5+
public_suffix (>= 2.0.2, < 5.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.1.10)
8+
em-websocket (0.5.3)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0)
11+
eventmachine (1.2.7)
12+
ffi (1.15.5)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.8.0)
15+
i18n (1.10.0)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.2.2)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 1.0)
22+
jekyll-sass-converter (~> 2.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.3)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (~> 4.0)
27+
mercenary (~> 0.4.0)
28+
pathutil (~> 0.9)
29+
rouge (~> 3.0)
30+
safe_yaml (~> 1.0)
31+
terminal-table (~> 2.0)
32+
jekyll-remote-theme (0.4.3)
33+
addressable (~> 2.0)
34+
jekyll (>= 3.5, < 5.0)
35+
jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0)
36+
rubyzip (>= 1.3.0, < 3.0)
37+
jekyll-sass-converter (2.2.0)
38+
sassc (> 2.0.1, < 3.0)
39+
jekyll-seo-tag (2.8.0)
40+
jekyll (>= 3.8, < 5.0)
41+
jekyll-target-blank (2.0.0)
42+
jekyll (>= 3.0, < 5.0)
43+
nokogiri (~> 1.10)
44+
jekyll-watch (2.2.1)
45+
listen (~> 3.0)
46+
kramdown (2.3.2)
47+
rexml
48+
kramdown-parser-gfm (1.1.0)
49+
kramdown (~> 2.0)
50+
liquid (4.0.3)
51+
listen (3.7.1)
52+
rb-fsevent (~> 0.10, >= 0.10.3)
53+
rb-inotify (~> 0.9, >= 0.9.10)
54+
mercenary (0.4.0)
55+
nokogiri (1.13.3-arm64-darwin)
56+
racc (~> 1.4)
57+
pathutil (0.16.2)
58+
forwardable-extended (~> 2.6)
59+
plainwhite (0.13)
60+
jekyll (>= 3.7.3)
61+
jekyll-seo-tag (>= 2.1.0)
62+
public_suffix (4.0.6)
63+
racc (1.6.0)
64+
rb-fsevent (0.11.1)
65+
rb-inotify (0.10.1)
66+
ffi (~> 1.0)
67+
rexml (3.2.5)
68+
rouge (3.28.0)
69+
rubyzip (2.3.2)
70+
safe_yaml (1.0.5)
71+
sassc (2.4.0)
72+
ffi (~> 1.9)
73+
terminal-table (2.0.0)
74+
unicode-display_width (~> 1.1, >= 1.1.1)
75+
unicode-display_width (1.8.0)
76+
webrick (1.7.0)
77+
78+
PLATFORMS
79+
arm64-darwin-21
80+
81+
DEPENDENCIES
82+
jekyll-remote-theme
83+
jekyll-target-blank
84+
plainwhite (~> 0.13)
85+
webrick (~> 1.7)
86+
87+
BUNDLED WITH
88+
2.3.10

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
# nguyenLisa.github.io
1+
![Portfolio](https://nguyenlisa.github.io/assets/portfolio.png)
2+
3+
Personal website of Lisa Nguyen Quang Do.
4+
5+
This site is hosted on Github Pages and uses the [plainwhite](https://rubygems.org/gems/plainwhite) jekyll theme.

_config.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
title: Lisa Nguyen Quang Do
2+
author: nguyenLisa
3+
4+
description: > # this means to ignore newlines until "show_exerpts:"
5+
Write an awesome description for your new site here. You can edit this
6+
line in _config.yml. It will appear in your document head meta (for
7+
Google search results) and in your feed.xml site description.
8+
show_excerpts: true # set to true to show excerpts on the homepage
9+
10+
plugins:
11+
- jekyll-remote-theme
12+
- jekyll-seo-tag
13+
- jekyll-target-blank
14+
remote_theme: samarsault/plainwhite-jekyll
15+
16+
# Minima date format
17+
# refer to http://shopify.github.io/liquid/filters/date/ if you want to customize this
18+
sass:
19+
sass_dir: _sass
20+
plainwhite:
21+
name: Lisa Nguyen Quang Do
22+
tagline: Software engineer
23+
date_format: "%b %-d, %Y"
24+
sitemap: true # set to true to generate sitemap.xml content
25+
search: true # set to true to enable searchbar
26+
dark_mode: true # set to true to add dark mode toggle
27+
portfolio_image: "assets/portfolio.png" # the path from the base directory of the site to the image to display (no / at the start)
28+
html_lang: "en" # set the lang attribute of the <html> tag for the pages. See here for a list of codes: https://www.w3schools.com/tags/ref_country_codes.asp
29+
condensed_mobile:
30+
#- home
31+
- page
32+
- post
33+
# generate social links in footer
34+
social_links:
35+
twitter: lisa_nqd
36+
github: nguyenLisa
37+
linkedIn: in/nguyenqdlisa
38+
39+
description: I am a senior software engineer at Google Zurich. I received my Ph.D. in 2019 from Paderborn University, and my M.Sc. in Computer Science in 2014 from EPFL. <br /> My research interests are scalable static code analysis, usable tooling, and secure software engineering. In particular, I explored the usability of static analysis tools, from the optimization of the analysis algorithms to the implementation of their frameworks to the usability of their interfaces.
40+
41+
# No dates in the file names.
42+
permalink: /:title.html

_data/distinctions.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
- name: "UPB doctoral dissertation award"
2+
date: "2020"
3+
organization: "Paderborn university"
4+
link: "https://www.uni-paderborn.de/fileadmin/neujahrsempfang/Neujahrsempfang2021_Preistraeger.pdf"
5+
categories: distinctions
6+
- name: "Zonta club Paderborn award"
7+
date: "2020"
8+
organization: "Zonta international"
9+
link: "https://www.uni-paderborn.de/fileadmin/neujahrsempfang/Neujahrsempfang2021_Preistraeger.pdf"
10+
categories: distinctions
11+
- name: "Doctoral thesis – summa cum laude"
12+
date: "2019"
13+
organization: "Paderborn university"
14+
link: ""
15+
categories: distinctions
16+
- name: "Invited young researcher - 7th Heidelberg laureate forum"
17+
date: "2019"
18+
organization: "Heidelberg laureate forum"
19+
link: "https://www.heidelberg-laureate-forum.org/young-researchers.html"
20+
categories: distinctions
21+
- name: "ACM SIGSOFT distinguished paper award"
22+
date: "2017"
23+
organization: "International symposium of software testing and analysis"
24+
link: "https://www.sigsoft.org/awards/distinguishedPaperAward.html"
25+
categories: distinctions
26+
- name: "Completion of the SciMento mentoring program"
27+
date: "2017"
28+
organization: "Mentoring Hessen"
29+
link: "https://www.mentoringhessen.de/en/"
30+
categories: distinctions
31+
- name: "First place – PLDI ACM student research competition"
32+
date: "2016"
33+
organization: "Programming language design and implementation"
34+
link: "https://src.acm.org/candidates/2017"
35+
categories: distinctions
36+
- name: "ISSS excellence award"
37+
date: "2014"
38+
organization: "Information security society Switzerland"
39+
link: "https://actu.epfl.ch/news/isss-excellence-award-2014-for-lisa-nguyen-quang-4/"
40+
categories: distinctions
41+
- name: "Finalist – Google Anita Borg scholarship"
42+
date: "2012"
43+
organization: "Google EMEA"
44+
link: ""
45+
categories: distinctions

_data/origami.yml

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
- name: "Talks"
2+
display_date: 2019
3+
categories: ["FMI"]
4+
contents: |
5+
- [Filmfestival Mathematik Informatik](https://www.karlstorkino.de/programm/between-the-folds/). Heidelberg. (2019)
6+
- name: "Exhibitions"
7+
display_date: 2014 - 2018
8+
categories: ["OD", "OUSA", "EMOZ", "CfC"]
9+
contents: |
10+
- [30th international origami convention](https://www.papierfalten.de/jahrestreffen.html). Erkner. (2018)
11+
- [Paper heroes](https://www.pgannon.com/apulseuncommon/2017/10/1/museum-show-paper-heroes-the-old-jaffa-museum-old-jaffa-israel). Tel Aviv. (2017)
12+
- [Convention for creators](https://www.origami-shop.com/en/convention-creators-what-convention-creators-xsl-2658_286_2347_2349.html). Lyon. (2017)
13+
- [Origami USA annual convention](https://origamiusa.org/convention2016). New York. (2016)
14+
- [28th international origami convention](https://www.papierfalten.de/jahrestreffen.html). Erkner. (2016)
15+
- [Star Wars origami exhibition](http://www.emoz.es/language/en/). Zaragoza. (2016)
16+
- [Ultimate Origami Convention](http://ooraa.free.fr/OldSite/LUO9-convention.html). Lyon. (2015)
17+
- [Model-making event](http://www.cen-montagnesdugiffre.fr/index.php?option=com_content&view=article&id=7&catid=8&Itemid=466). Samoëns. (2014)
18+
- name: "Contests"
19+
display_date: 2014 - 2016
20+
categories: ["OD", "MFPP", "JOAS"]
21+
contents: |
22+
- [Origami Deutschland creation contest](http://kalami-kalami.blogspot.com/2016/05/origami-deutschland-2016.html). **1st place**. (2016)
23+
- [Origami Deutschland creation contest](https://origamiusa.org/thefold/article/convention-report-origami-deutschland-2015-bonn). **2nd place**. (2015)
24+
- MFPP creation contest. (2015)
25+
- 8th JOAS origami model competition. **1st place**, **public's choice**. (2015)
26+
- [MFPP creation contest](http://mfpp-origami.fr/resultats-du-concours-de-pliage-alsace/). **1st place**, **audience award**. (2014)
27+
- name: "Creations"
28+
display_date: 2012 - 2019
29+
categories: ["diagrams", "CP"]
30+
link: "https://www.flickr.com/photos/134605846@N05"
31+
contents: |
32+
- Models with diagrams:
33+
- [Black nightshade](https://flic.kr/p/BiLHbj). Diagram in "Origami Deutschland 2016 convention book". (Nov 2015)
34+
- [Butterfly](https://flic.kr/p/CCjSBx). Diagram in "Origami Deutschland 2018 convention book". (Dec 2015)
35+
- [Four-leaf clover](https://flic.kr/p/vVt4EM). Diagram in "MFPP 2015 convention book". (Dec 2014)
36+
- [Goldfish](https://flic.kr/p/DpatwD). Diagram in "CDO 2018 convention book". (Dec 2017)
37+
- [Ivy leaf](https://flic.kr/p/vUNzpG). Diagram in "[Origami Deutschland 2015 convention book](http://www.papierfalten.de/2015_Bonn.html)" and in MFPP 2015 convention book". (May 2014)
38+
- [Jar Jar Binks head](https://flic.kr/p/AGHa4b). Diagram in "[The Fold](https://origamiusa.org/thefold/article/diagrams-jar-jar-binks-head)" 2016. (Nov 2015)
39+
- [Leaf chopstick holder](https://flic.kr/p/vT6FPY). Diagram in "[The origami collection 2015](https://origamiusa.org/publications/2015-origami-collection)" and in "[Origami Deutschland 2015 convention book](http://www.papierfalten.de/2015_Bonn.html)". (May 2014)
40+
- [Monkey mask](https://flic.kr/p/vCR8d9). Diagram in "The Paper" 2018. (Jul 2015)
41+
- [Oncidium](https://flic.kr/p/uYpGsb). Diagram in "Origami Deutschland 2016 convention book". (Oct 2014)
42+
- [ORI_Q swan](https://flic.kr/p/BBKgPL). Diagram in "[The Fold](https://origamiusa.org/thefold/article/diagrams-ori_q-swan)" 2016. (Nov 2015)
43+
- [Twin dolphins](https://flic.kr/p/vCRecy). Diagram in "[The Fold](https://origamiusa.org/thefold/article/diagrams-twin-dolphins)" 2016. (Apr 2015)
44+
- [Winged heart](https://flic.kr/p/vVsQ4i). Diagram in "The origami collection 2016". (May 2015)
45+
- [Yale-type cylinder lock key](https://flic.kr/p/vCRfH1). Diagram in "[The Fold](https://origamiusa.org/thefold/article/diagrams-yale-type-cylinder-lock-key)" 2017. (Jan 2015)
46+
- Models with crease patterns:
47+
- [Alsatian girl](https://flic.kr/p/vVpYbg). Diagram in "[Le pli #134](https://mfpp-origami.fr/en/publication/le-pli/lepli-134/)" 2014 and in "[The Fold](https://origamiusa.org/thefold/article/crease-pattern-young-alsatian-girl)" 2016. (Apr 2014)
48+
- [Mermaid](https://flic.kr/p/vVsRZT). Diagram in "[Le pli #138](http://mfpp-origami.fr/le-pli-n-138-2015/)" 2015. (Apr 2015)
49+
- Other models:
50+
- [13 tales](https://flic.kr/p/GmMTKi). (Apr 2016)
51+
- [2018!](https://flic.kr/p/J76RiM). (Jan 2018)
52+
- [Angelfish](https://flic.kr/p/CmmzAP). (Dec 2015)
53+
- [Ballerina](https://flic.kr/p/27ju1dF). (May 2018)
54+
- [Bride](https://flic.kr/p/vCRr7C). (Apr 2015)
55+
- [Brown bear](https://flic.kr/p/2gLabZw). (Jul 2019)
56+
- [Charon](https://flic.kr/p/uYonZw). (Dec 2012)
57+
- [Cheetah head](https://flic.kr/p/RTrbza). (Jan 2017)
58+
- [Chinese coin](https://flic.kr/p/vCYwv8). (Dec 2014)
59+
- [Cinderella](https://flic.kr/p/Cxzetr). (Jan 2016)
60+
- [Courting cranes](https://flic.kr/p/2gL3hCt). (Feb 2019)
61+
- [Deer head](https://flic.kr/p/U2QHh3). (Apr 2017)
62+
- [Doe head](https://flic.kr/p/SENp75). (Apr 2017)
63+
- [Four mice](https://flic.kr/p/GypGxk). (Apr 2016)
64+
- [Hop-o’-my-thumb](https://flic.kr/p/Fr3ZQU). (Mar 2016)
65+
- [Jar Jar Binks](https://flic.kr/p/BtkDzp). (Nov 2015)
66+
- [Lady](https://flic.kr/p/2877igX). (May 2018)
67+
- [Link](https://flic.kr/p/27nt423). (Jun 2018)
68+
- [Little red riding hood](https://flic.kr/p/DJQmoR). (Feb 2016)
69+
- [Lurking menace](https://flic.kr/p/GFUrHE). (May 2016)
70+
- [Magic mirror](https://flic.kr/p/FbdA9D). (Apr 2016)
71+
- [My little hero](https://flic.kr/p/XonQEx). (Aug 2017)
72+
- [Princess Zelda](https://flic.kr/p/28ML5yy). (Jun 2018)
73+
- [Quetzalcoatl](https://flic.kr/p/uYy8VZ). (Jul 2014)
74+
- [Sadako](https://flic.kr/p/WSrihN). (Aug 2017)
75+
- [Sun Wukong](https://flic.kr/p/uYrSRJ). (Jul 2015)
76+
- [The angel](https://flic.kr/p/E8hRr1). (Mar 2016)
77+
- [The beanstalk](https://flic.kr/p/G1spfs). (Apr 2016)
78+
- [The mermaid and the frog prince](https://flic.kr/p/DnGgvP). (Jan 2016)
79+
- [The pied piper of Hamelin](https://flic.kr/p/DvqE6U). (Jan 2016)
80+
- [The winged victory of Samothrace](https://flic.kr/p/vCMYnu). (May 2013)
81+
- [The yellow dwarf](https://flic.kr/p/FwH2jQ). (Apr 2016)
82+
- [Tinker bell](https://flic.kr/p/EstQbD). (Mar 2016)
83+
- [Two (thousand) cranes](https://flic.kr/p/Btwyu1). (May 2012)
84+
- [Wedding bouquet](https://flic.kr/p/DFamHE). (Feb 2016)
85+
- [Winged heart 2.0](https://flic.kr/p/BuRfmG). (Oct 2015)
86+

_data/service.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
- name: "Organizer / chair"
2+
display_date: 2017 - 2021
3+
categories: ["SOAP", "ISSTA", "ECOOP"]
4+
contents: |
5+
- [SOAP 2021](https://pldi21.sigplan.org/home/SOAP-2021), PC chair
6+
- [ISSTA & ECOOP 2021](https://conf.researchr.org/committee/ecoop-issta-2021/ecoop-issta-2021-organizing-committee), publicity chair
7+
- [ECOOP 2020](https://2020.ecoop.org/track/ecoop-2020-artifacts), artifact evaluation co-chair
8+
- [ECOOP 2019](https://2019.ecoop.org/track/ecoop-2019-Posters), posters chair
9+
- [ISSTA & ECOOP 2018](https://2018.ecoop.org/track/ecoop-issta-2018-posters), posters chair
10+
- [ECOOP 2017](https://2017.ecoop.org/track/ecoop-2017-Doctoral-Symposium), doctoral symposium co-chair
11+
- name: "PC member"
12+
display_date: 2016 - 2022
13+
categories: ["ICSE", "ISSTA", "ECOOP", "ASE", "OOPSLA", "ESEC/FSE"]
14+
contents: |
15+
- [ISSTA 2022](https://conf.researchr.org/track/issta-2022/issta-2022-doctoral-symposium), doctoral symposium
16+
- [ICSE 2022](https://conf.researchr.org/track/icse-2022/icse-2022-posters), posters track
17+
- [ISSTA & ECOOP 2021](https://conf.researchr.org/track/ecoop-issta-2021/ecoop-issta-2021-doctoral-symposium), doctoral symposium
18+
- [ISSTA 2021](https://conf.researchr.org/track/issta-2021/issta-2021-technical-papers), research track
19+
- [ASE 2020](https://conf.researchr.org/track/ase-2020/ase-2020-papers), research track
20+
- [ASE 2019](https://2019.ase-conferences.org/track/ase-2019-Demonstrations), demonstrations track
21+
- [ISSTA 2019](https://conf.researchr.org/track/issta-2019/issta-2019-Artifact-Evaluation-), artifact evaluation
22+
- [ECOOP 2019](https://2019.ecoop.org/track/ecoop-2019-artifacts), artifact evaluation
23+
- [ECOOP 2019](https://2019.ecoop.org/track/ecoop-2019-docsymp), doctoral symposium
24+
- [OOPSLA 2018](https://2018.splashcon.org/track/splash-2018-OOPSLA-Artifacts), artifact evaluation
25+
- [ISSTA 2018](https://conf.researchr.org/track/issta-2018/issta-2018-Artifacts), artifact evaluation
26+
- [ASE 2018](https://www.hni.uni-paderborn.de/swt/lehre/deca/), research track (sub-reviewer)
27+
- [OOPSLA 2017](https://2017.splashcon.org/track/splash-2017-OOPSLA-Artifacts), artifact evaluation
28+
- [ESEC/FSE 2017](http://esec-fse17.uni-paderborn.de/call_tooldemos.php), demonstrations track
29+
- [ECOOP 2017](https://2017.ecoop.org/track/ecoop-2017-Artifacts), artifact evaluation
30+
- [ESEC/FSE 2016](https://dl.acm.org/doi/proceedings/10.1145/2950290), research track (sub-reviewer)
31+
- name: "Journal reviewer"
32+
display_date: 2018 - 2019
33+
categories: ["TOSEM", "TSE", "JSS", "Programming"]
34+
contents: |
35+
- [Transactions on Software Engineering and Methodology 2019](https://dl.acm.org/journal/tosem)
36+
- [Transactions on Software Engineering 2019](https://www.computer.org/csdl/journal/ts)
37+
- [Journal of Systems and Software 2018](https://www.journals.elsevier.com/journal-of-systems-and-software)
38+
- [Programming 2018](https://programming-journal.org/)
39+
- name: "Student volunteer"
40+
display_date: 2016 - 2017
41+
categories: ["ICSE", "ECOOP"]
42+
contents: |
43+
- [ICSE 2017](https://icse2017.gatech.edu/)
44+
- [ECOOP 2016](https://2016.ecoop.org/home)
45+
- name: "Others"
46+
display_date: 2016 - 2020
47+
categories: ["panelist", "mentor"]
48+
contents: |
49+
- [ASE 2020](https://conf.researchr.org/details/ase-2020/ase-2020-social-networking-/4/PhD-Advice), panelist at the PhD advice panel
50+
- [Forum EPFL alumni mentoring program 2020](https://www.forum-epfl.ch/en/students/mentoring/), mentor
51+
- [ECOOP 2016 summer school](https://2016.ecoop.org/track/Summer+School), graduate mentor
52+

0 commit comments

Comments
 (0)