Live page for Better Know Wisconsin Quiz App: https://chriscarlsondev.github.io/better-know-wisconsin/
Repo for Better Know Wisconsin Quiz App: https://github.com/chriscarlsondev/better-know-wisconsin
Sketches | |
Back of the napkin design https://chriscarlsondev.github.io/quiz-app/images/napkin-design.jpg | |
Wireframes | |
Quiz Start Screen https://chriscarlsondev.github.io/quiz-app/quiz-start.html | |
Quiz Question Screen https://chriscarlsondev.github.io/quiz-app/question.html | |
Quiz Answer Screen https://chriscarlsondev.github.io/quiz-app/answer.html | |
Quiz End Screen https://chriscarlsondev.github.io/quiz-app/quiz-end.html | |
Repo |
Live page for Better Know Wisconsin Quiz App: https://chriscarlsondev.github.io/better-know-wisconsin/
Repo for Better Know Wisconsin Quiz App: https://github.com/chriscarlsondev/better-know-wisconsin
** Headline ** | |
Hi, I'm Chris. I'm a web developer and tech educator. I am interested in business, technology and how we learn. | |
** Bio ** | |
Hi, I'm Chris. I'm a web developer and tech educator. I am interested in business, technology and how we learn. | |
Frontend web development rocks because it combines the challenge of problem-solving with the creativity of design. | |
I teach others what I know and I've been doing it formally since 2011. I've taught classes on a wide range of subjects | |
including SharePoint, career development, and growth mindset. |
Sketch | |
https://chriscarlsondev.github.io/resume/images/portfolio-sketch.jpg |
1. What city is the state capital of Wisconsin? | |
a) Answer: Madison | |
b) Green Bay | |
c) La Crosse | |
d) Hurley | |
2. What is the name of the current home to the Milwaukee Brewers baseball team? | |
a) Chase Field | |
b) Answer: Miller Park | |
c) Target Field | |
d) Wrigley Field |
Write an analogy to describe the relationship between clients and servers. The client and server relationship is like ordering products from Amazon. The customer (client) creates an order for a product from Amazon (server). The server receives the request and ensures that the person is able to purchase it. If they are able to purchase it, Amazon (server) sends by the requested product or products (resources) back to the client.
Draw a diagram of the request/response cycle. You can draw your diagram by hand and take a photo to add to your Gist.
-- First, remove the table if it exists | |
drop table if exists bookmarks; | |
-- Create the table anew | |
create table bookmarks ( | |
id INTEGER primary key generated by default as identity, | |
title VARCHAR(50) not null, | |
URL VARCHAR(50) not null, | |
description VARCHAR(300), | |
rating INTEGER not null |
DROP TYPE IF EXISTS grocery; | |
CREATE TYPE grocery AS ENUM ( | |
'Main', | |
'Snack', | |
'Lunch', | |
'Breakfast' | |
); | |
CREATE TABLE IF NOT EXISTS shopping_list ( | |
id INTEGER PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, |