gitextract_d86l0a0j/ ├── .gitignore ├── 404.md ├── LICENSE ├── README.md ├── _config.yml ├── _data/ │ └── bio.json ├── _includes/ │ ├── bio-address.html │ ├── bio-awards-1.html │ ├── bio-awards-2.html │ ├── bio-education-1.html │ ├── bio-education-2.html │ ├── bio-interests-1.html │ ├── bio-network-links.html │ ├── bio-publications-1.html │ ├── bio-publications-2.html │ ├── bio-references-1.html │ ├── bio-skills-1.html │ ├── bio-volunteer-1.html │ ├── bio-volunteer-2.html │ ├── bio-work-1.html │ ├── bio-work-2.html │ ├── essay-card-1a.html │ ├── essay-card.html │ ├── essay-row.html │ ├── footer.html │ ├── head.html │ ├── header.html │ ├── home-network-links.html │ ├── menubar.html │ ├── project-card-1a.html │ ├── project-card.html │ ├── project-row.html │ ├── theme-bio-builtin-1.html │ ├── theme-bio-builtin-2.html │ ├── theme-essays-builtin-1.html │ ├── theme-essays-builtin-1a.html │ ├── theme-essays-builtin-2.html │ ├── theme-home-builtin-1.html │ ├── theme-home-builtin-2.html │ ├── theme-home-builtin-3.html │ ├── theme-projects-builtin-1.html │ ├── theme-projects-builtin-1a.html │ └── theme-projects-builtin-2.html ├── _layouts/ │ ├── bio.html │ ├── default.html │ ├── essay.html │ ├── essays.html │ ├── missingpage.html │ ├── project.html │ └── projects.html ├── bio/ │ └── index.html ├── css/ │ ├── print-customizations.scss │ ├── print-default.scss │ ├── rouge/ │ │ ├── base16.css │ │ ├── base16.dark.css │ │ ├── base16.light.css │ │ ├── base16.solarized.css │ │ ├── colorful.css │ │ ├── github.css │ │ ├── gruvbox.css │ │ ├── igorpro.css │ │ ├── molokai.css │ │ ├── monokai.css │ │ ├── thankful_eyes.css │ │ └── tulip.css │ ├── semantic-ui/ │ │ ├── components/ │ │ │ ├── accordion.css │ │ │ ├── accordion.js │ │ │ ├── ad.css │ │ │ ├── api.js │ │ │ ├── breadcrumb.css │ │ │ ├── button.css │ │ │ ├── card.css │ │ │ ├── checkbox.css │ │ │ ├── checkbox.js │ │ │ ├── comment.css │ │ │ ├── container.css │ │ │ ├── dimmer.css │ │ │ ├── dimmer.js │ │ │ ├── divider.css │ │ │ ├── dropdown.css │ │ │ ├── dropdown.js │ │ │ ├── embed.css │ │ │ ├── embed.js │ │ │ ├── feed.css │ │ │ ├── flag.css │ │ │ ├── form.css │ │ │ ├── form.js │ │ │ ├── grid.css │ │ │ ├── header.css │ │ │ ├── icon.css │ │ │ ├── image.css │ │ │ ├── input.css │ │ │ ├── item.css │ │ │ ├── label.css │ │ │ ├── list.css │ │ │ ├── loader.css │ │ │ ├── menu.css │ │ │ ├── message.css │ │ │ ├── modal.css │ │ │ ├── modal.js │ │ │ ├── nag.css │ │ │ ├── nag.js │ │ │ ├── popup.css │ │ │ ├── popup.js │ │ │ ├── progress.css │ │ │ ├── progress.js │ │ │ ├── rail.css │ │ │ ├── rating.css │ │ │ ├── rating.js │ │ │ ├── reset.css │ │ │ ├── reveal.css │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── segment.css │ │ │ ├── shape.css │ │ │ ├── shape.js │ │ │ ├── sidebar.css │ │ │ ├── sidebar.js │ │ │ ├── site.css │ │ │ ├── site.js │ │ │ ├── state.js │ │ │ ├── statistic.css │ │ │ ├── step.css │ │ │ ├── sticky.css │ │ │ ├── sticky.js │ │ │ ├── tab.css │ │ │ ├── tab.js │ │ │ ├── table.css │ │ │ ├── transition.css │ │ │ ├── transition.js │ │ │ └── visibility.js │ │ ├── semantic.css │ │ └── semantic.js │ ├── stylesheet-customizations.scss │ └── stylesheet-default.scss ├── essays/ │ ├── 2015-08-26.md │ ├── 2015-09-08.md │ ├── 2016-02-06.md │ └── index.html ├── index.html ├── js/ │ ├── semantic-ui/ │ │ ├── accordion.js │ │ ├── api.js │ │ ├── checkbox.js │ │ ├── colorize.js │ │ ├── dimmer.js │ │ ├── dropdown.js │ │ ├── embed.js │ │ ├── form.js │ │ ├── modal.js │ │ ├── nag.js │ │ ├── popup.js │ │ ├── progress.js │ │ ├── rating.js │ │ ├── search.js │ │ ├── shape.js │ │ ├── sidebar.js │ │ ├── site.js │ │ ├── state.js │ │ ├── sticky.js │ │ ├── tab.js │ │ ├── transition.js │ │ ├── video.js │ │ ├── visibility.js │ │ └── visit.js │ └── semantic-ui.js └── projects/ ├── index.html ├── project-1.md ├── project-2.md └── project-3.md