From ccddebb7cfc8be2b01881039197ffd69ed3d7380 Mon Sep 17 00:00:00 2001 From: jowo2238 Date: Mon, 9 Feb 2015 19:22:58 -0700 Subject: [PATCH 1/2] Update README.md --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 733339a..15e15e6 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,11 @@ ###Intro to the Back End **Required** -What is the difference between front- and back-end development? -Why do you need to install Ruby but not HTML/CSS? +**What is the difference between front- and back-end development?** +**Frontend** is the part of the web that you can see and interact with. +**backend** usually consists of three parts: a server, an application, and a database +**Why do you need to install Ruby but not HTML/CSS?** +HTML/css are what you see on every site whereas ruby is used on the backend. Read the [intro to back end on the Odin Project](http://www.theodinproject.com/web-development-101/introduction-to-the-back-end) description, and the [What is: Back-end web development](http://blog.generalassemb.ly/what-is-back-end-web-development/) blog post. @@ -56,9 +59,12 @@ You should also be able to use **$ which git** and see the directory where yo ###Intro to Ruby ####Required -What is an "interpreted" language?
-What is IRB?
-What are Objects?
+**What is an "interpreted" language?
** + +**What is IRB?
** +Interactive Ruby Shell IRB allows the execution of Ruby commands with immediate response, experimenting in real-time. +**What are Objects?
** + What are Methods?
What are Classes?
What are Blocks?
From 16d45caef6444f78386af3276b06a854b12891b4 Mon Sep 17 00:00:00 2001 From: jowo2238 Date: Mon, 9 Feb 2015 19:24:34 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 15e15e6..f6c9d99 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ **Required** **What is the difference between front- and back-end development?** -**Frontend** is the part of the web that you can see and interact with. -**backend** usually consists of three parts: a server, an application, and a database -**Why do you need to install Ruby but not HTML/CSS?** +**Frontend** is the part of the web that you can see and interact with. +**backend** usually consists of three parts: a server, an application, and a database +**Why do you need to install Ruby but not HTML/CSS?** HTML/css are what you see on every site whereas ruby is used on the backend. Read the [intro to back end on the Odin Project](http://www.theodinproject.com/web-development-101/introduction-to-the-back-end) description, and the [What is: Back-end web development](http://blog.generalassemb.ly/what-is-back-end-web-development/) blog post.