Designing Solutions Through Programming - block 6 - August 31 2018 Lesson Notes

From Computer Science Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

Asking a question, discussion forum, chrome developer tools, CSS, external stylesheets

Welcome. Today:

  • We will check your homework
  • Our first test
  • You will start an assignment for treehouse
  • We will look at a pretty good question
  • We will learn about our discussion forum
<!DOCTYPE html>
<html>
<head>
	<title></title>
	<style>
	div {

		background-color: lightblue;
		padding:5px;
	}

	div.warning {
		background-color: lightpink;
		color:red;
		font-weight: bold;
		padding:5px;

	}

	#inform {
		background-color: lightyellow;
		color:blue;
		font-weight: bold;
		padding:5px;

	}

</style>
</head>
<body>

	<div>
		<p>Hello, I'm  normal div</p>
	</div>

	<div class="warning">
		<p>This is a warning div</p>
	</div>

	<div id="inform">
		<p>This is an informational div</p>
	</div>

	<div>
		<p>I'm a normal div</p>
	</div>

</body>
</html>
  • We will learn external stylesheets



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

I will assess you formatively today, and make a professional judgement to what extent you understand our learning material. I will use observation, your written work, answers to questions, and contribution to class discussions as data to make my decisions.

I will also ask you to complete a self-assessment which I will use to help me guage how well you think you understand our material in class.

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]