ITEC 4610 - Project Development and Portfolio Defense

ITEC 3610 Speeches

ITEC 4610 Portfolio Presentations

Course Evaluation

Portfolio Presentations

Course Orientation and Resources

Projects

Group 1: Kennedy Fields (Team Leader). Oscar Gomez, Savannah Holloway, Christian Sainz

Client Organization Name: Stem Coalition
Development Website: https://web-projects.net/stem

Group 2: Megan Barnett, Tevor James, Ru Modi, Candice Rice (Team Leader)

Client Organization Name: Americans for Health and Human Capital, Inc.
Development Website: https://web-projects.net/AHHC

Group 3: Dara Butcher, Kayla Dennis (Team Leader), Zach Mosley, Brian Mullen

Client Organization Name: Arkansas Interfaith Power and Light
Development Website: https://web-projects.net/AIPL/

Group 4: Ryan Bailey, Jarrod Lubaton, Yana O'Neal (Team Leader), Jewell Washington, Gina Weston

Client Organization Name: Jacksonville Museum of Military History
Development Website: https://web-projects.net/jmmh

Group 5: Raymond Armon, Jazmine Carroll, Shane Johnson (Team Leader), Preston Schuterman

Client Organization Name: Praeclara Performing Arts
Development Website: https://web-projects.net/praeclara

Project Management

Project Schedule

Date Assignment Deliverables
8/25/2020 Assign projects to teams. Contact client and set up initial meeting Using AWS Cloud 9
Create directory structure and portfolio template
Publishing your portfolio to Github
Contact customers and establish a meeting date
Let instuctors know the meeting date
8/27/2020 Contact client and set up initial meeting Let instructors know the meeting date.
8/27/2020 Do an internet search of the project and client. Formulate questions for client meeting. Put the client questions in a Google document called "Client Meeting Questions" in the project folder.
8/27/2020 Conduct meeting with client. After the client meeting, consolidate your meeting notes in a Google document called "Client Meeting Notes" in the project folder.
9/1/2020 Develop a Scope Document for the project. Put your scope document into a Google document called "Scope Document" in the project folder.
9/8/2020 Obtain Approval of Scope Document Let instructor know the document has been approved
9/10/2020 Develop WBS, Estimates, Task Assignments Put your information in a Google sheet called "Work Breakdown Structure" in the project folder. When the instructor has approved the WBS, then create the WBS in Trello.com. Note: the Work Breakdown Structure is your internal document and is not shared with the client.
9/15/2020 Develop Client Communication Schedule and Change Management Form Put your Client Communication Schedule in a Google document called "Client Communication Schedule" in the project folder. Put your Change Management Form in a Google document called "Change Managment Form" in the project folder.
9/14/2020 11/03/2020
Work on Project Give a weekly verbal status to the instructor.
10/20/2020 Each team will do a usability test on the other team's projects.
11/03/2020 Project Presentations  
11/18/2020 Final Turnover of Project - Backup and Duplication  

Portfolio

Portfolio - Desired Outcomes

A key part of ITEC4610 is the capstone portfolio. The portfolio has two general goals:

  • Document application of core competencies learned through the IT Minor program
  • Demonstrate to potential employers the value you could offer as an employee with skills obtained through the IT Minor program

You will have two sites:

  • A well-formatted LinkedIn profile with a link to your portfolio
  • A portfolio of your work using one of the following techniques:

You can see an example of a portfolio at https://blbauer.github.io/portfolio/.

You can also see previous ITEC 4610 portfolios.

Portfolio - Grading Rubric (Total 100 Points)

Your portfolio will be a demonstration of your skills, your personality, and your career goals, so you can expect your portfolio to be different from those created by your classmates. At a minimum, however, all IT Minor portfolios should be delivered in a web-based digital format and demonstrate the following:

  • An Elevator Pitch that serves as a home page (5 points)
  • A current Resume in HTML format (5 points)
  • A current Resume in .DOC format (5 points)
  • A generic Cover Letter (5 points)
  • Writing examples (2 examples are required, each worth 5 points)
  • Web examples (2 examples are required, each worth 5 points)
  • Database examples (2 examples are required, each worth 5 points)
  • Programming examples (2 examples are required, each worth 5 points)
  • Soft Skills examples (2 examples are required, each worth 5 points)
  • A reflection on the capstone client project (20 points)
  • A well-formatted LinkedIn profile with a link to your portfolio (10 points)

You will present your completed portfolio on December 3.

Creating Your Portfolio

