Forked from BrianZanti/b2_intermission_work.md
Last active
September 26, 2024 15:57
-
-
Save mikedao/cf0f63490a0ef91ac7d251e95fc410f7 to your computer and use it in GitHub Desktop.
Revisions
-
mikedao revised this gist
Sep 26, 2019 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -60,7 +60,8 @@ Answer these Check for Understanding questions as you work through the assignmen ## Rails Tutorial: Task Manager **Copy and Paste the link to your Task Manager repo here:** **Copy and Paste the link to your Static Challenge here:** 1. Define CRUD. 1. Define MVC. -
BrianZanti revised this gist
Aug 1, 2019 . 1 changed file with 0 additions and 18 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -58,24 +58,6 @@ Answer these Check for Understanding questions as you work through the assignmen 1. What does the `group` statement do? 1. How does the `group` statement relate to aggregates? ## Rails Tutorial: Task Manager **Copy and Pase the link to your repo here:** -
BrianZanti revised this gist
Apr 16, 2019 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,10 +29,6 @@ Answer these Check for Understanding questions as you work through the assignmen 1. What are the three ways to include CSS in your HTML documents? What are the pros and cons of each? 1. What is the Box Model? Describe each component of the Box Model. ## SQL ### Jumpstart Lab Tutorial @@ -64,6 +60,8 @@ Copy and paste the link to your Static Challenge repo here: ## Rack Tutorial **Copy and Pase the link to your deployed application here:** 1. What is HTTP? 1. What is an HTTP Method (also known as an HTTP Verb)? 1. What is an HTTP request? @@ -80,6 +78,8 @@ Copy and paste the link to your Static Challenge repo here: ## Rails Tutorial: Task Manager **Copy and Pase the link to your repo here:** 1. Define CRUD. 1. Define MVC. 1. What three files would you need to create/modify for a Rails application to respond to a `GET` request to `/tasks`, assuming you have a `Task` model. -
BrianZanti revised this gist
Apr 16, 2019 . No changes.There are no files selected for viewing
-
BrianZanti revised this gist
Apr 16, 2019 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -81,6 +81,7 @@ Copy and paste the link to your Static Challenge repo here: ## Rails Tutorial: Task Manager 1. Define CRUD. 1. Define MVC. 1. What three files would you need to create/modify for a Rails application to respond to a `GET` request to `/tasks`, assuming you have a `Task` model. 1. What are params? Where do they come from? 1. Check out your routes. Why do we need two routes each for creating a new Task and editing an existing Task? -
BrianZanti revised this gist
Apr 16, 2019 . 1 changed file with 9 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -65,8 +65,15 @@ Copy and paste the link to your Static Challenge repo here: ## Rack Tutorial 1. What is HTTP? 1. What is an HTTP Method (also known as an HTTP Verb)? 1. What is an HTTP request? 1. Describe the three parts of the HTTP request line. 1. Describe the HTTP request headers. 1. Describe the HTTP request body. 1. What is an HTTP response? 1. Describe the three parts of the HTTP status line. 1. Describe the HTTP response headers. 1. Describe the HTTP response body. 1. What is a Web Framework? 1. What is a status code? 1. What does it mean to deploy your application? -
BrianZanti revised this gist
Apr 16, 2019 . 1 changed file with 9 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -62,6 +62,15 @@ Copy and paste the link to your Static Challenge repo here: 1. What does the `group` statement do? 1. How does the `group` statement relate to aggregates? ## Rack Tutorial 1. What is HTTP? 1. What is an HTTP request? Describe the three parts of a request. 1. What is an HTTP response? Describe the three parts of a response. 1. What is a Web Framework? 1. What is a status code? 1. What does it mean to deploy your application? ## Rails Tutorial: Task Manager 1. Define CRUD. -
BrianZanti revised this gist
Apr 16, 2019 . 1 changed file with 70 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1 +1,70 @@ # B2 Intermission Work Answer these Check for Understanding questions as you work through the assignments. ## HTML 1. What is HTML? 1. What is an HTML element? 1. What is an HTML attribute? 1. What is the difference between a class and an id? When would you use one vs. the other? 1. What HTML would you write to create a form for a new dog with a "name" and an "age"? 1. What are semantic tags? When would you use them over a `div`? 1. Explain what each of the following HTML tags do and when you would use them: * `<h1>`, `<h2>`, etc. * `<p>` * `<body>` * `<a>` and the `href` attribute * `<img>` and the `src` attribute * `<div>` * `<section>` * `<ul>`, `<ol>`, and `<li>` * `<form>` * `<input>` ## CSS 1. What is CSS? 1. What is a CSS selector? How do you use the ID selector? The class selector? 1. What are the three ways to include CSS in your HTML documents? What are the pros and cons of each? 1. What is the Box Model? Describe each component of the Box Model. ## Static Challenge Copy and paste the link to your Static Challenge repo here: ## SQL ### Jumpstart Lab Tutorial 1. What is a database? 1. What is SQL? 1. What is SQLite3? 1. What is a Table? 1. What is a primary key? 1. What is a foreign key? 1. Explain what each of the following SQL commands do: * insert * select * where * order by * inner join ### PG Exercises 1. How can you limit which columns you select from a table? 1. How can you limit which rows you select from a table? 1. How can you give a selected column a different name in your output? 1. How can you sort your output from a SQL statement? 1. What is joining? When do you need to join? 1. What is an aggregate function? 1. List three aggregate functions and what they do. 1. What does the `group` statement do? 1. How does the `group` statement relate to aggregates? ## Rails Tutorial: Task Manager 1. Define CRUD. 2. Explain the difference between value and name in this line: `<input type='text' name='task[title]' value="<%= @task.title %>"/>`. 3. What are params? Where do they come from? 4. Check out your routes. Why do we need two routes each for creating a new Task and editing an existing Task? -
BrianZanti created this gist
Apr 15, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ # B2 Intermission Work