White Board: CMS Configuration

Describe and/or compare these WordPress Components:

  1. What is the difference between these content types: Post, a Page, a Comment, and a Link?
  2. What are the two types of Categories and why do we need them?
  3. Which content types create automatic menus?
  4. What is the difference between a Category and a Tag?
  5. What are nice URLs or permalinks and why do we need them?
  6. What is the difference between an image’s Title, Caption, Alt Text, and Description?

White Board: Security Case Study

Identify risks, problems, immediate actions, and long-term prevention solutions for the future based on the Cable TV website fiasco.

1. Risk/problem:

Immediate Action:
Long-term Prevention
2. Risk/problem:

Immediate Action:
Long-term Prevention:
3. Risk/problem:

Immediate Action:
Long-term Prevention:
4. Risk/problem:

Immediate Action:
Long-term Prevention:
5. Risk/problem:

Immediate Action:
Long-term Prevention:
6. Risk/problem:

Immediate Action:
Long-term Prevention:
7. Risk/problem:

Immediate Action:
Long-term Prevention:
8. Risk/problem:

Immediate Action:
Long-term Prevention:
9. Risk/problem:

Immediate Action:
Long-term Prevention:
10. Risk/problem:

Immediate Action:
Long-term Prevention:

Whiteboard: User Flow

Topic provided in the lecture:____________________________

  1. What are 3 or more questions you could ask the client?
    • 1.
    • 2.
    • 3.
  2. What are 3 or more questions you could ask that client’s customers?
    • 1.
    • 2.
    • 3.
  3. Diagram the flow from 1 entry point to goal:
  4. Name at least 2 primary audiences?
    • 1.
    • 2.
    • more…
  5. What are at least 3 long-tail search phrases that locate similar sites:
    • 1.
    • 2.
    • 3.
    • more…

Whiteboard: Launch Party

Extra Credit (3 points) | Name __________________________________

1. What was the most exciting thing you learned in this course?

2. Which activity made you feel the most creative?

If you have constructive feedback about the course, please use the Student Evaluation of Teaching (SET) form in your myosu.oregonstate.edu area.

White Board: Animation

1. Describe

Describe each of the following CSS animation elements:

  1. transition class
  2. transition duration
  3. @keyframe name
  4. @keyframe: durations
  5. transform: opacity
  6. transform: rotate
  7. transform: scale
  8. transform: X
  9. transform: Y

2. Write the code:

Fill in values for each transition and keyframe declarations shown in the diagram below.

Animation transforms and transitions.

White Board: Form Script

Between the comment marks, describe each major component of the contact form’s PHP script.

<!--                                                                                                                                                                     -->
$name = $_POST['firstlastname'];
$email = $_POST['emailaddress'];
$message = $_POST['message'];
$from = $_POST['firstlastname']; 
$to = 'someone@domain.com'; 
$subject = '[Resume;] inquiry';
$human = $_POST['human'];
<!--                                                                                                                                                                     -->
$headers .= "Reply-To: <{$_POST['emailaddress']}>";
<!--                                                                                                                                                                     -->
$body = "$name $email $web $phone $message\n";
 if ($_POST['submit']) {
    if ($name != '' && $email != '') {
<!--                                                                                                                                                                     -->
    if ($human == '4') {  
<!--                                                                                                                                                                     -->
 if (mail ($to, $subject, $body, $from)) { 
                echo '

Your message has been sent!

'; } else { echo '

Something went wrong. Please try again.

'; } } else if ($_POST['submit'] && $human != '4') { echo '

The form was cleared because you provided an incorrect Anti-Spam answer. Please try again.

'; } } else { echo '

Please fill in all required fields.

'; } }