You will use AWS to develop your portfolio, but you will use Github host your portfolio

  1. You can read more about how Github works at https://guides.github.com/
  2. Create a Github account (use a professional username, such as your initials and last name. Use all lowercase.
  3. Add a repository called "portfolio". Use all lowercase. Be sure that "Public" and "Add a README file" are checked, then click "Create Repository". You should have a "README" file in your repository. Leave your github browser tab open.
  4. In the upper right tabs, click on "Settings".
  5. Scroll down ot "Github Pages". On the Source value, click the dropdown and select "master branch", then click "Save". It will take a minute or two before your portfolio is published. You should be able to see the portfolio at https://yourusername.github.io/portfolio
  6. On the top of the screen, locate "yourusername / portfolio, and click on "portfolio"
  7. Click on the green "Code" button. It should say: "Clone with HTTPS". Click the clipboard next the name of tye URL. The URL should look like "https://github.com/yourusername/portfolio.git"
  8. When you publish to github, it would be nice to establish the name and the email of the person posting uploading the data to the repository. In the "bash" tab at the bottom o the page, enter your name and email:
    • git config --global user.name "USER_NAME"
    • git config --global user.email EMAIL_ADDRESS
  9. Now enter the following command to clone copy your repository to AWS. You should now see a "portfolio" folder with a README file in it.
    • git clone https://github.com/yourusername/portfolio.git
  10. Now you will want to start your portfolio with by donwnloading a template. I have stored this template in a github repository for you to copy. Enter the following command. This will create a foldered called "portfoliotemplate" with all the necessary files.
    • git clone https://github.com/blbauer/portfoliotemplate.git
  11. Drag and drop all the the files in "portfoliotemplate" to "portfolio". "portfoliotemplate" should be empty. Delete "portfoliotemplate" folder
  12. Open "index.html" in the "portfolio" folder. Click the preview tab and you should see the homepage of the portfolio.

Publishing Your Portfolio to Github

  1. Make whatever changes you want to your portfolio files
  2. When you are ready to publish, enter the following in the bash tab. See Steps 4-9 https://docs.aws.amazon.com/cloud9/latest/user-guide/sample-github.html. In the bash tab, look to see if your default directory is the folder that you want to publish. In this case it it "portfolio". If you need to set your default directory, then enter"
    • cd portfolio
  3. Now enter the following commands
    • git status
    • git add --all
    • git status
    • git commit -m "Short Description about Changes"
    • git push
    • git status
  4. Check your "portfolio" repository in github (you may have to do a refresh). You should be able to see you portfolio at https://yourusername.github.io/portfolio
  5. Click here to send me your Github Portfolio URL (something like https://yourusername.github.io/portfolio

Using Github Gist to Display Your Code

  1. For more information, see https://docs.github.com/en/github/writing-on-github/creating-gists
  2. Sign-in to Github
  3. On the right-most icon (profile), click the dropdown and select "Your gists". At this time you might not have any gists.
  4. To add a new gist library, click the plus sign to the left of your profile ion and
  5. You will be prompted for the name of the library. The name of the library is also the name of the first member in the library. The names are in alphabetial order. I normally give he first member a name like #portfolio, which will name the gist "#profolio". Just add a short description.
  6. Now you want to add your first real member. Click the "Edit" button at the top, the "Add File" button at the bottom, then type in your member name (be sure to add a filetype), and paste in your code, then click "Update Secret Gist" to save your data
  7. To display your formated code, go to the top gist and copy the script tag value next to "Embed". Past the code in your portfolio where you want it to appear. To specify and member name within the gist, as the ?filename tag, so your script might look like: <script src="https://gist.github.com/blbauer/3fa83b3c4e39ef811b0dced4e6fe80d5.js?file=standard-html-document-template.html"></script>

Hide/Unhide Code or Images

Portfolio Schedule

Date Assigned Date
Due
Assignment
9/15/2020
9/22/2020 9/29/2020
9/29/2020 10/06/2020
10/06/2020 10/13/2020
  • Developing your Portolio - Writing and Soft Skills - Assignment
    • Writing samples (2 examples are required, each worth 5 points)
      • Selected pieces from ITEC 3610/3650 (soft skills and web techniques)
      • Selected blog entries
      • Status reports, client emails, and other writings from 4610
    • Soft Skills examples (2 examples are required, each worth 5 points) with detail explanations, such as:
      • MBTI
      • Selected activities and reflection
      • Problem Solving
      • Project Management
      • Presentation Skills / Google Slides
      • Writing Skills
10/13/2020 10/20/2020
  • Developing your Portolio - Technical Skills - Assignment
    • Web examples (2 examples are required, each worth 5 points) with detail explanations, such as:
      • Individual project
      • ITEC 3650 group project
      • HTML/CSS
      • Image Development/Manipulation
    • Programming examples (2 examples are required, each worth 5 points) with detail explanations, such as:
      • Javascript
      • Microsoft Access Forms and Reports
    • Database examples (2 examples are required, each worth 5 points) with detail explanations, such as:
      • Google Sheets final project
      • mySQL final project
      • Microsoft Access Database
10/20/2020 10/27/2020
11/05/2020 11/10/2020
  • (15 points) Develop a reflection on your capstone client project (approximately 1-2 pages). Include a description of the project and a discussion of your areas of responsibility and successes:
    • How did the team organize itself?
    • What was your individual role on the team?
    • Describe a difficult moment during the project and how you dealt with the situation?
    • What did you learn from the experience about working in teams?
    • What you would do differently if you had to do it all over again?
  • (5 points) Supporting Project materials, such as Project management plan, work samples (depending on the project, you might include web pages, databases, project documentation), and Video of final project presentation
11/10/2020 12/01/2020
  • (Worth a Final Letter Grade) Customize and Style of your Portfolio - Choose one of the following:
    • Heavily Style and Customize your Portfolio. You can add more color, style, images, and content. You can optionally use Bootstrap to make the site responsive
    • Create a Wordpress site and copy the content pages into Wordpress pages. You can still refer to the images and webpages in your Github site. Note: maintain your index.html so that the basic portfolio still works. Your HTML/CSS /Javascript examples should still function.
    • You can do nothing or very little to improve your site, and you will have a letter grade subtracted from your final grade.
    • No matter what you do, you will still have to present your portfolio on December 3.
12/01/2020 12/01/2020
  • Present your Portfolio to the class.
    • You will be limited to 1 minute for your elevator pitch and 4 minutes for your portfolio
    • Demonstrate your LinkedIn account and your portfolio
    • Discuss what considerations went into the design of the site
12/03/2020 12/03/2020
  • Attend ITEC 3610 Final Speeches

Portfolios

ITEC 4610 - Citrine
Student Type URL
Armon, Raymond
LinkedInhttps://www.linkedin.com/in/ray-a-101
Portfoliohttps://rkarmon99.github.io/Portfolio/
Bailey, Ryan
LinkedInhttps://www.linkedin.com/in/ryan-bailey-467672199
Portfoliohttps://rpbailey1.github.io/portfolio/
Barnett, Megan
LinkedInhttps://www.linkedin.com/in/megan-f-barnett
Portfoliohttps://meganfbarnett.github.io/portfolio/
Butcher, Dara
LinkedInhttps://www.linkedin.com/in/dara-butcher/
Portfoliohttps://daragrace.github.io/portfolio/
Carroll, Jazmine
LinkedInhttps://www.linkedin.com/in/jazminecarroll
Portfolio https://jxcarroll.github.io/portfolio/
Dennis, Kayla
LinkedInhttps://www.linkedin.com/in/kayla-dennis-76927b180/
Portfoliohttps://kaylagenedennis.github.io/portfolio/
Fields, Kennedy
LinkedInhttps://www.linkedin.com/in/kennedyfields05
Portfoliohttps://iamknfields.github.io/portfolio/
Gomez, Oscar
LinkedInhttps://www.linkedin.com/in/oscar-gomez501
Portfoliohttps://ojgomez1.github.io/portfolio/
Holloway, Savannah
LinkedInhttps://www.linkedin.com/in/savannah-lea-holloway/
Portfoliohttps://savvyhollo99.github.io/portfolio/
James, Trevor
LinkedInhttps://www.linkedin.com/in/trevor-james-profile/
Portfoliohttps://tljames22.github.io/Portfolio/
Johnson, Shane
LinkedInhttps://linkedin.com/in/shanemj
Portfoliohttps://shane8johnson.github.io/portfolio/
Lubaton, Jeremiah
LinkedInhttps://www.linkedin.com/in/jeremiah-lubaton-2a226117a/
Portfoliohttps://jclubaton99.github.io/portfolio/
Modi, Vruti
LinkedInhttps://www.linkedin.com/in/vruti-modi
Portfoliohttps://vsmodi.github.io/portfolio/
Mosley, Zachary
LinkedInhttps://www.linkedin.com/in/zachary-mosley-ent
Portfoliohttps://zdmosley.github.io/portfolio/
Mullen, Brian
LinkedInhttps://www.linkedin.com/in/brianmullen87/
Portfoliohttps://bcmullen.github.io/portfolio/
O'Neal, Ayanna
LinkedInhttps://www.linkedin.com/in/ayannaroneal/
Portfoliohttps://aroneal.github.io/portfolio/
Rice, Candice
LinkedInhttps://www.linkedin.com/in/thecandicerice
Portfoliohttps://cmrice1987.github.io/portfolio/
Sainz, Christian
LinkedInhttps://www.linkedin.com/in/christian-sainz/
Portfoliohttps://cisainz.github.io/portfolio/index.html
Schluterman, Preston
LinkedInhttps://www.linkedin.com/in/preston-schluterman/
Portfoliohttps://schluterman.github.io/portfolio/
Washington, Jewell
LinkedInhttps://www.linkedin.com/in/jewell-washington-a08234112/
Portfoliohttps://jewellwashington.github.io/Portfolio/
Weston, Gina A.
LinkedInhttps://www.linkedin.com/in/gina-weston/
Portfoliohttps://gina-weston.github.io/portfolio/

Final Presentations and Reflections

  • Elevator Pitch and Portfolio Demonstration will be on November 21
    • Project Team Peer Feedback - each student will complete a Peer Review Feedback Survey for the other team members.
    • You will be limited to 1 minute for your elevator pitch and 5 minutes for your portfolio
    • Demonstrate your LinkIn account and your portfolio
    • Discuss what considerations went into the design of the site
  • Course Evaluation - Each student should fill out a Course Evaluation
  • Portfolio URL - Each student should document the URL to their portfolio