From 1dcbb1d328016296c6aedeaf3002bc18b5f15a06 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Wed, 29 Jun 2016 12:38:04 +0100 Subject: [PATCH] YAML files for association, links, projects, recognition and skills --- _data/associations.yml | 12 +++++++ _data/links.yml | 5 +++ _data/projects.yml | 12 +++++++ _data/recognitions.yml | 15 ++++++++ _data/skills.yml | 12 +++++++ _layouts/resume.html | 82 ++++++++++++++---------------------------- 6 files changed, 83 insertions(+), 55 deletions(-) create mode 100644 _data/associations.yml create mode 100644 _data/links.yml create mode 100644 _data/projects.yml create mode 100644 _data/recognitions.yml create mode 100644 _data/skills.yml diff --git a/_data/associations.yml b/_data/associations.yml new file mode 100644 index 0000000..56562b8 --- /dev/null +++ b/_data/associations.yml @@ -0,0 +1,12 @@ +# Associations +- organisation: Beer for the World + role: Volunteer + year: 2008 — Present + summary: Organized fund drives and participated in fundraising events for the benefit of families in third world countries without proper access to malt beverages. + + +- organisation: Springfield Nuclear Workers Labor Union + role: Member in Good Standin + year: 1994 — Present + summary: Founding member of the local nuclear workers labor union. + diff --git a/_data/links.yml b/_data/links.yml new file mode 100644 index 0000000..be7a86e --- /dev/null +++ b/_data/links.yml @@ -0,0 +1,5 @@ +# links +- url: "#" + description: Springfield Poker Club +- url: "#" + description: Springfield Donut Eater's User Group diff --git a/_data/projects.yml b/_data/projects.yml new file mode 100644 index 0000000..b0959c3 --- /dev/null +++ b/_data/projects.yml @@ -0,0 +1,12 @@ +# Projects +# donutfinder.io +- project: donutfinder.io + role: Founder & Primary Developer + duration: 2012 — Present + description: Donut Locator is an open source node/ember app that lets users find donuts within a defined radius from their home. + +#Springfield Donut Eater's User Group +- project: Springfield Donut Eater's User Group + role: Co-Founder & Organizer + duration: 2007 — Present + description: DEUG is a local monthly meetup in Springfield where we share all the latest tips and tricks for dat donut lifestyle. I organize the group, and typically eat most of the donuts. diff --git a/_data/recognitions.yml b/_data/recognitions.yml new file mode 100644 index 0000000..858ef21 --- /dev/null +++ b/_data/recognitions.yml @@ -0,0 +1,15 @@ +# Recognitions +- award: Outstanding Achievement + organisation: Springfield Nuclear Power Plant + year: 2010 + summary: Awarded for stopping a nuclear meltdown, even though I also started it. + +- award: Duff Beer Customer of the year + organisation: + year: 1997 — 2001, 2003, 2008 — 2012 + summary: Honored by Duff Beer for being an outstanding customer several years straight. Qualifications included most beer consumed at a bar, most beer purchased, and most beer ralphed. + +- award: Moe's Patron of the Month + organisation: + year: 12/2001, 8/2004 + summary: Specifically this prestigious awarded twice for stopping a robber with my belly. diff --git a/_data/skills.yml b/_data/skills.yml new file mode 100644 index 0000000..d7f8fe7 --- /dev/null +++ b/_data/skills.yml @@ -0,0 +1,12 @@ +# Skills +# Donut design +- skill: Donut design + description: Sprinkle art, icing design, eclair management, taste testing, donut/coffee pairing research + +# Craft beer brewing +- skill: Craft beer brewing + description: Hops inspection, brew testing, distribution management, bottle label design, festival and event management + +# Family leadership +- skill: Family leadership + description: Bread winning, conflict resolution, couch inspection, TV longevity testing diff --git a/_layouts/resume.html b/_layouts/resume.html index 714ab02..5ec6577 100644 --- a/_layouts/resume.html +++ b/_layouts/resume.html @@ -48,7 +48,6 @@ {% for job in site.data.experience %} -

{{ job.company }}

{{ job.position }}{{ job.duration }}


@@ -83,23 +82,18 @@ {% if site.resume_section_projects %}
-

Projects

-
-

donutfinder.io

-

Founder & Primary Developer • 2012 — Present

-

Donut Locator is an open source node/ember app that lets users find donuts within a defined radius from their home.

+ {% for project in site.data.projects %} +
+

{{ project.project }}

+

{{ project.role }}{{ project.duration }}


+

{{ project.description }}

- -
-

Springfield Donut Eater's User Group

-

Co-Founder & Organizer • 2007 — Present

-

DEUG is a local monthly meetup in Springfield where we share all the latest tips and tricks for dat donut lifestyle. I organize the group, and typically eat most of the donuts.

-
- + {% endfor %} +
{% endif %} @@ -111,22 +105,13 @@

Skills

- + {% for skill in site.data.skills %}
-

Donut design

-

Sprinkle art, icing design, eclair management, taste testing, donut/coffee pairing research

+

{{ skill.skill }}

+

{{ skill.description }}

- -
-

Craft beer brewing

-

Hops inspection, brew testing, distribution management, bottle label design, festival and event management

-
- -
-

Family leadership

-

Bread winning, conflict resolution, couch inspection, TV longevity testing

-
- + {% endfor %} + {% endif %} @@ -138,24 +123,14 @@

Recognition

- + + {% for recognition in site.data.recognitions %}
-

Springfield Nuclear Power Plant

-

Outstanding Achievement • 2010

-

Awarded for stopping a nuclear meltdown, even though I also started it.

-
- -
-

Duff Beer Customer of the year

-

1997 — 2001, 2003, 2008 — 2012

-

Honored by Duff Beer for being an outstanding customer several years straight. Qualifications included most beer consumed at a bar, most beer purchased, and most beer ralphed.

-
- -
-

Moe's Patron of the Month

-

12/2001, 8/2004

-

Specifically this prestigious awarded twice for stopping a robber with my belly.

+

{{ recognition.award }}

+

{{ recognition.organisation }} • {{ recognition.year }}

+

{{ recognition.summary }}

+ {% endfor %} @@ -169,18 +144,14 @@

Associations

+ {% for association in site.data.associations %}
-

Beer for the World

-

Volunteer • 2008 — Present

-

Organized fund drives and participated in fundraising events for the benefit of families in third world countries without proper access to malt beverages.

+

{{ association.organisation }}

+

{{ association.role }} • {{ association.year }}

+

{{ association.summary }}

- -
-

Springfield Nuclear Workers Labor Union

-

Member in Good Standin • 1994 — Present

-

Founding member of the local nuclear workers labor union.

-
- + {% endfor %} + {% endif %} @@ -195,8 +166,9 @@