From 00b918f88c2bf0f2c68132cb200ad4ed2f9926ad Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Wed, 27 Sep 2017 16:35:52 -0500 Subject: [PATCH 1/3] Update office number --- config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.toml b/config.toml index 2fbcc88..a791b1f 100644 --- a/config.toml +++ b/config.toml @@ -25,7 +25,7 @@ defaultContentLanguageInSubdir = false organization_url = "http://www.ece.illinois.edu/" avatar = "headshot.jpg" email = "pearson@illinois.edu" - address = "227 Coordinated Science Lab MC 228, 1308 W. Main St., Urbana, Illinois 61801" + address = "222 Coordinated Science Lab, 1308 W. Main St., Urbana, Illinois 61801" office_hours = "Face-to-face by appointment" phone = "" skype = "" From 24fda14e596381cdde6d7e6cdab9838c0a143fcd Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Wed, 27 Sep 2017 16:43:01 -0500 Subject: [PATCH 2/3] Update find to skip unreadable directories --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 381257c..b3c7942 100755 --- a/build.sh +++ b/build.sh @@ -5,7 +5,7 @@ set -eoux pipefail HUGO_ROOT=`pwd` ## Try to find cwpearson.github.io -IO_ROOT=`find $HOME -name cwpearson.github.io` +IO_ROOT=`find $HOME -type d ! -perm -a+r -prune -o -name cwpearson.github.io -print` if [[ -z "$IO_ROOT" ]]; then echo "Couldn't find cwpearson.github.io in $HOME" From c3fe0f55a402ed2d9b12f3c4060efc4d388f8f01 Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Wed, 27 Sep 2017 16:48:39 -0500 Subject: [PATCH 3/3] Add resume repository to projects --- content/project/resume.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 content/project/resume.md diff --git a/content/project/resume.md b/content/project/resume.md new file mode 100644 index 0000000..bb2eca5 --- /dev/null +++ b/content/project/resume.md @@ -0,0 +1,31 @@ ++++ +title = "Resume/CV" +date = 2017-09-27T16:45:32-05:00 +draft = false + +# Tags: can be used for filtering projects. +# Example: `tags = ["machine-learning", "deep-learning"]` +tags = ["personal"] + +# Project summary to display on homepage. +summary = "Generate PDF, docx, html, and txt resume/cv from a single markdown source." + +# Optional image to display on homepage. +image_preview = "" + +# Optional external URL for project (replaces project detail page). +external_link = "https://github.com/cwpearson/resume" + +# Does the project detail page use math formatting? +math = false + +# Does the project detail page use source code highlighting? +highlight = false + +# Featured image +# Place your image in the `static/img/` folder and reference its filename below, e.g. `image = "example.jpg"`. +[header] +image = "" +caption = "" + ++++