Designing Solutions Through Programming

Tuesday 20 October 2020 - Block 1, Room C152
← previous note | most current note | next note →
 

Daily Note

  1. It's important to carefully read our daily notes
     
  2. We will review our virtual learning process:
    1. We will review our daily note procedure
    2. We will review screen sharing with zoom
    3. We will review our threaded discussion board
       
  3. We will review how you get a grade in this class. 
     
  4. We will learn about our next adventure - an overview of what we do next.
    1. We are building a web application to solve a problem
    2. Our web application will have a page getting input
    3. Our web application will take the input from the user and pass it to a page to process the input
    4. The web application will assign the input from the users into variables
    5. The web application will then:
      1. open a connection to a table in a database
      2. make a query to the table in the database
        1. the query will be looking for any matching data which matches the user input 
      3. if there is a match, the web application will output the results (see step 6)
      4. if there is no match, the web application will output no matches could be found
    6. The web application will display the results
       
    7. In addition, your web application will have register, login, logout functionality (if that is required for your solution)
    8. In addition, your web application will have a modern navigation bar
    9. In addition, your web application will be usable on devices with differently sized screens
       
  5. We will start thinking about our question; our first problem and solution
    1. Your first problem and solution should be something for you or your friends
    2.  Your first problem and solution should be something simple 
    3. ...but it must be a real problem
    4. Your solution must utilize a database
    5. Your solution must be web-based application
    6. Your solution must have:
      1. a part which collects user input
      2. a part which processes that input
      3. a part which outputs results from the processing
    7. If you are interested in getting some candy in todays class, please come to me and quiety tell me the sum of todays date (10 + 20 + 2020)
       
  6. Once your problem has been approved (AND ONLY ONCE YOUR PROBLEM HAS BEEN APPROVED) can you then start on section A of the design cycle: inquiry and analysis
     
  7. Homework is always posted on google classroom (and only google classroom)

 

A little less comfortable

Content

Programs must solve the problem they were create to solve. We can worry about how effieciently or elegantly they solve the problem later on; not right now. The content of a program entails input, processing and output. All three of these elements must be clearly observable. A key question you will be asked (and you should ask yourself) is: to what extent does your code implement the features required by the specification?  

Process

Within the process, we are looking at six guiding questions: 

  • To what extent is your code written well (i.e. clearly, efficiently, elegantly, and/or logically)?
  • To what extent is your code eliminating repetition?
  • To what extent is your code using functions appropriately?
  • To what extent is your code readable?
  • To what extent is your code commented?
  • To what extent are your variables well named?

Product

As opposed to content, this section we focus on how well you solved the problem. A key question here is to what extent is your code free of bugs?

 

A little more comfortable

Content

Programs must solve the problem they were create to solve. You should ask yourself "Am I solving this elegantly?". The content of a program entails input, processing and output. All three of these elements must be clearly observable, and we must see evidence of sanitizing input and raising exceptions.  A key question you will be asked (and you should ask yourself) is: to what extent does your code implement the features required by the specification?  

Process

Within the process, we are looking at six guiding questions: 

  • To what extent is your code written well (i.e. clearly, efficiently, elegantly, and/or logically)?
  • To what extent is your code eliminating repetition?
  • To what extent is your code using functions appropriately?
  • To what extent is your code readable?
  • To what extent is your code commented?
  • To what extent are your variables well named?

For those more comfortable programming, we expect succinct, secure and effecient problem solving. 

Product

As opposed to content, this section we focus on how well you solved the problem. A key question here is to what extent is your code free of bugs? The real difference here is the complexity of the problem you have chosen to solve and how well you solved it. 

Our Big idea

The big idea for today is Programming.

The essential questions for this topic are:

How do we plan, write, execute, and test instructions a computer can understand and process?

It takes time to explore and really understand a big idea. If you want to
learn more about programming (which is connected to today's daily note), please click here .

We are learning this because as a designers must understand scientific and technical innovation. Designers use systems, models, methods, and processes to solve problems.



Tags

 

Reminders & routines:

IF (today ==  testing_day_for_me) {
     remember to go get tested!;
}

IF (this_block == first_block_day) {
     read_daily_bulletin;
}

IF (today == Friday) {
     current_event_activity();
}

As I am taking attendance:

  1. For students who are physically at ASW: Please check now: am I connected to the American School of Warsaw wireless network
  2. Please check now: is visual studio code working from my programming folder?

To remember: 

  1. All the files you need for this course can be found at this link. Please pay attention to the time the file was last updated. 
  2. You can access a web-based view of your database by clicking this link.
  3. Please be aware of course videos to help you understand our content.