Designing solutions through programming - March 2 Lesson Notes: Difference between revisions

From Computer Science Wiki
(Created page with " # Watch this video and ensure your PHPStorm connection settings are correct. Pay attention to detail. https://youtu.be/mm1pnvjgxgU # Hello wonderful students. Today you wil...")
 
No edit summary
Line 1: Line 1:
__NOTOC__
<table cellspacing="10" style="width:100%;">
<tr>
<td style="width:50%; margin:0; margin-top:10px; margin-right:10px; border:1px solid #dfdfdf; padding:0 1em 1em 1em; background-color:#E6F9E6; align:right;vertical-align:top;">
==[[File:class_plan.png]] What are we going to learn today?==


# Watch this video and ensure your PHPStorm connection settings are correct. Pay attention to detail. https://youtu.be/mm1pnvjgxgU
# We will review our exam
# We will review our web application and get into the last bits to know and understand
</td>
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #dfdfdf; padding:0 1em 1em 1em; background-color:#E6F9E6; align:right;vertical-align:top;">


# Watch this video and ensure your PHPStorm connection settings are correct. Pay attention to detail. https://youtu.be/mm1pnvjgxgU
==[[file:homework.png]] What is our homework? ==
 
</td>
</tr>
<tr>
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #dfdfdf; padding:0 1em 1em 1em; background-color:lightyellow; align:right;vertical-align:top;" colspan="2">
 
==[[File:target.png]] How am I being assessed today? ==
 
# You will get a formative mark for your work today.  
 
</td>
 
</tr>
<tr>
 
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #dfdfdf; padding:0 1em 1em 1em; background-color:#FFF5FF; align:right;vertical-align:top;">
 
== [[File:ourstandards.png]] Standards we are covering today ==
* Apply your understanding of grid system and bootstrap
* Apply your understanding of forms to bootstrp
* [[Designing solutions through programming standards | Click here for all our standards]]
 
</td>


# Hello wonderful students. Today you will have two things to do. One easy (but annoying) and one kind of difficult.
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #dfdfdf; padding:0 1em 1em 1em; background-color:#FFF5FF; align:right;vertical-align:top;" colspan="2">


# Easy but annoying:  
== [[Image:computer1.png]] As a computer scientist, you have: ==
## you should have a project in PHP storm named login.
## the files in this project should EXACTLY like the files here:  https://github.com/bmackenty/login
## you can copy and paste them into your project
## Please pay careful attention to database_connect.php !!
## Please also make sure the tables we reference are the correct names
## ALWAYS TEST to make sure anything you change works.


# a little difficult:
* Confidence in dealing with complexity
## note the file user_edit.php.
* Persistence in working with difficult problems
## this file is where we can change a users email address.
* Tolerance for ambiguity
## however, we call a file named "update_user.php" but it doesn't exist.
* The ability to deal with open-ended problems
## you will need to create this file and use the following SQL syntax to update a record:
* The ability to communicate and work with others to achieve a common goal or solution


<syntaxhighlight lang="sql">
</td>
UPDATE users SET email = new_value_here WHERE id LIKE $user_id
</tr>
</syntaxhighlight>
<tr>
<td style="margin:0; margin-top:10px; margin-right:10px; border:1px solid #dfdfdf; padding:0 1em 1em 1em; background-color:lightgray; align:right;vertical-align:top;" colspan="2">


This is hard. Good luck.
== [[Image:credit.png]] Credits ==
* Icons used with tremendous gratitude by [http://www.freepik.com/ Freepik] from [http://www.flaticon.com/ flaticon]
</td>
</tr>
</table>
[[Category:2016-2017 Class Notes]]
[[Category:2016-2017 School Year]]

Revision as of 07:10, 1 March 2017

Class plan.png What are we going to learn today?[edit]

  1. Watch this video and ensure your PHPStorm connection settings are correct. Pay attention to detail. https://youtu.be/mm1pnvjgxgU
  1. We will review our exam
  2. We will review our web application and get into the last bits to know and understand

Homework.png What is our homework?[edit]

Target.png How am I being assessed today?[edit]

  1. You will get a formative mark for your work today.

Ourstandards.png Standards we are covering today[edit]

Computer1.png As a computer scientist, you have:[edit]

  • Confidence in dealing with complexity
  • Persistence in working with difficult problems
  • Tolerance for ambiguity
  • The ability to deal with open-ended problems
  • The ability to communicate and work with others to achieve a common goal or solution

Credit.png Credits[edit]