diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..45c1505 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +_site +.sass-cache +.jekyll-metadata diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..bb5cfc8 --- /dev/null +++ b/Gemfile @@ -0,0 +1,24 @@ +source "https://rubygems.org" +ruby RUBY_VERSION + +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +# gem "jekyll", "3.2.1" + +# This is the default theme for new Jekyll sites. You may change this to anything you like. +# gem "minima" + +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +gem "github-pages", group: :jekyll_plugins + +# If you have any plugins, put them here! +# group :jekyll_plugins do +# gem "jekyll-github-metadata", "~> 1.0" +# end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..2134928 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,143 @@ +GEM + remote: https://rubygems.org/ + specs: + activesupport (4.2.7) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) + addressable (2.4.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.10.0) + colorator (1.1.0) + ethon (0.9.1) + ffi (>= 1.3.0) + execjs (2.7.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) + ffi (1.9.14) + forwardable-extended (2.6.0) + gemoji (2.1.0) + github-pages (98) + activesupport (= 4.2.7) + github-pages-health-check (= 1.2.0) + jekyll (= 3.2.1) + jekyll-coffeescript (= 1.0.1) + jekyll-feed (= 0.5.1) + jekyll-gist (= 1.4.0) + jekyll-github-metadata (= 2.1.1) + jekyll-mentions (= 1.2.0) + jekyll-paginate (= 1.1.0) + jekyll-redirect-from (= 0.11.0) + jekyll-sass-converter (= 1.3.0) + jekyll-seo-tag (= 2.0.0) + jekyll-sitemap (= 0.10.0) + jekyll-swiss (= 0.4.0) + jemoji (= 0.7.0) + kramdown (= 1.11.1) + liquid (= 3.0.6) + listen (= 3.0.6) + mercenary (~> 0.3) + minima (= 1.2.0) + rouge (= 1.11.1) + terminal-table (~> 1.4) + github-pages-health-check (1.2.0) + addressable (~> 2.3) + net-dns (~> 0.8) + octokit (~> 4.0) + public_suffix (~> 1.4) + typhoeus (~> 0.7) + html-pipeline (2.4.2) + activesupport (>= 2) + nokogiri (>= 1.4) + i18n (0.7.0) + jekyll (3.2.1) + colorator (~> 1.0) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 1.1) + kramdown (~> 1.3) + liquid (~> 3.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (~> 1.7) + safe_yaml (~> 1.0) + jekyll-coffeescript (1.0.1) + coffee-script (~> 2.2) + jekyll-feed (0.5.1) + jekyll-gist (1.4.0) + octokit (~> 4.2) + jekyll-github-metadata (2.1.1) + jekyll (~> 3.1) + octokit (~> 4.0) + jekyll-mentions (1.2.0) + activesupport (~> 4.0) + html-pipeline (~> 2.3) + jekyll (~> 3.0) + jekyll-paginate (1.1.0) + jekyll-redirect-from (0.11.0) + jekyll (>= 2.0) + jekyll-sass-converter (1.3.0) + sass (~> 3.2) + jekyll-seo-tag (2.0.0) + jekyll (~> 3.1) + jekyll-sitemap (0.10.0) + jekyll-swiss (0.4.0) + jekyll-watch (1.5.0) + listen (~> 3.0, < 3.1) + jemoji (0.7.0) + activesupport (~> 4.0) + gemoji (~> 2.0) + html-pipeline (~> 2.2) + jekyll (>= 3.0) + json (1.8.3) + kramdown (1.11.1) + liquid (3.0.6) + listen (3.0.6) + rb-fsevent (>= 0.9.3) + rb-inotify (>= 0.9.7) + mercenary (0.3.6) + mini_portile2 (2.1.0) + minima (1.2.0) + minitest (5.9.1) + multipart-post (2.0.0) + net-dns (0.8.0) + nokogiri (1.6.8.1) + mini_portile2 (~> 2.1.0) + octokit (4.3.0) + sawyer (~> 0.7.0, >= 0.5.3) + pathutil (0.14.0) + forwardable-extended (~> 2.6) + public_suffix (1.5.3) + rb-fsevent (0.9.7) + rb-inotify (0.9.7) + ffi (>= 0.5.0) + rouge (1.11.1) + safe_yaml (1.0.4) + sass (3.4.22) + sawyer (0.7.0) + addressable (>= 2.3.5, < 2.5) + faraday (~> 0.8, < 0.10) + terminal-table (1.7.3) + unicode-display_width (~> 1.1.1) + thread_safe (0.3.5) + typhoeus (0.8.0) + ethon (>= 0.8.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) + unicode-display_width (1.1.1) + +PLATFORMS + ruby + +DEPENDENCIES + github-pages + minima + +RUBY VERSION + ruby 2.3.1p112 + +BUNDLED WITH + 1.13.6 diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..6b7e2d1 --- /dev/null +++ b/_config.yml @@ -0,0 +1,26 @@ +# Welcome to Jekyll! +# +# This config file is meant for settings that affect your whole blog, values +# which you are expected to set up once and rarely edit after that. If you find +# yourself editing these this file very often, consider using Jekyll's data files +# feature for the data you need to update frequently. +# +# For technical reasons, this file is *NOT* reloaded automatically when you use +# 'jekyll serve'. If you change this file, please restart the server process. + +# Site settings +# These are used to personalize your new site. If you look in the HTML files, +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. +# You can create any custom variable you would like, and they will be accessible +# in the templates via {{ site.myvariable }}. +title: Alex Lende +email: ajlende@gmail.com +description: > # this means to ignore newlines until "baseurl:" + The portfolio for Alex Lende. +baseurl: "" # the subpath of your site, e.g. /blog +url: "" # the base hostname & protocol for your site +twitter_username: ajlende +github_username: ajlende + +# Build settings +markdown: kramdown diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..0c0e77a --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,29 @@ + diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..5e4f998 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,21 @@ + diff --git a/_includes/title.html b/_includes/title.html new file mode 100644 index 0000000..5151915 --- /dev/null +++ b/_includes/title.html @@ -0,0 +1,21 @@ +
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..c74ba3c --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,32 @@ + + + + + + +Iowa State University has taught me skills in the field of software engineering, computer science, and computer engineering. I have also learned valuable leadership skills through classes and involvement on campus.
-In general I think poorly of the choices that I made to fulfill my general education requirements, but I also think that there was a lacking in the selection of classes offered to fulfill the genereal education requirement in software engineering.
- -In the short term, my goals are to work with bleeding edge technologies to build software that makes people's lives easier and makes technology more accessable to everyone. In the long term I would like to continue to learn as much as I can both in industry as well as going back to grad school after I have some more experience and a better idea of what I am interested in studying. Unfortunately, very little of the general education requirement has been in line with the goals I have.
- -One of the biggest thing that my general education requirements helped with is getting a better hold on diversity—what diversity means and how to better work with diverse groups of people. My Leadership in a Diverse Society class was one of my favorite classes that I took in the past four years because it didn't just require you to memorize the history of oppression of some specific group of people, or memorize vocabulary for religous terms around the world, or memorize the names of important people in the field of psychology—it gave real-world applications of diversity in a leadership environment and taught useful skills that I have used to be a better leader in both school and professionally.
- -I have used skills from my leadership class to lead teams that I have been on for class projects. Anywhere where there is any sort of group work in a class, I tend to fall into a group leader role, and I think that skills learned in Leadership in a Diverse Socity have helped me fall into that position more naturally. The diversity aspect has helped me understand more how to account for everyone's ideas within a group to make the group more efficeive as a whole.
-In all, I think that the general education system at Iowa State University can be improved significantly by adding a larger variety of classes to the accepted list of Arts and Humanities or Social Sciences lists. The push for having easier electives that you just need to get out of the way has been a push in the wrong direction. General education electives should be actively be pushed to encourage real-world applications of topics learned rather than history, memorization, and vocabulary as they are today. This doesn't mean that no amount of history, memorization, or vocabulary should exist in courses today, but there should also be a connection with application that I don't think that I got in many of my general education courses.
-Iowa State University has taught me skills in the field of software engineering, computer science, and computer engineering. I have also learned valuable leadership skills through classes and involvement on campus.
+In general I think poorly of the choices that I made to fulfill my general education requirements, but I also think that there was a lacking in the selection of classes offered to fulfill the genereal education requirement in software engineering.
+ +In the short term, my goals are to work with bleeding edge technologies to build software that makes people's lives easier and makes technology more accessable to everyone. In the long term I would like to continue to learn as much as I can both in industry as well as going back to grad school after I have some more experience and a better idea of what I am interested in studying. Unfortunately, very little of the general education requirement has been in line with the goals I have.
+ +One of the biggest thing that my general education requirements helped with is getting a better hold on diversity—what diversity means and how to better work with diverse groups of people. My Leadership in a Diverse Society class was one of my favorite classes that I took in the past four years because it didn't just require you to memorize the history of oppression of some specific group of people, or memorize vocabulary for religous terms around the world, or memorize the names of important people in the field of psychology—it gave real-world applications of diversity in a leadership environment and taught useful skills that I have used to be a better leader in both school and professionally.
+ +I have used skills from my leadership class to lead teams that I have been on for class projects. Anywhere where there is any sort of group work in a class, I tend to fall into a group leader role, and I think that skills learned in Leadership in a Diverse Socity have helped me fall into that position more naturally. The diversity aspect has helped me understand more how to account for everyone's ideas within a group to make the group more efficeive as a whole.
+In all, I think that the general education system at Iowa State University can be improved significantly by adding a larger variety of classes to the accepted list of Arts and Humanities or Social Sciences lists. The push for having easier electives that you just need to get out of the way has been a push in the wrong direction. General education electives should be actively be pushed to encourage real-world applications of topics learned rather than history, memorization, and vocabulary as they are today. This doesn't mean that no amount of history, memorization, or vocabulary should exist in courses today, but there should also be a connection with application that I don't think that I got in many of my general education courses.
+