Skip to content

Allegheny-Computer-Science-103-S2018/cs103-S2018-lab8-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cs103-S2018-lab8-starter

Designed for use with GitHub Classroom, this repository contains the starter for Laboratory 8 in Computer Science 103. Since the Travis builds for this repository will initially fail (as evidenced by a red ✗ appearing in the commit logs instead of a green ✔), the programmer is responsible for completing all of the steps needed to satisfy the requirements for the assignment, thus causing a ✔ to instead appear in the commit logs.

Introduction

This assignment requires a programmer to implement a static web site that features an image gallery that is fully described in the assignment sheet and inspired by Figure 6.40 in the textbook. Importantly, a student is fully responsible for designing, implementing, and testing this image gallery. With that said, you can learn more about the steps that you should take to implement the gallery by reviewing the assignment sheet. For instance, you will need to type the command man convert and man ls to learn how to use the convert and ls commands to manipulate the images in your gallery. As before, this assignment requires you to run a web server to provide local access to the static web site, specifically loading the default document, and then inspecting and fully understanding the contents of the image gallery. Finally, you will continue to practice using the HTMLHint static analysis code tool that can check HTML files for potential errors.

The programmer is also responsible for writing a reflection, stored in the file writing/reflection.md, that responds to the questions in the assignment sheet and explains the challenges that you faced and the solutions you developed. Please note that this is also a Markdown file that must adhere to the standards described in the Markdown Syntax Guide. Remember, you can preview the contents of a comitted Markdown file by clicking on the name of the file in your GitHub repository. Finally, don't forget that your writing/reflection.md file and the file mentioned in the previous paragraph should both adhere to the Markdown standards established by the Markdown linting tool and the writing standards set by the Proselint tool.

Please note that this repository does not provide any of the required HTML or CSS source code. Instead, you should provide all of the needed directories and files. Remember, you can use the mkdir command to make a directory in your GitHub repository. If you have not used this command before, then you can learn more about it by running the command man mkdir in your terminal window. Briefly, the main checks that GatorGrader performs are for the existence of certain files (e.g., the screenshot that shows your final web site). More details about the GatorGrader checks are included later in this document and in the assignment sheet.

When you use the git commit command to transfer your source code to your GitHub repository, Travis CI will initialize a build of your assignment, checking to see if it meets all of the requirements. If both your source code and writing meet all of the established requirements, then you will see a green ✔ in the listing of commits in GitHub. If your submission does not meet the requirements, a red ✗ will appear instead. The instructor will reduce a programmer's grade for this assignment if the red ✗ appears on the last commit in GitHub immediately before the assignment's due date.

A carefully formatted assignment sheet for this project provides more details about the steps that a computer scientist should take to complete this assignment. You can view this assignment sheet by visiting the listing of the laboratories on the course web site. Remember, it is critically important that you review and understand the wireframe of the image gallery that you are tasked with completing for this assignment.

Learning

If you have not done so already, please read all of the relevant GitHub Guides that explain how to use many of the features that GitHub provides. In particular, please make sure that you have read the following GitHub guides: Mastering Markdown, Hello World, and Documenting Your Projects on GitHub. Each of these guides will help you to understand how to use both GitHub and GitHub Classroom. Finally, to learn more about how to include emojis in an HTML file, please read the documentation for the Emoji CSS library.

To do well on this assignment, you should also review Chapters 1 through 5 of the course textbook, additionally paying close attention to Sections 6.1 through 6.4 and Figure 6.40. Please see the course instructor or one of the teaching assistants or tutors if you have questions about any of these reading assignments.

Commands

To get started in using the GatorGrader tool, you can change into the directory for this assignment and type the command ./gatorgrader.sh --start in your terminal. Now, if you want to perform all of the checks that will automatically evaluate your assignment, you can type the command ./gatorgrader.sh --check. Please note that the GatorGrader tool also runs the htmlhint src/www/index.html command to "lint" your HTML file. If this HTML file does not already exist, then the htmlhint program will not produce any errors and simply indicate that it scanned zero files.

Running this command will produce a lot of output that you should carefully inspect. If the last line of the output indicates that GatorGrader judges that there are no mistakes in the assignment, then this means that your source code and writing are passing all of the automated checks. However, if the last line of the output indicates that there are mistakes, then you will need to understand what they are and then try to fix them.

If the course instructor publishes a new version of GatorGrader and asks you to access it, then you need change into the tool's directory by typing cd gatorgrader. Then, you can type the command git pull to download the new source code for the GatorGrader tool. If this command completes successfully, then you can return to the main directory for this laboratory assignment by typing cd .. and then continuing your work.

Checking

In addition to making the checks that were previously mentioned in the introduction to this document, your final submission must meet the following requirements. Specifically, GatorGrader will check for the existence of the reflection.md file in the writing/ directory and, respectively, the existence of index.html in the src/www/ directory, site.css in the src/www/css/ directory, and screenshot.png in the images/ directory.

Updates

If the course instructor updates the provided material for this assignment and you would like to receive these updates, then you can type this command in the main directory for this assignment:

./gatorgrader.sh --update git@github.com:Allegheny-Computer-Science-103-S2018/cs103-S2018-lab8-starter.git

You should only need to type this command once; typing the command additional times may yield an error message but will not negatively influence the state of your repository. Now, you are ready to download the updates provided by the course instructor by typing:

./gatorgrader.sh --download

This second command can be run whenever the course instructor needs to provide you with new source code for this assignment. However, please note that, if you have edited the files that the course instructor updated, running the previous command may lead to Git merge conflicts. If this happens, you may need to manually resolve them with the help of the instructor or a teaching assistant.

Travis

This assignment uses Travis CI to automatically run the checking programs every time you commit to your GitHub repository. The checking will start as soon as you have accepted the assignment, thus creating your own private repository, and the course instructor enables Travis for it. If you are using Travis for the first time, you will need to authorize Travis CI to access the private repositories that you created on GitHub.

Requirements

The GatorGrader software that supports the checking of this assignment was developed for the following software and versions:

  • mdl 0.4.0
  • proselint 0.7.0
  • python 3.5.2

Problems

If you have found a problem with this assignment's provided source code, then you can go to the Computer Science 103 Lab 8 Starter repository and create an issue by clicking the "Issues" tab and then clicking the green "New Issue" button. If you have found a problem with the GatorGrader tool and the way that it checks you assignment, then you can follow the aforementioned steps to create an issue in its repository. To ensure that your issue is properly resolved, please provide as many details as is possible about the problem that you experienced. If you discover a problem with the laboratory assignment sheet, then please raise an issue in the cs103-S2018-sheets repository and mention this assignment.

Students who find, and use the appropriate GitHub issue tracker to correctly document, a mistake in any aspect of this laboratory assignment will receive free laptop stickers and extra credit towards their grade for it.

Assistance

If you are having trouble completing any part of this project, then please talk with either the course instructor or a teaching assistant during the laboratory session. Alternatively, you may ask questions in the Slack team for this course. Finally, you can schedule a meeting during the course instructor's office hours.

About

Starter for Laboratory 8 in Computer Science 103 Spring 2018

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages