├── .github └── FUNDING.yml ├── .gitignore ├── APIs ├── How to use APIs │ ├── .gitkeep │ ├── JavaScript │ │ └── README.md │ ├── Python │ │ └── README.md │ └── Ruby │ │ └── README.md ├── JavaScript APis │ ├── Apigee API │ │ └── README.md │ ├── Deezer API │ │ └── README.md │ ├── Mandrill API │ │ └── README.md │ ├── SoundCloud API │ │ └── README.md │ ├── Sunlight API │ │ └── README.md │ └── YouTube API │ │ └── README.md ├── Python APIs │ ├── Dwolla API │ │ └── README.md │ ├── NHTSA API │ │ └── README.md │ ├── NPR API │ │ └── README.md │ ├── Sunlight API │ │ └── README.md │ └── WePay API │ │ └── README.md └── Ruby APIs │ ├── Box API │ └── README.md │ ├── EasyPost API │ └── README.md │ ├── Evernote API │ └── README.md │ ├── GitHub API │ └── README.md │ ├── SendGrid API │ └── README.md │ ├── Twitter API │ └── README.md │ └── WePay API │ └── README.md ├── LICENSE.md ├── Language Skills ├── HTML & CSS │ ├── Unit 01 Introduction to HTML │ │ ├── 01 HTML Basics │ │ │ └── README.md │ │ └── 02 Build Your Own Webpage │ │ │ └── README.md │ ├── Unit 02 HTML Structure using lists │ │ ├── 02 HTML Basics II │ │ │ └── README.md │ │ └── 02 Social Networking Profile │ │ │ └── README.md │ ├── Unit 03 HTML Structure - Tables Divs and Spans │ │ ├── 01 HTML Basics III │ │ │ └── README.md │ │ └── 02 Clickable Photo Page │ │ │ └── README.md │ ├── Unit 04 Introduction to CSS │ │ ├── 01 CSS An Overview │ │ │ └── README.md │ │ └── 02 Design a Button for Your Website │ │ │ └── README.md │ ├── Unit 05 Classes and IDs │ │ ├── 01 CSS Selectors │ │ │ └── README.md │ │ └── 02 Sorting Your Friends │ │ │ └── README.md │ └── Unit 06 CSS element position │ │ ├── 01 CSS Positioning │ │ └── README.md │ │ └── 02 Build a Resume │ │ └── README.md ├── JavaScript │ ├── Unit 01 Introduction to JavaScript │ │ ├── 01 Getting Started with Programming │ │ │ └── readme.md │ │ └── 02 Code Your Own Adventure! │ │ │ └── readme.md │ ├── Unit 02 Functions │ │ ├── 01 Introduction to Functions in JS │ │ │ └── readme.md │ │ └── 02 Build Rock, Paper, Scissors │ │ │ └── readme.md │ ├── Unit 03 For Loops in JavaScript │ │ ├── 01 Introduction to For Loops in JS │ │ │ └── readme.md │ │ └── 02 Search Text for Your Name │ │ │ └── readme.md │ ├── Unit 04 While loops in JavaScript │ │ ├── 01 Introduction to While Loops in JS │ │ │ └── readme.md │ │ └── 02 Dragon Slayer! │ │ │ └── readme.md │ ├── Unit 05 Control Flow │ │ ├── 01 More on Control Flow in JS │ │ │ └── readme.md │ │ └── 02 Code Your Own Adventure 2! │ │ │ └── readme.md │ ├── Unit 06 Data Structures │ │ ├── 01 Arrays and Objects in JS │ │ │ └── readme.md │ │ └── 02 Contact List │ │ │ └── readme.md │ ├── Unit 07 Objects I │ │ ├── 01 Introduction to Objects I │ │ │ └── readme.md │ │ └── 02 Building an Address Book │ │ │ └── readme.md │ └── Unit 08 Objects II │ │ ├── 01 Introduction to Objects II │ │ └── readme.md │ │ └── 02 Building a Cash Register │ │ └── readme.md ├── Learn Java │ ├── 01 Introduction to Java │ │ ├── 01 Whats your name │ │ │ └── YourName.java │ │ ├── 02 Data Types I int │ │ │ └── DataTypes.java │ │ ├── 03 Data Types II boolean │ │ │ └── DataTypesB.java │ │ ├── 04 Data Types III char │ │ │ └── DataTypesC.java │ │ ├── 05 Variables │ │ │ └── Variables.java │ │ ├── 06 Whitespace │ │ │ └── Whitespace.java │ │ ├── 07 Comments │ │ │ └── Comments.java │ │ ├── 08 Math │ │ │ └── Arithmetic.java │ │ ├── 09 Math │ │ │ └── Modulo.java │ │ ├── 10 Relational Operators │ │ │ └── RelationalOperators.java │ │ ├── 11 Equality Operators │ │ │ └── EqualityOperators.java │ │ └── 12 Generalizations │ │ │ └── Generalizations.java │ ├── 02 Conditionals and Control Flow │ │ ├── 02 Boolean Operators │ │ │ └── And.java │ │ ├── 03 Boolean Operators II │ │ │ └── Or.java │ │ ├── 04 Boolean Operators │ │ │ └── Not.java │ │ ├── 05 Boolean Operators Precedence │ │ │ └── Precedence.java │ │ ├── 06 If Statement │ │ │ └── If.java │ │ ├── 07 If Else Statement │ │ │ └── IfElse.java │ │ ├── 08 If ElseIf Else Statement │ │ │ └── IfElseIf.java │ │ ├── 09 Ternary Conditional │ │ │ └── Ternary.java │ │ ├── 10 Switch Statement │ │ │ └── Switch.java │ │ └── 11 Generalizations │ │ │ └── GeneralizationsB.java │ ├── 03 Object Oriented Java │ │ ├── 02 Classes Syntax │ │ │ └── Dog.java │ │ ├── 03 Classes Constructors │ │ │ └── Dog.java │ │ ├── 04 Classes Instance Variables │ │ │ └── Dog.java │ │ ├── 05 Classes Constructor Parameters │ │ │ └── Dog.java │ │ ├── 07 Objects │ │ │ └── Dog.java │ │ ├── 08 Methods I │ │ │ └── Dog.java │ │ ├── 09 Using Methods I │ │ │ └── Dog.java │ │ ├── 10 Methods II │ │ │ └── Dog.java │ │ ├── 11 Using Methods II │ │ │ └── Dog.java │ │ ├── 12 Inheritance │ │ │ └── Dog.java │ │ └── 13 Generalizations │ │ │ └── Coffee.java │ ├── 04 Data Structures │ │ ├── 02 For Loop │ │ │ └── For.java │ │ ├── 03 ArrayList │ │ │ └── Temperatures.java │ │ ├── 04 ArrayList Manipulation │ │ │ └── Temperatures.java │ │ ├── 05 ArrayList Access │ │ │ └── Temperatures.java │ │ ├── 06 ArrayList Insertion │ │ │ └── TemperaturesB.java │ │ ├── 07 Iterating over an ArrayList │ │ │ └── TemperaturesC.java │ │ ├── 08 For Each Loop │ │ │ └── TemperaturesForEach.java │ │ ├── 09 HashMap │ │ │ └── Restaurant.java │ │ ├── 10 HashMap Manipulation │ │ │ └── Restaurant.java │ │ ├── 11 HashMap Access │ │ │ └── Restaurant.java │ │ ├── 12 Iterating over a HashMap │ │ │ └── RestaurantForEach.java │ │ └── 13 Generalizations │ │ │ └── GeneralizationsD.java │ └── README.md ├── PHP │ ├── Unit 01 Introduction to PHP │ │ └── README.md │ ├── Unit 02 Control Flow If and Else │ │ └── README.md │ ├── Unit 03 Control Flow Switch │ │ └── README.md │ ├── Unit 04 Arrays │ │ └── README.md │ ├── Unit 05 Loops For and Foreach │ │ └── README.md │ ├── Unit 06 Loops While and Do-While │ │ └── README.md │ ├── Unit 07 Functions Part I │ │ └── README.md │ ├── Unit 08 Functions Part II │ │ └── README.md │ ├── Unit 09 Object Oriented Programming Part I │ │ └── README.md │ ├── Unit 10 Object Oriented Programming Part II │ │ └── README.md │ └── Unit 11 Advanced Arrays and Maps │ │ └── README.md ├── Python │ ├── Unit 01 Python Syntax │ │ ├── 01 Python Syntax │ │ │ ├── Comments │ │ │ │ ├── Multi-Lines Comment.py │ │ │ │ └── Single Line Comments.py │ │ │ ├── Math Operations │ │ │ │ ├── Exponantiation.py │ │ │ │ ├── Modulo.py │ │ │ │ └── math.py │ │ │ ├── Review │ │ │ │ └── Bringing It All Together.py │ │ │ ├── Varibles and Data Types │ │ │ │ ├── Booleans.py │ │ │ │ ├── Variables.py │ │ │ │ ├── Youve-been-reassigned.py │ │ │ │ └── welcome.py │ │ │ └── Whitespace and Statements │ │ │ │ ├── a matter of interpretation.py │ │ │ │ ├── whiteSpace.py │ │ │ │ └── whitespace means right space.py │ │ └── 02 Tip Calculator │ │ │ ├── 1-The Meal.py │ │ │ ├── 2-The tax.py │ │ │ ├── 3-The tip.py │ │ │ ├── 4-Reassign in a single line.py │ │ │ └── 5-The total.py │ ├── Unit 02 Strings and Console Output │ │ ├── 01 Strings and Console Outputs │ │ │ ├── Advanced Printing │ │ │ │ ├── 12-String Concatenation.py │ │ │ │ ├── 13-Explicit String Conversion.py │ │ │ │ ├── 14-String Formatting with, PART1.py │ │ │ │ └── 15-String Formatting with, PART 2.py │ │ │ ├── Print │ │ │ │ ├── 10-Printing Strings.py │ │ │ │ └── 11-Printing Variables.py │ │ │ ├── Review │ │ │ │ └── 16-and now for something completely familiar.py │ │ │ ├── String Methonds │ │ │ │ ├── 5-String Methods.py │ │ │ │ ├── 6-lower().py │ │ │ │ ├── 7-upper().py │ │ │ │ ├── 8-str().py │ │ │ │ └── 9-Dot Notation.py │ │ │ └── Strings │ │ │ │ ├── 1-Strings.py │ │ │ │ ├── 2-Practice.py │ │ │ │ ├── 3-Escaping Characters.py │ │ │ │ └── 4-Access by Index.py │ │ └── 02 Date and Time │ │ │ ├── 1-The datetime Library.py │ │ │ ├── 2-Getting the current date and time.py │ │ │ ├── 3-Extracting Information.py │ │ │ ├── 4-Hot Date.py │ │ │ ├── 5-Pretty time.py │ │ │ └── 6-Grand Finale.py │ ├── Unit 03 Conditionals and Control Flow │ │ ├── 01 Conditionals & Control Flow │ │ │ ├── Boolean Operators │ │ │ │ ├── 10-Min 'n' match.py │ │ │ │ ├── 5-To be or not To be.py │ │ │ │ ├── 6-And.py │ │ │ │ ├── 7-Or.py │ │ │ │ ├── 8-Not.py │ │ │ │ └── 9-This and That.py │ │ │ ├── Comparators │ │ │ │ ├── 2-Compare Closely.py │ │ │ │ ├── 3-Compare Closier.py │ │ │ │ └── 4-How the talbes have Turned.py │ │ │ ├── If, Else and Elif │ │ │ │ ├── 11-Conditional Statement Syntax.py │ │ │ │ ├── 12-If youre having.py │ │ │ │ ├── 13-else problems, I feel bad for you son.py │ │ │ │ └── 14-I got 99 problems but a switch aint one.py │ │ │ ├── Introduction to Control Flow │ │ │ │ └── 1-Go with the Flow.py │ │ │ └── Review │ │ │ │ └── 15-The big If.py │ │ └── 02 PygLatin │ │ │ ├── PygLatin PART1 │ │ │ ├── 1-Brake it Down.py │ │ │ ├── 2-Ahoy.py │ │ │ ├── 3-Input.py │ │ │ ├── 4-Check yourself.py │ │ │ ├── 5-Check yourself some more.py │ │ │ └── 6-Pop Quizz.py │ │ │ └── PygLatin PART2 │ │ │ ├── 10-Engind up.py │ │ │ ├── 11-Testing is this thing on.py │ │ │ ├── 7-Ay B C.py │ │ │ ├── 8-Word up.py │ │ │ └── 9-Move it on back.py │ ├── Unit 04 Functions │ │ ├── 01 Functions │ │ │ ├── Built In Functions │ │ │ │ ├── 12-On beyond Strings.py │ │ │ │ ├── 13-max.py │ │ │ │ ├── 14-min.py │ │ │ │ ├── 15-abs.py │ │ │ │ └── 16-type.py │ │ │ ├── Function Syntax │ │ │ │ ├── 2- Function Junction.py │ │ │ │ ├── 3-Call and Response.py │ │ │ │ ├── 4-Parameters and Arguments.py │ │ │ │ ├── 5-Functions and calling Functions.py │ │ │ │ └── 6-Practice Makes perfect.py │ │ │ ├── Importing Modules │ │ │ │ ├── 10-Universal Imports.py │ │ │ │ ├── 11-Here be Dragons.py │ │ │ │ ├── 7-I know Kung Fu.py │ │ │ │ ├── 8-Generic Imports.py │ │ │ │ └── 9-Function Imports.py │ │ │ ├── Introduction to Functions │ │ │ │ └── 1-What good are functions.py │ │ │ └── Review │ │ │ │ ├── 17-Functions.py │ │ │ │ ├── 18-Modules.py │ │ │ │ └── 19-Builtin Functions.py │ │ └── 02 Taking a Vacation │ │ │ ├── Planes, Hotels and Automobiles │ │ │ ├── 2-Planning your trip.py │ │ │ ├── 3-Getting there.py │ │ │ ├── 4-Transportation.py │ │ │ ├── 5-Pull it together.py │ │ │ ├── 6-Hey, You never know.py │ │ │ └── 7-Plan your Trip.py │ │ │ └── Review of Functions │ │ │ └── 1-Before we begin.py │ ├── Unit 05 Lists & Dictionaries │ │ ├── 01 Python Lists and Dictionaries │ │ │ ├── Dictionaries │ │ │ │ ├── 10-This next part is key.py │ │ │ │ ├── 11-New Entries.py │ │ │ │ ├── 12-Changing your mind.py │ │ │ │ ├── 13-Removing a few Things.py │ │ │ │ └── 14-Its dangerous to go alone!Take this.py │ │ │ ├── Lists Capabilities and Functions │ │ │ │ ├── 4-Late Arrivals and List length.py │ │ │ │ ├── 5-List Slicing.py │ │ │ │ ├── 6-Slicing Lists and Strings.py │ │ │ │ ├── 7-Mantaining Order.py │ │ │ │ ├── 8-For one and All.py │ │ │ │ └── 9-More with for.py │ │ │ └── Lists │ │ │ │ ├── 1-Introduction to Lists.py │ │ │ │ ├── 2-Access by Index.py │ │ │ │ └── 3-New Neibors.py │ │ └── 02 A Day at the Supermarket │ │ │ ├── Looping and lists │ │ │ ├── 1-beFOR we begin.py │ │ │ ├── 2-This is KEY.py │ │ │ ├── 3-Control flow and Looping.py │ │ │ ├── 4-Lists + Functions.py │ │ │ └── 5-String Looping.py │ │ │ ├── Owning a Store │ │ │ ├── 6-Your own Store.py │ │ │ ├── 7-Investing in Stock.py │ │ │ ├── 8-Keeping track of the Produce.py │ │ │ └── 9-Something of value.py │ │ │ └── Shopping Trip │ │ │ ├── 10-Shopping at the market.py │ │ │ ├── 11-Making a purchase.py │ │ │ ├── 12-Stocking Out.py │ │ │ └── 13-Lets Check out.py │ ├── Unit 06 Student Becomes the Teacher │ │ ├── 01 Good Morning Class │ │ │ ├── 1-Lesson number one.py │ │ │ ├── 2-Whats the score.py │ │ │ ├── 3-Put it together.py │ │ │ └── 4-For the Record.py │ │ └── 02 Just Average │ │ │ ├── 5-Its okay to be average.py │ │ │ ├── 6-Just weight and see.py │ │ │ ├── 7-Sending a Letter.py │ │ │ ├── 8-Part of the Whole.py │ │ │ └── 9-How is everything doing.py │ ├── Unit 07 Lists and Functions │ │ ├── 01 Lists and Functions │ │ │ ├── Function Recap │ │ │ │ ├── 5-Changing the functionality of a function.py │ │ │ │ ├── 6-More than one Argument.py │ │ │ │ └── 7-Strings in Functions.py │ │ │ ├── Introdution to using Functions with Lists │ │ │ │ ├── 10-Modifying an element of a list in a function.py │ │ │ │ ├── 11-List manipulation in functions.py │ │ │ │ ├── 8-Passing a list to a Function.py │ │ │ │ └── 9-Using an element from a list in a function.py │ │ │ ├── List Recap │ │ │ │ ├── 1-List accessing.py │ │ │ │ ├── 2-List element modification.py │ │ │ │ ├── 3-Appending to a list.py │ │ │ │ └── 4-Removing elements from lists.py │ │ │ ├── Using Lists of Lists in Functions │ │ │ │ ├── 17-Using two lists as two arguments in a function.py │ │ │ │ └── 18-Using a list of lists in a function.py │ │ │ └── Using the entire list in a Function │ │ │ │ ├── 12-Printing out a list item by item in a function.py │ │ │ │ ├── 13-Modifying each element in a list in a function.py │ │ │ │ ├── 14-Passing a range into a function.py │ │ │ │ ├── 15-Iterating over a list in a function.py │ │ │ │ └── 16-Using strings in lists in functions.py │ │ └── 02 Battleship │ │ │ ├── Dont Sinc my Battleship │ │ │ ├── 1-Welcome to Battleship.py │ │ │ ├── 2-Getting Our Feet Wet.py │ │ │ ├── 3-Make a List.py │ │ │ ├── 4-Check it Twice.py │ │ │ ├── 5-Custom Print.py │ │ │ ├── 6-Printing Pretty.py │ │ │ ├── 7-Hide.py │ │ │ ├── 8-And Seek.py │ │ │ └── 9-It's Not Cheating—It's Debugging.py │ │ │ ├── Hit or Miss │ │ │ ├── 10-You Win.py │ │ │ ├── 11-Danger, Will Robinson.py │ │ │ ├── 12-Bad Aim.py │ │ │ ├── 13-Not Again.py │ │ │ └── 14-Test Run.py │ │ │ └── You Sunk my Battleship │ │ │ ├── 15-Play it, Sam.py │ │ │ ├── 16-Game Over.py │ │ │ ├── 17-A Real Win.py │ │ │ └── 18-To Your Battle Stations.py │ ├── Unit 08 Loops │ │ ├── 01 Loops │ │ │ ├── For Loops │ │ │ │ ├── 10-For your hobbies.py │ │ │ │ ├── 11-For your Strings.py │ │ │ │ ├── 12-For your A.py │ │ │ │ ├── 13-For your lists.py │ │ │ │ └── 9-for your Health.py │ │ │ └── Step Up 'For's │ │ │ │ ├── 14-Looping over a Dictionary.py │ │ │ │ ├── 15-Counting as you go.py │ │ │ │ ├── 16-Multiple Lists.py │ │ │ │ ├── 17-For, Else.py │ │ │ │ ├── 18-Change it Up.py │ │ │ │ ├── 19-Create your own.py │ │ │ │ └── While Loops │ │ │ │ ├── 1-While you're here.py │ │ │ │ ├── 2-Condition.py │ │ │ │ ├── 3-While You're at it.py │ │ │ │ ├── 4-Simple Errors.py │ │ │ │ ├── 5-Infinite Loops.py │ │ │ │ ├── 6-Break.py │ │ │ │ ├── 7-While and Else.py │ │ │ │ └── 8-Your own While and Else.py │ │ └── 02 Practice makes perfect │ │ │ ├── Fun with Numbers │ │ │ ├── 1-Practice! Practice, Practice!.py │ │ │ ├── 2-is_even.py │ │ │ ├── 3-is_int.py │ │ │ ├── 4-digit_sum.py │ │ │ ├── 5-Factorial.py │ │ │ ├── 6-is_prime using for loop.py │ │ │ └── 6-is_prime.py │ │ │ ├── Listing your problems │ │ │ ├── 11-Count.py │ │ │ ├── 12-purify.py │ │ │ ├── 13-Product.py │ │ │ ├── 14-Remove_duplicates.py │ │ │ └── 15-Median.py │ │ │ └── String it together │ │ │ ├── 10-censor.py │ │ │ ├── 7-Reverse.py │ │ │ ├── 8-Anti_vowels.py │ │ │ └── 9-scrabble_score.py │ ├── Unit 09 Exam Statistics │ │ ├── 01 Review │ │ │ ├── 1-Lets look at those grades.py │ │ │ ├── 2-Print those grades.py │ │ │ └── 3-Review.py │ │ ├── 02 The average grade │ │ │ ├── 4-The sum of scores.py │ │ │ ├── 5-Computing the Average.py │ │ │ └── 6-Review.py │ │ ├── 03 Do the grades vary │ │ │ ├── 7-The Variance.py │ │ │ ├── 8-Standard Deviation.py │ │ │ └── 9-Review.py │ │ └── examstats.py │ ├── Unit 10 Advanced Topics in Python │ │ ├── 01 Advanced Topics in Python │ │ │ ├── Iteration Nation │ │ │ │ ├── 1-Iterators for Dictionaries.py │ │ │ │ ├── 2-keys and values.py │ │ │ │ └── 3-The in Operator.py │ │ │ ├── Lambdas │ │ │ │ ├── 12-Anonymous Functions.py │ │ │ │ ├── 13-Lambda Syntax.py │ │ │ │ └── 14-Try It.py │ │ │ ├── List Comprehentions │ │ │ │ ├── 4-Building Lists.py │ │ │ │ ├── 5-List Comprehension Syntax.py │ │ │ │ └── 6-Now You Try.py │ │ │ ├── List Slicing │ │ │ │ ├── 10-Stride Length.py │ │ │ │ ├── 11-Practice Makes Perfect.py │ │ │ │ ├── 7-List Slicing Syntax.py │ │ │ │ ├── 8-Omitting Indices.py │ │ │ │ └── 9-Reversing a List.py │ │ │ └── Review │ │ │ │ ├── 15-Iterating Over Dictionaries.py │ │ │ │ ├── 16-Comprehending Comprehensions.py │ │ │ │ ├── 17-List Slicing.py │ │ │ │ └── 18-Lambda Expressions.py │ │ └── 02 Introduction to Bitwise Operators │ │ │ ├── A bit more Complicated │ │ │ ├── 11-The Man Behind the Bit Mask.py │ │ │ ├── 12-Turn It On.py │ │ │ ├── 13-Just Flip Out.py │ │ │ └── 14-Slip and Slide.py │ │ │ ├── Binary representation │ │ │ ├── 1-Just a Little BIT.py │ │ │ ├── 2-Lesson I0: The Base 2 Number System.py │ │ │ ├── 3-I Can Count to 1100!.py │ │ │ ├── 4-The bin() Function.py │ │ │ └── 5-int()'s Second Parameter.py │ │ │ └── The Bitwise Operators │ │ │ ├── 10-See This is NOT That Hard!.py │ │ │ ├── 6-Slide to the Left! Slide to the Right!.py │ │ │ ├── 7-A BIT of This AND That.py │ │ │ ├── 8-A BIT of This OR That.py │ │ │ └── 9-This XOR That.py │ ├── Unit 11 Introduction to Classes │ │ ├── 01 Introduction to classes │ │ │ ├── Class Basics │ │ │ │ ├── 1-Why Use Classes.py │ │ │ │ ├── 2-Class Syntax.py │ │ │ │ ├── 3-Classier Classes.py │ │ │ │ ├── 4-Lets Not Get Too Selfish.py │ │ │ │ └── 5-Instantiating Your First Object.py │ │ │ ├── Inheritance │ │ │ │ ├── 11-Warning: Here Be Dragons.py │ │ │ │ ├── 12-Inheritance Syntax.py │ │ │ │ ├── 13-Override.py │ │ │ │ └── 14-This Looks Like a Job For.py │ │ │ ├── Member Variables and Functions │ │ │ │ ├── 10-Its Not All Animals and Fruits.py │ │ │ │ ├── 6-More on init and self.py │ │ │ │ ├── 7-Class Scope.py │ │ │ │ ├── 8-A Methodical Approach.py │ │ │ │ └── 9-They are Multiplying.py │ │ │ └── Review │ │ │ │ ├── 15-Class Basics.py │ │ │ │ ├── 16-Class It Up.py │ │ │ │ ├── 17-Instantiate an Object.py │ │ │ │ └── 18-Inheritance.py │ │ └── 02 Classes │ │ │ ├── A review of Classes │ │ │ ├── 1-Class basics.py │ │ │ ├── 2-Create an instance of a class.py │ │ │ ├── 3-Class member variables.py │ │ │ ├── 4-Calling class member variables.py │ │ │ ├── 5-Initializing a class.py │ │ │ └── 6-Referring to member variables.py │ │ │ └── Using Classes │ │ │ ├── 10-Overriding methods.py │ │ │ ├── 11-Building useful classes.py │ │ │ ├── 7-Creating class methods.py │ │ │ ├── 8-Modifying member variables.py │ │ │ └── 9-Inheritance.py │ └── Unit 12 File Input and Output │ │ ├── 01 Introduction to file I-O │ │ ├── 1-See It to Believe It.py │ │ ├── 2-The open Function.py │ │ ├── 3-Writing.py │ │ └── 4-Reading.py │ │ └── 02 The Devil's in the Details │ │ ├── 5-Reading Between the Lines.py │ │ ├── 6-PSA Buffering Data.py │ │ ├── 7-The with and as Keywords.py │ │ ├── 8-Try It Yourself.py │ │ └── 9-Case Closed.py ├── README.md ├── Ruby │ ├── README.md │ ├── Unit 01 Introduction to Ruby │ │ ├── 01 Introduction to Ruby │ │ │ ├── 01 Variables & Data Types │ │ │ │ ├── 01 Overview and Sneak Peek │ │ │ │ │ └── script.rb │ │ │ │ ├── 02 Data Types Numbers Strings Booleans 2 │ │ │ │ │ └── script.rb │ │ │ │ ├── 03 Variables │ │ │ │ │ └── script.rb │ │ │ │ ├── 04 Math │ │ │ │ │ └── script.rb │ │ │ │ └── 05 puts and print │ │ │ │ │ └── script.rb │ │ │ ├── 02 String Methods │ │ │ │ ├── 06 Everything in Ruby is an Object │ │ │ │ │ └── script.rb │ │ │ │ ├── 07 The length Method │ │ │ │ │ └── script.rb │ │ │ │ ├── 08 The reverse Method │ │ │ │ │ └── script.rb │ │ │ │ └── 09 upcase and downcase │ │ │ │ │ └── script.rb │ │ │ ├── 03 Writing Good Code │ │ │ │ ├── 10 Single Line Comments │ │ │ │ │ └── script.rb │ │ │ │ ├── 11 Multi Line Comments │ │ │ │ │ └── script.rb │ │ │ │ └── 12 Naming Conventions │ │ │ │ │ └── script.rb │ │ │ └── 04 Review │ │ │ │ ├── 13 Variables and Data Types │ │ │ │ └── script.rb │ │ │ │ ├── 14 Math │ │ │ │ └── script.rb │ │ │ │ ├── 15 Strings and String Methods │ │ │ │ └── script.rb │ │ │ │ └── 16 Comments │ │ │ │ └── script.rb │ │ ├── 02 Putting the Form in Formatter │ │ │ └── 01 Methods Methods Everywhere │ │ │ │ ├── 01 What You ll Be Building │ │ │ │ └── script.rb │ │ │ │ ├── 02 Prompting The User │ │ │ │ └── script.rb │ │ │ │ ├── 03 Getting Input │ │ │ │ └── script.rb │ │ │ │ ├── 04 Repeat for More Input │ │ │ │ └── script.rb │ │ │ │ ├── 05 Printing the Output │ │ │ │ └── script.rb │ │ │ │ ├── 06 Formatting with String Methods │ │ │ │ └── script.rb │ │ │ │ └── 07 Great Work │ │ │ │ └── script.rb │ │ └── README.md │ ├── Unit 02 Control Flow in Ruby │ │ ├── 01 Control Flow in Ruby │ │ │ ├── 01 Introduction to Control Flow │ │ │ │ ├── 01 How it Works │ │ │ │ │ └── script.rb │ │ │ │ ├── 02 If │ │ │ │ │ └── script.rb │ │ │ │ ├── 03 Else │ │ │ │ │ └── script.rb │ │ │ │ ├── 04 Elsif │ │ │ │ │ └── script.rb │ │ │ │ └── 05 Unless │ │ │ │ │ └── script.rb │ │ │ ├── 02 Making Comparisons │ │ │ │ ├── 06 Equal or Not │ │ │ │ │ └── script.rb │ │ │ │ ├── 07 Less Than or Greater Than │ │ │ │ │ └── script.rb │ │ │ │ └── 08 Practice makes perfect │ │ │ │ │ └── script.rb │ │ │ ├── 03 Boolean Operators │ │ │ │ ├── 09 And │ │ │ │ │ └── script.rb │ │ │ │ ├── 10 Or │ │ │ │ │ └── script.rb │ │ │ │ ├── 11 Not │ │ │ │ │ └── script.rb │ │ │ │ └── 12 Combining Boolean Operators │ │ │ │ │ └── script.rb │ │ │ └── 04. Review │ │ │ │ ├── 14 If Else and Elsif │ │ │ │ └── script.rb │ │ │ │ ├── 15 Unless │ │ │ │ └── script.rb │ │ │ │ ├── 16 Dare to Compare │ │ │ │ └── script.rb │ │ │ │ └── 17 Billions of Booleans │ │ │ │ └── script.rb │ │ └── 02 Thith Meanth War │ │ │ ├── 01 What You ll Be Building │ │ │ └── script.rb │ │ │ ├── 02 Getting user input │ │ │ └── script.rb │ │ │ ├── 03 Downcase │ │ │ └── script.rb │ │ │ ├── 04 Setting Up the If Branch Part 1 │ │ │ └── script.rb │ │ │ ├── 05 Setting Up the If Branch Part 2 │ │ │ └── script.rb │ │ │ ├── 06 Setting Up the Else Branch │ │ │ └── script.rb │ │ │ ├── 07 Returning the Final String Er Thtring │ │ │ └── script.rb │ │ │ └── 08 Congratulations │ │ │ └── script.rb │ ├── Unit 03 Looping with Ruby │ │ └── 01 Loops & Iterators │ │ │ ├── 01 The While Loop │ │ │ └── script.rb │ │ │ ├── 02 Danger Infinite Loops │ │ │ └── script.rb │ │ │ ├── 03 The Until Loop │ │ │ └── script.rb │ │ │ ├── 04 More Assignment Operators │ │ │ └── script.rb │ │ │ ├── 05 The For Loop │ │ │ └── script.rb │ │ │ ├── 06 Inclusive and Exclusive Ranges │ │ │ └── script.rb │ │ │ ├── 07 Building Your Own │ │ │ └── script.rb │ │ │ ├── 08 The Loop Method │ │ │ └── script.rb │ │ │ ├── 09 Next │ │ │ └── script.rb │ │ │ ├── 1. The While Loop │ │ │ └── script.rb │ │ │ ├── 10 Saving Multiple Values │ │ │ └── script.rb │ │ │ ├── 11 The each Iterator │ │ │ └── script.rb │ │ │ ├── 11. The each Iterator │ │ │ └── script.rb │ │ │ ├── 12 Try It Out │ │ │ └── script.rb │ │ │ ├── 12. Try It Out │ │ │ └── script.rb │ │ │ ├── 13 The times Iterator │ │ │ └── script.rb │ │ │ ├── 13. The times Iterator │ │ │ └── script.rb │ │ │ ├── 14 Looping with While │ │ │ └── script.rb │ │ │ ├── 14. Looping with While │ │ │ └── script.rb │ │ │ ├── 15 Looping with Until │ │ │ └── script.rb │ │ │ ├── 15. Looping with Until │ │ │ └── script.rb │ │ │ ├── 16 Looping with For │ │ │ └── script.rb │ │ │ ├── 16. Looping with For │ │ │ └── script.rb │ │ │ ├── 17 Loop the Loop with Loop │ │ │ └── script.rb │ │ │ ├── 17. Loop the Loop with Loop │ │ │ └── script.rb │ │ │ ├── 18 Iterating with times │ │ │ └── script.rb │ │ │ ├── 18. Iterating with times │ │ │ └── script.rb │ │ │ ├── 2. Danger Infinite Loops │ │ │ └── script.rb │ │ │ ├── 3. The Until Loop │ │ │ └── script.rb │ │ │ ├── 5. The For Loop │ │ │ └── script.rb │ │ │ └── 9. Next │ │ │ └── script.rb │ ├── Unit 04 Arrays and Hashes │ │ ├── 01 Data Structures │ │ │ ├── 01 Creating Arrays │ │ │ │ └── script.rb │ │ │ ├── 02 Access by Index │ │ │ │ └── script.rb │ │ │ ├── 03 Arrays of Non-Numbers │ │ │ │ └── script.rb │ │ │ ├── 04 Arrays of Arrays │ │ │ │ └── script.rb │ │ │ ├── 05 Create Your Own │ │ │ │ └── script.rb │ │ │ ├── 06 Introduction to Hashes │ │ │ │ └── script.rb │ │ │ ├── 07 Using Hash.new │ │ │ │ └── script.rb │ │ │ ├── 08 Adding to a Hash │ │ │ │ └── script.rb │ │ │ ├── 09 Accessing Hash Values │ │ │ │ └── script.rb │ │ │ ├── 10 ReIntroduction to Iteration │ │ │ │ └── script.rb │ │ │ ├── 11 Iterating Over Arrays │ │ │ │ └── script.rb │ │ │ ├── 12 Iterating Over Multidimensional Arrays │ │ │ │ └── script.rb │ │ │ ├── 13 Iterating Over Hashes │ │ │ │ └── script.rb │ │ │ ├── 14 Multidimensional Arrays │ │ │ │ └── script.rb │ │ │ ├── 15 Hashes │ │ │ │ └── script.rb │ │ │ └── 16 Iterating Over a Hash │ │ │ │ └── script.rb │ │ └── 02 Create a Histogram │ │ │ ├── 01 What You ll Be Building │ │ │ └── script.rb │ │ │ ├── 02 You Know the Drill │ │ │ └── script.rb │ │ │ ├── 03 Building the Words Array │ │ │ └── script.rb │ │ │ ├── 04 Creating the Frequencies Hash │ │ │ └── script.rb │ │ │ ├── 05 Iterating Over the Array │ │ │ └── script.rb │ │ │ ├── 06 Sorting the Hash │ │ │ └── script.rb │ │ │ ├── 07 Iterating Over the Hash │ │ │ └── script.rb │ │ │ └── 08 You Did It │ │ │ └── script.rb │ ├── Unit 05 Blocks and Sorting │ │ ├── 01 Methods Blocks and Sorting │ │ │ ├── 01 Why Methods │ │ │ │ └── script.rb │ │ │ ├── 02 Method Syntax │ │ │ │ └── script.rb │ │ │ ├── 03 Create Your Own │ │ │ │ └── script.rb │ │ │ ├── 04 Call It │ │ │ │ └── script.rb │ │ │ ├── 05 Parameters and Arguments │ │ │ │ └── script.rb │ │ │ ├── 06 Splat │ │ │ │ └── script.rb │ │ │ ├── 07 Lets Learn Return │ │ │ │ └── script.rb │ │ │ ├── 08 Practice Makes Perfect │ │ │ │ └── script.rb │ │ │ ├── 09 Blocks Are Like Nameless Methods │ │ │ │ └── script.rb │ │ │ ├── 10 How Blocks Differ from Methods │ │ │ │ └── script.rb │ │ │ ├── 11 Using Code Blocks │ │ │ │ └── script.rb │ │ │ ├── 12 Introduction to Sorting │ │ │ │ └── script.rb │ │ │ ├── 13 Foundations │ │ │ │ └── script.rb │ │ │ ├── 14 The Combined Comparison Operator │ │ │ │ └── script.rb │ │ │ ├── 15 Getting Technical │ │ │ │ └── script.rb │ │ │ ├── 16 Basic Methods │ │ │ │ └── script.rb │ │ │ ├── 17 Methods With Arguments │ │ │ │ └── script.rb │ │ │ ├── 18 Blocks │ │ │ │ └── script.rb │ │ │ └── 19 Sorting │ │ │ │ └── script.rb │ │ └── 02 Ordering Your Library │ │ │ ├── 01 What You ll Be Building │ │ │ └── script.rb │ │ │ ├── 02 Defining Our Method │ │ │ └── script.rb │ │ │ ├── 03 Default Parameters │ │ │ └── script.rb │ │ │ ├── 04 Sorting │ │ │ └── script.rb │ │ │ ├── 05 Sorting With Control Flow │ │ │ └── script.rb │ │ │ └── 06 You Did It For Real This Time │ │ │ └── script.rb │ ├── Unit 06 Hashes and Symbols │ │ ├── 01 Hashes and Symbols │ │ │ ├── 01 More on Hashes │ │ │ │ ├── 01 The Story So Far.rb │ │ │ │ ├── 02 Iterating Over Hashes.rb │ │ │ │ ├── 03 Nil a Formal Introduction.rb │ │ │ │ ├── 04 Setting Your Own Default.rb │ │ │ │ └── 05 A Key of a Different Color.rb │ │ │ ├── 02 The Many Faces of Symbols │ │ │ │ ├── 06 Whats a Symbol.rb │ │ │ │ ├── 07 Symbol Syntax.rb │ │ │ │ ├── 08 What are Symbols Used For.rb │ │ │ │ ├── 09 Converting Between Symbols and Strings.rb │ │ │ │ └── 10 Many Paths to the Same Summit.rb │ │ │ └── 03 The Marriage of Hashes and Symbols │ │ │ │ ├── 11 All Aboard The Hash Rocket.rb │ │ │ │ ├── 12 The Hash Rocket Has Landed.rb │ │ │ │ ├── 13 Dare To Compare.rb │ │ │ │ ├── 14 Becoming More Selective.rb │ │ │ │ └── 15 More Methods More Solutions.rb │ │ └── 02 A Night At the Movies │ │ │ ├── 03 The Case Statement.rb │ │ │ └── 04 Prompting Redux.rb │ ├── Unit 07 Refactoring │ │ ├── 01 Zen of Ruby │ │ │ ├── 01 Ruby is a Delight │ │ │ │ └── script.rb │ │ │ ├── 02 A Simpler If │ │ │ │ └── script.rb │ │ │ ├── 03 The One Line Unless │ │ │ │ └── script.rb │ │ │ ├── 04 One Good Turn Deserves a Ternary │ │ │ │ └── script.rb │ │ │ ├── 05 When and Then The Case Statement │ │ │ │ └── script.rb │ │ │ ├── 06 Conditional Assignment │ │ │ │ └── script.rb │ │ │ ├── 07 Now You Try │ │ │ │ └── script.rb │ │ │ ├── 08 Implicit Return │ │ │ │ └── script.rb │ │ │ ├── 09 Short Circuit Evaluation │ │ │ │ └── script.rb │ │ │ ├── 10 The Right Tool for the Job │ │ │ │ └── script.rb │ │ │ ├── 11 Up the Down Staircase │ │ │ │ └── script.rb │ │ │ ├── 12 Call and Response │ │ │ │ └── script.rb │ │ │ ├── 13 Being Pushy │ │ │ │ └── script.rb │ │ │ ├── 14 String Interpolation │ │ │ │ └── script.rb │ │ │ ├── 15 One Liners │ │ │ │ └── script.rb │ │ │ ├── 16 The Ternary Operator │ │ │ │ └── script.rb │ │ │ ├── 17 In Case of Many Options │ │ │ │ └── script.rb │ │ │ ├── 18 Conditional Assignment │ │ │ │ └── script.rb │ │ │ ├── 19 Implicit Return │ │ │ │ └── script.rb │ │ │ └── 20 For Shame │ │ │ │ └── script.rb │ │ └── 02 The Refactor Factory │ │ │ ├── 01 What Youll Be Fixing │ │ │ └── script.rb │ │ │ ├── 02 To Be or Not to Be │ │ │ └── script.rb │ │ │ ├── 03 Omit Needless Words │ │ │ └── script.rb │ │ │ ├── 04 Less is More │ │ │ └── script.rb │ │ │ ├── 05 The Rubyists Loop │ │ │ └── script.rb │ │ │ ├── 06 Final Push │ │ │ └── script.rb │ │ │ └── 07 Nice Work │ │ │ └── script.rb │ ├── Unit 08 Blocks Procs and Lambdas │ │ └── 01 Blocks Procs and Lambdas │ │ │ ├── 01 You Know This │ │ │ └── script.rb │ │ │ ├── 02 Collect em All │ │ │ └── script.rb │ │ │ ├── 03 Learning to Yield │ │ │ └── script.rb │ │ │ ├── 04 Yielding With Parameters │ │ │ └── script.rb │ │ │ ├── 05 Try It Yourself │ │ │ └── script.rb │ │ │ ├── 06 Keeping Your Code DRY │ │ │ └── script.rb │ │ │ ├── 07 Proc Syntax │ │ │ └── script.rb │ │ │ ├── 08 Why Procs │ │ │ └── script.rb │ │ │ ├── 09 Create Your Own │ │ │ └── script.rb │ │ │ ├── 10 Call Me Maybe │ │ │ └── script.rb │ │ │ ├── 11 Symbols Meet Procs │ │ │ └── script.rb │ │ │ ├── 12 The Ruby Lambda │ │ │ └── script.rb │ │ │ ├── 13 Lambda Syntax │ │ │ └── script.rb │ │ │ ├── 14 Lambdas vs Procs │ │ │ └── script.rb │ │ │ ├── 15 Now You Try │ │ │ └── script.rb │ │ │ ├── 17 Been Around the Block a Few Times │ │ │ └── script.rb │ │ │ ├── 18 Creating a Proc │ │ │ └── script.rb │ │ │ ├── 19 Passing Your Proc to a Method │ │ │ └── script.rb │ │ │ ├── 20 Creating a Lambda │ │ │ └── script.rb │ │ │ └── 21 Passing Your Lambda to a Method │ │ │ └── script.rb │ ├── Unit 09 Object Oriented Programming Part I │ │ ├── 01 Object Oriented Programming I │ │ │ ├── 01 Why Classes │ │ │ │ └── script.rb │ │ │ ├── 02 Class Syntax │ │ │ │ └── script.rb │ │ │ ├── 03 Classing It Up │ │ │ │ └── script.rb │ │ │ ├── 04 Whats in a atname │ │ │ │ └── script.rb │ │ │ ├── 05 Instantiating Your First Object │ │ │ │ └── script.rb │ │ │ ├── 06 Scope it Out │ │ │ │ └── script.rb │ │ │ ├── 07 Naming Your Variables │ │ │ │ └── script.rb │ │ │ ├── 08 For Instance │ │ │ │ └── script.rb │ │ │ ├── 09 Twice the at Twice as Classy │ │ │ │ └── script.rb │ │ │ ├── 10 Classe Are Serious Business │ │ │ │ └── script.rb │ │ │ ├── 11 Watch Your Step │ │ │ │ └── script.rb │ │ │ ├── 12 Inheritance Syntax │ │ │ │ └── script.rb │ │ │ ├── 13 Override │ │ │ │ └── script.rb │ │ │ ├── 14 When Good isnt Good Enough │ │ │ │ └── script.rb │ │ │ ├── 15 There Can Be Only One │ │ │ │ └── script.rb │ │ │ ├── 16 Class Basics │ │ │ │ └── script.rb │ │ │ ├── 17 Getting Classsier │ │ │ │ └── script.rb │ │ │ ├── 18 Forge an Object in the Fires of Mount Ruby │ │ │ │ └── script.rb │ │ │ ├── 19 Inheriting Fortune │ │ │ │ └── script.rb │ │ │ └── 20 Up UP and Away │ │ │ │ └── script.rb │ │ └── 02 Virtual Computer │ │ │ ├── 01 What Youll Be Building │ │ │ └── script.rb │ │ │ ├── 02 Create Your Class │ │ │ └── script.rb │ │ │ ├── 03 Fancify Your Initialize Method │ │ │ └── script.rb │ │ │ ├── 04 Have a Little Class │ │ │ └── script.rb │ │ │ ├── 05 Getting More Creative │ │ │ └── script.rb │ │ │ ├── 06 Who re the Users │ │ │ └── script.rb │ │ │ ├── 07 Instantiation Nation │ │ │ └── script.rb │ │ │ └── 08 You Did It │ │ │ └── script.rb │ └── Unit 10 Object Oriented Programming Part II │ │ ├── 01 Object Oriented Programming II │ │ ├── 01 Need to Know Basis │ │ │ └── script.rb │ │ ├── 02 Quick Review Building a Class │ │ │ └── script.rb │ │ ├── 03 Going Public │ │ │ └── script.rb │ │ ├── 04 Private Keep Out │ │ │ └── script.rb │ │ ├── 05 attr reader attr writer │ │ │ └── script.rb │ │ ├── 06 attr accessor │ │ │ └── script.rb │ │ ├── 07 Whats Module │ │ │ └── script.rb │ │ ├── 08 Module Syntax │ │ │ └── script.rb │ │ ├── 09 Resolve to Keep Learning │ │ │ └── script.rb │ │ ├── 10 Few Requirements │ │ │ └── script.rb │ │ ├── 11 Feeling Included │ │ │ └── script.rb │ │ ├── 12 The Marriage of Modules and Classes │ │ │ └── script.rb │ │ ├── 13 Imitating Multiple Inheritance │ │ │ └── script.rb │ │ ├── 14 Extend Your Knowledge │ │ │ └── script.rb │ │ ├── 15 A Matter of Public Knowledge │ │ │ └── script.rb │ │ ├── 16 Private Affairs │ │ │ └── script.rb │ │ ├── 17 Module Magic │ │ │ └── script.rb │ │ └── 18 Mixin for the Win │ │ │ └── script.rb │ │ └── 02 Banking on Ruby │ │ ├── 01 What Youll Be Building │ │ └── script.rb │ │ ├── 02 Creating the Account Class │ │ └── script.rb │ │ ├── 03 Private Affairs │ │ └── cript.rb │ │ ├── 04 Displaying the Balance │ │ └── script.rb │ │ ├── 05 Making a Withdrawal │ │ └── script.rb │ │ ├── 06 Opening an Account │ │ └── script.rb │ │ └── 07 Well Done │ │ └── script.rb └── jQuery │ ├── Unit 01 Introduction to jQuery │ └── readme.md │ ├── Unit 02 jQuery Functions │ └── readme.md │ ├── Unit 03 Dynamic HTML │ └── readme.md │ ├── Unit 04 jQuery Events │ └── readme.md │ └── Unit 05 jQuery Effects │ └── readme.md ├── Non-Trackable Content ├── About You │ └── README.md ├── Animate Your Name │ └── README.md ├── Build a resume │ ├── index.html │ └── stylesheet.css ├── CSS buttons │ ├── index.html │ └── stylesheet.css ├── Checking input │ └── script.js ├── Code year │ ├── A simple counter │ │ ├── index.html │ │ ├── script.js │ │ └── stylesheet.css │ ├── Blackjack Final Game │ │ ├── #2 - It Starts With A Card │ │ │ └── script.js │ │ ├── #3 - Adding getValue │ │ │ └── script.js │ │ └── #4 - Deal It Out │ │ │ └── script.js │ ├── Cash Register Part II │ │ ├── #1 - Let's Get Paid │ │ │ └── script.js │ │ ├── #2 - Dollars and Cents │ │ │ └── script.js │ │ ├── #3 - Yes More recursion │ │ │ └── script.js │ │ ├── #4 - Why so many coins Why │ │ │ └── script.js │ │ ├── #5 - One function to rule them all, and in the darkness bind them │ │ │ └── script.js │ │ ├── #6 - Let's register some cash │ │ │ └── script.js │ │ └── #7 - Recursing over a list │ │ │ └── script.js │ ├── Dice Game │ │ └── script.js │ ├── First website using html and css │ │ ├── index.html │ │ └── stylesheet.css │ ├── FizzBuzz │ │ └── script.js │ ├── Getting Started with Programming │ │ ├── Getting to know you │ │ │ ├── Basic Math │ │ │ │ └── script.js │ │ │ ├── Discover the length │ │ │ │ └── script.js │ │ │ ├── Error does not compute │ │ │ │ └── script.js │ │ │ ├── Numbers and more │ │ │ │ └── script.js │ │ │ └── What is your name │ │ │ │ └── script.js │ │ ├── Make the computer think │ │ │ ├── Comparisons │ │ │ │ └── script.js │ │ │ ├── Computers are smart │ │ │ │ └── script.js │ │ │ ├── Computers aren't that smart │ │ │ │ └── script.js │ │ │ ├── Decisions, decisions │ │ │ │ └── script.js │ │ │ └── More practice with conditionals │ │ │ │ └── script.js │ │ ├── Playing with strings and numbers │ │ │ ├── Math and the modulo │ │ │ │ └── script.js │ │ │ ├── Math │ │ │ │ └── script.js │ │ │ ├── Mid-lesson breather │ │ │ │ └── script.js │ │ │ ├── Modulo and if else │ │ │ │ └── script.js │ │ │ ├── More substring practice │ │ │ │ └── script.js │ │ │ └── Substrings │ │ │ │ └── script.js │ │ ├── Variables │ │ │ ├── Change variable values │ │ │ │ └── script.js │ │ │ ├── Conclusion Part 1 │ │ │ │ └── script.js │ │ │ ├── Conclusion Part 2 │ │ │ │ └── script.js │ │ │ ├── More Variable Practice │ │ │ │ └── script.js │ │ │ └── Variables │ │ │ │ └── script.js │ │ └── Why Learn Programming │ │ │ ├── Data Type III Booleans │ │ │ └── script.js │ │ │ ├── Data Types I & II Numbers & Strings │ │ │ └── script.js │ │ │ ├── Editor and comments │ │ │ └── script.js │ │ │ ├── Interactive JavaScript │ │ │ └── script.js │ │ │ └── What is programming │ │ │ └── script.js │ ├── Javascript Review For jQuery │ │ ├── #1 - Javascript meet jQuery │ │ │ └── index.html │ │ ├── #10 - Objectivism │ │ │ └── script.js │ │ ├── #2 - Is jQuery Really So Great │ │ │ ├── index.html │ │ │ └── script.js │ │ ├── #3 - The Document Object Model DOM │ │ │ └── index.html │ │ ├── #4 - Getting To Know You │ │ │ ├── index.html │ │ │ └── script.js │ │ ├── #5 - Fundamental Functions │ │ │ └── script.js │ │ ├── #6 - Flying First Class Functions │ │ │ └── script.js │ │ ├── #7 - Call(back) me maybe │ │ │ └── script.js │ │ ├── #8 - Up Periscope │ │ │ └── script.js │ │ └── #9 - Functioning Anonymously │ │ │ └── script.js │ ├── More Fun With Arrays │ │ ├── Arrays of Associative Arrays │ │ │ ├── # 21 By reference,I think you've got it │ │ │ │ └── script.js │ │ │ ├── #19 Using associative arrays to describe complex objects │ │ │ │ └── script.js │ │ │ ├── #20 Looping over Arrays of Objects │ │ │ │ └── script.js │ │ │ └── #22 Making Copies │ │ │ │ └── script.js │ │ ├── Associative Arrays │ │ │ ├── #16 When Indexed Arrays Go Bad │ │ │ │ └── script.js │ │ │ ├── #17 When Indexed Arrays Go Bad │ │ │ │ └── script.js │ │ │ └── #18 Looping │ │ │ │ └── script.js │ │ └── Putting It All Together │ │ │ ├── #23 Finding the talent │ │ │ └── script.js │ │ │ ├── #24 Stacking the Deck │ │ │ └── script.js │ │ │ └── #25 Lets Deal │ │ │ └── script.js │ ├── Olympic Tryouts │ │ └── Olympic Tryouts.txt │ ├── Pizza time │ │ └── index.html │ ├── Put it all together - build a resume │ │ ├── index.html │ │ └── stylesheet.css │ └── Starting a startup │ │ └── script.js ├── Date picker │ ├── index.html │ ├── script.js │ └── stylesheet.css ├── Draw with JavaScript │ ├── index.html │ ├── script.js │ └── stylesheet.css ├── Javascript │ ├── Create a Yoda translator in Javascript │ │ ├── Creating the Yoda Translator in Javascript │ │ │ ├── Calling the Yoda Speak API in Mashape - #5 │ │ │ │ └── script.js │ │ │ ├── Other Considerations - #6 │ │ │ │ └── script.js │ │ │ └── Understanding the $ which is jQuery - #4 │ │ │ │ └── script.js │ │ └── Introduction to Mashape │ │ │ ├── Get your Mashape key and drop it in the code - #2 │ │ │ └── script.js │ │ │ ├── Sign up for a Mashape Account - #1 │ │ │ └── script.js │ │ │ └── Test the Yoda Speak API in the Mashape Test Console - #3 │ │ │ └── script.js │ ├── Intro To Genetic Algorithims │ │ ├── #2 - The Weasel Program │ │ │ └── script.js │ │ ├── #3 - Generate A Potential Solution │ │ │ └── script.js │ │ ├── #4 - How Fit │ │ │ └── script.js │ │ ├── #5 - Generate A Gene Pool │ │ │ └── script.js │ │ ├── #6 - Find The Fittest In A Gene Pool │ │ │ └── script.js │ │ ├── #7 - Mutation Of A Genome │ │ │ └── script.js │ │ ├── #8 - Do The Evolution │ │ │ └── script.js │ │ └── #9 - Conclusions │ │ │ └── script.js │ └── Review Of Functions In Javascript │ │ ├── #14 - Function as variable │ │ └── script.js │ │ ├── #15 - Function as argument │ │ └── script.js │ │ ├── #16 - Return a Function │ │ └── script.js │ │ └── #17 - Take it for a spin │ │ └── script.js ├── Multimedia Projects │ ├── Creating a progress bar │ │ ├── index.html │ │ ├── script.js │ │ └── stylesheet.css │ ├── Designing a professional website │ │ ├── index.html │ │ └── stylesheet.css │ └── Making an autocomplete widget │ │ ├── index.html │ │ ├── script.js │ │ └── stylesheet.css ├── Python │ └── Exception Handling Basics │ │ ├── #1 - A big no-no │ │ └── script.py │ │ ├── #2 - Solving the problem │ │ └── script.py │ │ ├── #3 - Or else what │ │ └── script.py │ │ ├── #4 - Finally │ │ └── script.py │ │ ├── #5 - Raising Exceptions │ │ └── script.py │ │ ├── #6 - Exception Handling │ │ └── script.py │ │ └── #7 - Your Turn │ │ └── script.py ├── Sorting your friends │ ├── index.html │ └── stylesheet.css ├── Sun Earth and Code │ └── README.md └── Web form │ ├── index.html │ └── stylesheet.css ├── README.md └── Web Developer Skills ├── Introduction To JavaScript ├── Unit 01 Introduction │ ├── 01 Introduction │ │ └── readme.md │ └── 02 Variables │ │ └── readme.md ├── Unit 02 Control Flow │ └── readme.md ├── Unit 03 Functions │ └── readme.md ├── Unit 04 Scope │ └── readme.md ├── Unit 05 Arrays │ └── readme.md ├── Unit 06 Loops │ └── readme.md ├── Unit 07 Iterators │ └── readme.md ├── Unit 08 Objects │ └── readme.md ├── Unit 09 Classes │ └── readme.md └── Unit 11 Modules │ └── readme.md ├── Learn AngularJS ├── AppMarket │ ├── css │ │ └── main.css │ ├── img │ │ ├── forecast.jpg │ │ ├── gameboard.jpg │ │ ├── move.jpg │ │ └── shutterbugg.jpg │ ├── index.html │ └── js │ │ ├── app.js │ │ ├── controllers │ │ └── MainController.js │ │ ├── directives │ │ ├── appInfo.html │ │ ├── appInfo.js │ │ ├── installApp.html │ │ └── installApp.js │ │ └── shared │ │ ├── angular-mocks.js │ │ └── angular.min.js ├── README.md ├── Unit 1 │ ├── Bolt Network 1 │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ ├── diagmonds_@2X.png │ │ │ ├── logo.svg │ │ │ └── sherlock.jpeg │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ └── MainController.js │ │ │ └── vendor │ │ │ └── angular.min.js │ ├── MOVE Log │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ ├── lunge.jpg │ │ │ ├── pullup.jpg │ │ │ ├── pushup.jpg │ │ │ ├── row.jpg │ │ │ ├── script.js │ │ │ ├── situp.jpg │ │ │ ├── squat.jpg │ │ │ └── stepup.jpg │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ └── MainController.js │ │ │ └── vendor │ │ │ └── angular.min.js │ ├── Pizza Planet │ │ ├── css │ │ │ ├── bg.jpg │ │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ └── MainController.js │ │ │ └── vendor │ │ │ └── angular.min.js │ ├── README.md │ └── Your First App │ │ ├── css │ │ └── main.css │ │ ├── img │ │ ├── program-or-be-programmed.jpg │ │ └── the-book-of-trees.jpg │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers │ │ └── MainController.js │ │ └── shared │ │ ├── angular-mocks.js │ │ ├── angular-route.min.js │ │ └── angular.min.js ├── Unit 2 │ ├── Bolt Network 2 │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ ├── diagmonds_@2X.png │ │ │ ├── logo.svg │ │ │ └── sherlock.jpg │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ └── MainController.js │ │ │ ├── directives │ │ │ ├── programListing.html │ │ │ └── programListing.js │ │ │ └── vendor │ │ │ └── angular.min.js │ ├── Directives │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ ├── forecast.jpg │ │ │ ├── gameboard.jpg │ │ │ ├── move.jpg │ │ │ └── shutterbugg.jpg │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ └── MainController.js │ │ │ ├── directives │ │ │ ├── appInfo.html │ │ │ ├── appInfo.js │ │ │ ├── installApp.html │ │ │ └── installApp.js │ │ │ └── shared │ │ │ ├── angular-mocks.js │ │ │ └── angular.min.js │ ├── Feedster │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ ├── bell.svg │ │ │ ├── cbj.svg │ │ │ ├── dog.jpg │ │ │ ├── fn.svg │ │ │ ├── mh.svg │ │ │ └── wr2.svg │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ └── PostController.js │ │ │ ├── directives │ │ │ ├── feedsterPost.html │ │ │ ├── feedsterPost.js │ │ │ ├── plusOne.html │ │ │ └── plusOne.js │ │ │ └── vendor │ │ │ └── angular.min.js │ └── Gameboard │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers │ │ └── ScoreController.js │ │ ├── directives │ │ ├── game.html │ │ └── game.js │ │ └── vendor │ │ └── angular.min.js ├── Unit 3 │ ├── Outbox 1 │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ └── logo.svg │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ └── HomeController.js │ │ │ ├── services │ │ │ └── emails.js │ │ │ └── vendor │ │ │ └── angular.min.js │ ├── Services │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ └── bg.jpg │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ └── MainController.js │ │ │ ├── services │ │ │ └── forecast.js │ │ │ └── shared │ │ │ ├── angular-mocks.js │ │ │ └── angular.min.js │ └── Top 10 │ │ ├── css │ │ └── main.css │ │ ├── index.html │ │ └── js │ │ ├── app.js │ │ ├── controllers │ │ └── MainController.js │ │ ├── directives │ │ ├── tvShow.html │ │ └── tvShow.js │ │ ├── services │ │ └── shows.js │ │ └── vendor │ │ └── angular.min.js ├── Unit 4 │ ├── Calendar │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ └── logo.svg │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ │ ├── DayController.js │ │ │ │ └── EventController.js │ │ │ ├── services │ │ │ │ └── events.js │ │ │ └── vendor │ │ │ │ └── angular.min.js │ │ └── views │ │ │ ├── day.html │ │ │ └── event.html │ ├── Outbox 2 │ │ ├── css │ │ │ └── main.css │ │ ├── img │ │ │ └── logo.svg │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ │ ├── EmailController.js │ │ │ │ └── HomeController.js │ │ │ ├── services │ │ │ │ ├── email.js │ │ │ │ └── emails.js │ │ │ └── vendor │ │ │ │ └── angular.min.js │ │ └── views │ │ │ ├── email.html │ │ │ └── home.html │ └── Routing │ │ ├── css │ │ └── main.css │ │ ├── img │ │ └── logo.svg │ │ ├── index.html │ │ ├── js │ │ ├── app.js │ │ ├── controllers │ │ │ ├── HomeController.js │ │ │ └── PhotoController.js │ │ ├── services │ │ │ └── photos.js │ │ └── shared │ │ │ ├── angular-mocks.js │ │ │ └── angular.min.js │ │ └── views │ │ ├── home.html │ │ └── photo.html └── Unit 5 │ ├── NearMe 1 │ └── README.md │ ├── NearMe 2 │ ├── MainController.js │ ├── README.md │ ├── helpers.js │ ├── index.html │ └── places.js │ └── NearMe 3 │ └── README.md ├── Learn CSS └── Unit 06 CSS Grid │ └── readme.css ├── Learn Git ├── Basic Git Workflow │ ├── Basic Git Workflow │ │ ├── 02 git init │ │ │ └── readme.md │ │ ├── 03 Git Workflow │ │ │ └── readme.md │ │ ├── 04 git status │ │ │ └── readme.md │ │ ├── 05 git add │ │ │ └── readme.md │ │ ├── 06 git diff │ │ │ └── readme.md │ │ ├── 07 git commit │ │ │ └── readme.md │ │ ├── 08 git log │ │ │ └── readme.md │ │ └── 09 Generalizations │ │ │ └── readme.md │ ├── Getting Started with Git and Github │ │ └── readme.md │ ├── Manhattan Zoo │ │ └── readme.md │ └── SnapFit Robots, Inc │ │ └── readme.md ├── Git Branching │ ├── Birthday Party │ │ └── readme.md │ ├── Git Branching │ │ ├── 01 git branch │ │ │ └── readme.md │ │ ├── 02 branching overview │ │ │ └── readme.md │ │ ├── 03 git branch 2 │ │ │ └── readme.md │ │ ├── 04 git checkout │ │ │ └── readme.md │ │ ├── 05 commit on a new branch │ │ │ └── readme.md │ │ ├── 06 git merge │ │ │ └── readme.md │ │ ├── 07 merge conflict I │ │ │ └── readme.md │ │ ├── 08 merge conflict II │ │ │ └── readme.md │ │ ├── 09 delete branch │ │ │ └── readme.md │ │ └── 10 Generalizations │ │ │ └── readme.md │ └── Ruby Time Calculator │ │ └── readme.md ├── Git Teamwork │ ├── Git Teamwork │ │ ├── 02 git clone │ │ │ └── readme.md │ │ ├── 03 git remote -v │ │ │ └── readme.md │ │ ├── 04 git fetch │ │ │ └── readme.md │ │ ├── 05 git merge │ │ │ └── readme.md │ │ ├── 06 Git workflow │ │ │ └── readme.md │ │ ├── 07 git push │ │ │ └── readme.md │ │ └── 08 generalizations │ │ │ └── readme.md │ ├── JavaScript Homework │ │ └── readme.md │ └── Recipe Book │ │ └── readme.md ├── How to Backtrack in Git │ ├── ASCII Portfolio │ │ └── readme.md │ ├── How to Backtrack │ │ ├── 02 head commit │ │ │ └── readme.md │ │ ├── 03 git checkout │ │ │ └── readme.md │ │ ├── 04 more git add │ │ │ └── readme.md │ │ ├── 05 git reset I │ │ │ └── readme.md │ │ ├── 06 git reset II │ │ │ └── readme.md │ │ ├── 07 git reset review │ │ │ └── readme.md │ │ └── 08 Generalizations │ │ │ └── readme.md │ └── Poem Fiasco │ │ └── readme.md └── README.md ├── Learn JavaScript ├── Unit 01 Introduction to JavaScript │ ├── 01 Introduction to JavaScript │ │ └── readme.md │ └── 02 Variables │ │ └── readme.md ├── Unit 02 Control flow │ └── 02 Control flow │ │ └── readme.md ├── Unit 03 Functions and Scope │ ├── 01 Functions │ │ └── readme.md │ └── 02 Scope │ │ └── readme.md ├── Unit 04 Arrays and Loops │ ├── 01 Arrays │ │ └── readme.md │ └── 02 Loops │ │ └── readme.md ├── Unit 05 JavaScript and jQuery │ └── 01 JavaScript and the DOM │ │ └── readme.md ├── Unit 07 Iterators │ └── 01 Iterators │ │ └── readme.md ├── Unit 08 Objects │ └── 01 Objects │ │ └── readme.md ├── Unit 09 Classes │ └── 01 Classes │ │ └── readme.md ├── Unit 11 Modules │ └── Intermediate JavaScript Modules │ │ └── readme.md └── Unit 12 Requests │ └── 01 Requests │ └── readme.md ├── Learn ReactJS Part I ├── Unit 01 JSX │ ├── 01 Intro to JSX │ │ ├── 02 Hello World │ │ │ └── app.js │ │ ├── 05 JSX Elements │ │ │ └── app.js │ │ ├── 06 Advanced JSX │ │ │ └── app.js │ │ ├── 07 Attributes In JSX │ │ │ └── app.js │ │ ├── 08 Nested JSX │ │ │ └── app.js │ │ ├── 09 JSX Outer Elements │ │ │ └── app.js │ │ ├── 10 Rendering JSX │ │ │ └── app.js │ │ ├── 11 ReactDOMrender I │ │ │ └── app.js │ │ ├── 12 ReactDOMrender II │ │ │ ├── app.js │ │ │ └── index.html │ │ └── 13 Passing a Variable to ReactDOMrender │ │ │ └── app.js │ └── 02 Advanced JSX │ │ ├── 01 class vs className │ │ └── app.js │ │ ├── 02 Self closing Tags │ │ └── app.js │ │ ├── 03 Javascript In Your Javascript │ │ └── app.js │ │ ├── 04 Curly Braces in JSX │ │ └── app.js │ │ ├── 05 20 Digits of Pi in JSX │ │ └── app.js │ │ ├── 06 Variables in JSX │ │ └── app.js │ │ ├── 07 Variable Attributes in JSX │ │ └── app.js │ │ ├── 08 Event Listeners in JSX │ │ └── app.js │ │ ├── 10 JSX Conditionals If Statements That Do Work │ │ └── app.js │ │ ├── 11 JSX Conditionals The Ternary Operator │ │ └── app.js │ │ ├── 12 JSX Conditionals │ │ └── app.js │ │ ├── 13 map in JSX │ │ └── app.js │ │ ├── 14 Keys │ │ └── app.js │ │ └── 15 React createElement │ │ └── app.js ├── Unit 02 React Components │ ├── 01 Your First React Component │ │ ├── 01 Hello World Part II THE COMPONENT │ │ │ └── app.js │ │ ├── 02 Import React │ │ │ └── new.js │ │ ├── 03 Import ReactDOM │ │ │ └── new.js │ │ ├── 04 Create a Component Class │ │ │ └── new.js │ │ ├── 05 Name a Component Class │ │ │ └── new.js │ │ ├── 07 The Render Function │ │ │ └── new.js │ │ ├── 08 Define Instructions ina Function Call │ │ │ └── new.js │ │ ├── 09 Create a Component Instance │ │ │ └── new.js │ │ └── 10 Render A Component │ │ │ └── new.js │ └── 02 Components and Advanced JSX │ │ ├── 01 Use Multiline JSX in a Component │ │ └── app.js │ │ ├── 02 Use a Variable Attribute in a Component │ │ └── app.js │ │ ├── 03 Put Logic in a Render Function │ │ └── app.js │ │ ├── 04 Use a Conditional in a Render Function │ │ └── app.js │ │ ├── 05 Use this in a Component │ │ └── app.js │ │ └── 06 Use an Event Listener in a Component │ │ └── app.js └── Unit 03 Components Interacting │ ├── 01 Components Render Other Components │ ├── 03 Apply a Component in a Render Function │ │ └── ProfilePage.js │ ├── 04 Require A File │ │ └── ProfilePage.js │ ├── 05 module exports │ │ └── NavBar.js │ └── 06 Component Rendering In Action │ │ └── ProfilePage.js │ ├── 02 this props │ ├── 02 Access a Components props │ │ └── PropsDisplayer.js │ ├── 03 Pass props to a Component │ │ └── PropsDisplayer.js │ ├── 04 Render a COmponents props │ │ └── PropsDisplayer.js │ ├── 05 Pass props From Component To Component │ │ ├── App.js │ │ └── Greeting.js │ ├── 06 Render Different UI Based on props │ │ └── app.js │ ├── 07 Put an Event Handler in a COmponent Class │ │ └── Talker.js │ ├── 08 Pass an Event Handler as a prop │ │ └── Talker.js │ ├── 09 Receive an Event Handler as a prop │ │ └── Button.js │ ├── 10 handleEvent onEvent and this props on Event │ │ ├── Button.js │ │ └── Talker.js │ ├── 11 this props children │ │ └── List.js │ └── 12 getDefaultProps │ │ └── Button.js │ └── 03 this states │ ├── 02 getinitialState │ └── app.js │ ├── 03 Access a Components state │ └── App.js │ └── 05 Call this setState from Another Function │ └── Toogle.js ├── Learn ReactJS Part II ├── Unit 01 Stateless Components Inherit From Stateful Components │ ├── 02 Build a Stateful Component Class │ │ └── Parent.js │ ├── 03 Build a Stateless Component Class │ │ └── Child.js │ └── 04 Pass a Component's State │ │ └── Parent.js ├── Unit 02 Child Components Update Their Parent's state │ ├── 02 Define an Event Handler │ │ └── Parent.js │ ├── 03 Pass the Event Handler │ │ └── Parent.js │ └── 04 Receive the Event Handler │ │ └── Child.js ├── Unit 03 Child Components Update Their Siblings' props │ ├── 03 Pass the Right props to the Right Siblings │ │ └── Parent.js │ └── 04 Display Information in a Sibling Component │ │ └── Sibling.js ├── Unit 04 Style │ ├── 02 Inline Styles │ │ └── styleMe.js │ ├── 03 Make A Style Object Variable │ │ └── styleMe.js │ ├── 04 Style Name Syntax │ │ └── styleMe.js │ ├── 05 Style Value Syntax │ │ └── styleMe.js │ └── 06 Share Styles Across Multiple Components │ │ ├── AttentionGrabber.js │ │ ├── Home.js │ │ └── styles.js ├── Unit 05 Container Components From Presentational Components │ └── 02 Separate Container Components From Presentational Components Apply │ │ ├── GuineaPigs.js │ │ └── GuineaPigsContainer.js ├── Unit 06 Stateless Functional Components │ ├── 01 Stateless Functional Components │ │ └── Friend.js │ └── 02 Stateless Functional Components and Props │ │ └── GuineaPigs.js ├── Unit 07 propTypes │ ├── 02 Apply PropTypes │ │ └── BestSeller.js │ ├── 03 Add Properties To PropTypes │ │ ├── BestSeller.js │ │ └── BookList.js │ └── 04 PropTypes in Stateless Functional Components │ │ └── GuineaPigs.js ├── Unit 08 React Forms │ ├── 02 Input onChange │ │ └── Input.js │ ├── 03 Write an Input Event Handler │ │ └── Input.js │ ├── 04 Set the Input's Initial State │ │ └── Input.js │ └── 05 Update an Input's Value │ │ └── Input.js ├── Unit 09 Mounting Lifecycle Methods │ ├── 03 componentWillMount │ │ └── Flashy.js │ └── 05 componentDidMount │ │ └── Flashy.js └── Unit 10 Updating & Unmounting Lifecycle Methods │ ├── 02 componentWillReceiveProps │ └── TopNumber.js │ ├── 03 shouldComponentUpdate │ └── Target.js │ ├── 04 componentWillUpdate │ └── TopNumber.js │ ├── 05 componentDidUpdate │ └── App.js │ └── 06 componentWillUnmount │ └── Enthused.js ├── Learn Ruby on Rails ├── Unit 01 Getting Started │ ├── 03 Controller │ │ └── PagesController.rb │ ├── 04 Routes │ │ └── routes.rb │ └── 05 Views │ │ └── home.html.erb ├── Unit 02 Saving Data │ ├── 02 Model │ │ └── 20170810062836_create_messages.rb │ ├── 03 Controller │ │ ├── messages_controller.rb │ │ └── routes.rb │ ├── 04 View │ │ └── index.html.erb │ └── 05 Create messages I │ │ ├── index.html.erb │ │ ├── messages_controller.rb │ │ ├── new.html.erb │ │ └── routes.rb ├── Unit 03 Associations I │ ├── 02 Models I │ │ ├── destination.rb │ │ └── tag.rb │ ├── 03 Models II │ │ ├── 20170810070335_create_tags.rb │ │ └── 20170810070346_create_destinations.rb │ ├── 04 Display all tags │ │ ├── index.html.erb │ │ ├── routes.rb │ │ └── tags_controller.rb │ ├── 05 Show a tag │ │ ├── index.html.erb │ │ ├── routes.rb │ │ ├── show.html.erb │ │ └── tags_controller.rb │ ├── 06 Show a destination │ │ ├── destinations │ │ │ └── show.html.erb │ │ ├── destinations_controller.rb │ │ ├── routes.rb │ │ └── tags │ │ │ └── show.html.erb │ └── 07 Update a destination I │ │ ├── destinations_controller.rb │ │ ├── edit.html.erb │ │ ├── routes.rb │ │ └── show.html.erb └── Unit 04 Associations II │ ├── 02 Models I │ ├── actor.rb │ ├── movie.rb │ └── part.rb │ ├── 03 Models II │ ├── 20150408012632_create_movies.rb │ ├── 20150408012639_create_actors.rb │ └── 20150408012648_create_parts.rb │ ├── 04 Movies I │ ├── index.html.erb │ ├── movies_controller.rb │ └── routes.rb │ ├── 05 Movies II │ ├── index.html.erb │ ├── movies_controller.rb │ ├── routes.rb │ └── show.html.erb │ └── 06 Actors I │ ├── actors_controller.rb │ ├── index.html.erb │ ├── routes.rb │ └── show.html.erb ├── Learn SQL ├── README.md ├── Unit 01 Manipulation │ ├── 01 Introduction │ │ └── sql.sqlite │ ├── 03 Statements │ │ └── statements.sqlite │ ├── 04 Create │ │ └── create.sqlite │ ├── 05 Insert │ │ └── insert.sqlite │ ├── 06 Select │ │ └── select.sqlite │ ├── 07 Update │ │ └── update.sqlite │ └── 08 Alter │ │ └── alter.sqlite └── Unit 02 Queries │ ├── 01 Queries │ └── query.sqlite │ ├── 02 Select-II │ └── select.sqlite │ ├── 03 Select Distinct │ └── distinct.sqlite │ ├── 04 Where │ └── where.sqlite │ ├── 05 Like-I │ └── like-i.sqlite │ ├── 06 Like-II │ └── like-ii.sqlite │ └── 07 Between │ └── between.sqlite ├── Learn Sass ├── Unit 01 Create a Sass Stylesheet │ └── 01 Your First Sass Stylesheet │ │ ├── 02 Compiling Sass │ │ └── bash │ │ ├── 04 Nesting Selectors │ │ ├── main.css │ │ └── main.scss │ │ ├── 05 Nesting Properties │ │ ├── main.css │ │ └── main.scss │ │ ├── 06 Variables In Sass │ │ ├── main.css │ │ └── main.scss │ │ ├── 07 Sassy Types │ │ ├── main.css │ │ └── main.scss │ │ └── 08 Maps and Lists │ │ ├── main.css │ │ └── main.scss ├── Unit 02 Mixins and the & Selector │ └── 01 Mixins and the and Selector │ │ ├── 01 The and Selector in Nesting │ │ ├── main.css │ │ └── main.scss │ │ ├── 02 What is a Mixin │ │ ├── main.css │ │ └── main.scss │ │ ├── 03 Mixins Arguments │ │ ├── main.css │ │ └── main.scss │ │ ├── 04 Default Value Arguments │ │ ├── main.css │ │ └── main.scss │ │ ├── 05 Mixin Facts │ │ ├── main.css │ │ └── main.scss │ │ ├── 06 List Arguments │ │ ├── main.css │ │ └── main.scss │ │ ├── 07 String Interpolation │ │ └── main.scss │ │ └── 08 The and Selector in Mixins │ │ ├── main.css │ │ └── main.scss ├── Unit 03 Functions and Operations │ └── 01 Functions and Operations │ │ ├── 02 Arithmetic and Color │ │ ├── main.css │ │ └── main.scss │ │ ├── 03 Color Functions │ │ ├── main.css │ │ └── main.scss │ │ ├── 04 Arithmetic │ │ └── main.scss │ │ ├── 05 Division Can Be Special │ │ ├── main.css │ │ └── main.scss │ │ ├── 06 Each Loops │ │ ├── main.css │ │ └── main.scss │ │ ├── 07 For Loops │ │ ├── main.css │ │ └── main.scss │ │ └── 08 Conditionals │ │ └── main.scss └── Unit 04 Sustainable SCSS │ └── 01 Sustainable SCSS │ ├── 03 AtImport in SCSS │ ├── main.css │ └── main.scss │ ├── 04 Organize with Partials │ ├── main.css │ └── main.scss │ ├── 05 atExtend │ ├── main.css │ └── main.scss │ ├── 06 Placeholders │ ├── _placeholders.scss │ ├── main.css │ └── main.scss │ └── 07 Extend vs Mixin │ ├── _mixins.scss │ ├── _placeholders.scss │ ├── main.css │ └── main.scss ├── Learn the Command Line ├── README.md ├── Unit 01 Navigating the File System │ └── 01 Navigation │ │ ├── 01 Your First Command │ │ └── bash │ │ ├── 03 Filesystem │ │ └── bash │ │ ├── 04 pwd │ │ └── bash │ │ ├── 05 cd I │ │ └── bash │ │ ├── 06 cd II │ │ └── bash │ │ ├── 07 mkdir │ │ └── bash │ │ ├── cd I │ │ └── bash │ │ └── cd II │ │ └── bash ├── Unit 02 Viewing and Changing the FIle System │ └── 01 Manipulation │ │ ├── 01 ls revisited │ │ └── bash │ │ ├── 02 ls -a │ │ └── bash │ │ ├── 03 ls -l │ │ └── bash │ │ ├── 04 ls -alt │ │ └── bash │ │ ├── 05 cp I │ │ └── bash │ │ ├── 06 cp II │ │ └── bash │ │ └── 07 Wildcards │ │ └── bash ├── Unit 03 Redirecting Input and Output │ └── 01 Redirection │ │ ├── 01 Redirection │ │ └── bash │ │ ├── 02 stdin stdout and stderr │ │ └── bash │ │ ├── 03 Your first redirect │ │ └── bash │ │ ├── 04 Greater Symbol │ │ └── bash │ │ ├── 05 Double Greater Symbol │ │ └── bash │ │ ├── 06 Greater Symbol │ │ └── bash │ │ ├── 07 Vertical Bar │ │ └── bash │ │ ├── 08 sort │ │ └── bash │ │ ├── 09 uniq │ │ └── bash │ │ ├── 10 grep I │ │ └── bash │ │ └── 11 grep II │ │ └── bash └── Unit 04 Configuring the Environment │ └── 01 Environment │ ├── 01 Environment │ └── bash │ ├── 02 nano │ └── bash │ ├── 03 Bash Profile │ └── bash │ ├── 04 Aliases I │ └── bash │ ├── 05 Aliases II │ └── bash │ ├── 06 Environment Variables │ └── bash │ ├── 07 PS1 │ └── bash │ ├── 08 HOME │ └── bash │ └── 09 PATH │ └── bash ├── Make a Website ├── README.md ├── Unit 1 Site Structure │ └── README.md ├── Unit 2 A Closer Look at CSS │ └── README.md ├── Unit 3 Boundaries and Space │ └── README.md └── Unit 4 Building with Bootstrap │ └── README.md ├── Make an Interactive Website ├── Preview ├── Program skeleton ├── README.md └── Respond to a click ├── README.md ├── Ruby on Rails - Authentication ├── README.md ├── Unit 01 Authentication │ ├── 02 User model │ │ ├── Gemfile │ │ └── user.rb │ ├── 03 User migration │ │ └── 20170810094157_create_users.rb │ ├── 04 Signup I │ │ ├── new.html.erb │ │ ├── routes.rb │ │ └── users_controller.rb │ ├── 05 Signup II │ │ └── user_controller.rb │ ├── 07 Login I │ │ ├── new.html.erb │ │ ├── routes.rb │ │ └── session_controller.rb │ ├── 08 Login II │ │ ├── routes.rb │ │ └── session_controller.rb │ ├── 09 Logout │ │ ├── routes.rb │ │ └── session_controller.rb │ ├── 10 current_user │ │ └── application_controller.rb │ └── 11 Filters │ │ ├── albums_controller.rb │ │ └── application.html.erb └── Unit 02 Authorization │ ├── 02 Roles │ └── 20150509215157_create_users.rb │ ├── 03 Editor Role I │ └── user.rb │ ├── 04 Editor Role II │ ├── application_controller.rb │ ├── recipes_controller.rb │ └── show.html.erb │ ├── 05 Admin Role I │ └── user.rb │ └── 06 Admin Role II │ ├── application_controller.rb │ ├── recipes_controller.rb │ └── show.html.erb └── SQL - Analyzing Business Metrics └── readme.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .iml 3 | -------------------------------------------------------------------------------- /APIs/How to use APIs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIs/How to use APIs/JavaScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/How to use APIs/JavaScript/README.md -------------------------------------------------------------------------------- /APIs/How to use APIs/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/How to use APIs/Python/README.md -------------------------------------------------------------------------------- /APIs/How to use APIs/Ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/How to use APIs/Ruby/README.md -------------------------------------------------------------------------------- /APIs/JavaScript APis/Apigee API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/JavaScript APis/Apigee API/README.md -------------------------------------------------------------------------------- /APIs/JavaScript APis/Deezer API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/JavaScript APis/Deezer API/README.md -------------------------------------------------------------------------------- /APIs/JavaScript APis/Mandrill API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/JavaScript APis/Mandrill API/README.md -------------------------------------------------------------------------------- /APIs/JavaScript APis/SoundCloud API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/JavaScript APis/SoundCloud API/README.md -------------------------------------------------------------------------------- /APIs/JavaScript APis/Sunlight API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/JavaScript APis/Sunlight API/README.md -------------------------------------------------------------------------------- /APIs/JavaScript APis/YouTube API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/JavaScript APis/YouTube API/README.md -------------------------------------------------------------------------------- /APIs/Python APIs/Dwolla API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Python APIs/Dwolla API/README.md -------------------------------------------------------------------------------- /APIs/Python APIs/NHTSA API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Python APIs/NHTSA API/README.md -------------------------------------------------------------------------------- /APIs/Python APIs/NPR API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Python APIs/NPR API/README.md -------------------------------------------------------------------------------- /APIs/Python APIs/Sunlight API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Python APIs/Sunlight API/README.md -------------------------------------------------------------------------------- /APIs/Python APIs/WePay API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Python APIs/WePay API/README.md -------------------------------------------------------------------------------- /APIs/Ruby APIs/Box API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Ruby APIs/Box API/README.md -------------------------------------------------------------------------------- /APIs/Ruby APIs/EasyPost API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Ruby APIs/EasyPost API/README.md -------------------------------------------------------------------------------- /APIs/Ruby APIs/Evernote API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Ruby APIs/Evernote API/README.md -------------------------------------------------------------------------------- /APIs/Ruby APIs/GitHub API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Ruby APIs/GitHub API/README.md -------------------------------------------------------------------------------- /APIs/Ruby APIs/SendGrid API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Ruby APIs/SendGrid API/README.md -------------------------------------------------------------------------------- /APIs/Ruby APIs/Twitter API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Ruby APIs/Twitter API/README.md -------------------------------------------------------------------------------- /APIs/Ruby APIs/WePay API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/APIs/Ruby APIs/WePay API/README.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Language Skills/HTML & CSS/Unit 01 Introduction to HTML/01 HTML Basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/HTML & CSS/Unit 01 Introduction to HTML/01 HTML Basics/README.md -------------------------------------------------------------------------------- /Language Skills/HTML & CSS/Unit 01 Introduction to HTML/02 Build Your Own Webpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/HTML & CSS/Unit 01 Introduction to HTML/02 Build Your Own Webpage/README.md -------------------------------------------------------------------------------- /Language Skills/HTML & CSS/Unit 02 HTML Structure using lists/02 HTML Basics II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/HTML & CSS/Unit 02 HTML Structure using lists/02 HTML Basics II/README.md -------------------------------------------------------------------------------- /Language Skills/HTML & CSS/Unit 04 Introduction to CSS/01 CSS An Overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/HTML & CSS/Unit 04 Introduction to CSS/01 CSS An Overview/README.md -------------------------------------------------------------------------------- /Language Skills/HTML & CSS/Unit 05 Classes and IDs/01 CSS Selectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/HTML & CSS/Unit 05 Classes and IDs/01 CSS Selectors/README.md -------------------------------------------------------------------------------- /Language Skills/HTML & CSS/Unit 05 Classes and IDs/02 Sorting Your Friends/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/HTML & CSS/Unit 05 Classes and IDs/02 Sorting Your Friends/README.md -------------------------------------------------------------------------------- /Language Skills/HTML & CSS/Unit 06 CSS element position/01 CSS Positioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/HTML & CSS/Unit 06 CSS element position/01 CSS Positioning/README.md -------------------------------------------------------------------------------- /Language Skills/HTML & CSS/Unit 06 CSS element position/02 Build a Resume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/HTML & CSS/Unit 06 CSS element position/02 Build a Resume/README.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 02 Functions/01 Introduction to Functions in JS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 02 Functions/01 Introduction to Functions in JS/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 02 Functions/02 Build Rock, Paper, Scissors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 02 Functions/02 Build Rock, Paper, Scissors/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 03 For Loops in JavaScript/02 Search Text for Your Name/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 03 For Loops in JavaScript/02 Search Text for Your Name/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 04 While loops in JavaScript/02 Dragon Slayer!/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 04 While loops in JavaScript/02 Dragon Slayer!/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 05 Control Flow/01 More on Control Flow in JS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 05 Control Flow/01 More on Control Flow in JS/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 05 Control Flow/02 Code Your Own Adventure 2!/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 05 Control Flow/02 Code Your Own Adventure 2!/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 06 Data Structures/01 Arrays and Objects in JS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 06 Data Structures/01 Arrays and Objects in JS/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 06 Data Structures/02 Contact List/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 06 Data Structures/02 Contact List/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 07 Objects I/01 Introduction to Objects I/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 07 Objects I/01 Introduction to Objects I/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 07 Objects I/02 Building an Address Book/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 07 Objects I/02 Building an Address Book/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 08 Objects II/01 Introduction to Objects II/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 08 Objects II/01 Introduction to Objects II/readme.md -------------------------------------------------------------------------------- /Language Skills/JavaScript/Unit 08 Objects II/02 Building a Cash Register/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/JavaScript/Unit 08 Objects II/02 Building a Cash Register/readme.md -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/01 Whats your name/YourName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/01 Whats your name/YourName.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/02 Data Types I int/DataTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/02 Data Types I int/DataTypes.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/03 Data Types II boolean/DataTypesB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/03 Data Types II boolean/DataTypesB.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/04 Data Types III char/DataTypesC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/04 Data Types III char/DataTypesC.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/05 Variables/Variables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/05 Variables/Variables.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/06 Whitespace/Whitespace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/06 Whitespace/Whitespace.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/07 Comments/Comments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/07 Comments/Comments.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/08 Math/Arithmetic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/08 Math/Arithmetic.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/09 Math/Modulo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/09 Math/Modulo.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/11 Equality Operators/EqualityOperators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/11 Equality Operators/EqualityOperators.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/01 Introduction to Java/12 Generalizations/Generalizations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/01 Introduction to Java/12 Generalizations/Generalizations.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/02 Conditionals and Control Flow/02 Boolean Operators/And.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/02 Conditionals and Control Flow/02 Boolean Operators/And.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/02 Conditionals and Control Flow/03 Boolean Operators II/Or.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/02 Conditionals and Control Flow/03 Boolean Operators II/Or.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/02 Conditionals and Control Flow/04 Boolean Operators/Not.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/02 Conditionals and Control Flow/04 Boolean Operators/Not.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/02 Conditionals and Control Flow/06 If Statement/If.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/02 Conditionals and Control Flow/06 If Statement/If.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/02 Conditionals and Control Flow/07 If Else Statement/IfElse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/02 Conditionals and Control Flow/07 If Else Statement/IfElse.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/02 Conditionals and Control Flow/09 Ternary Conditional/Ternary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/02 Conditionals and Control Flow/09 Ternary Conditional/Ternary.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/02 Conditionals and Control Flow/10 Switch Statement/Switch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/02 Conditionals and Control Flow/10 Switch Statement/Switch.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/02 Classes Syntax/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/02 Classes Syntax/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/03 Classes Constructors/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/03 Classes Constructors/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/04 Classes Instance Variables/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/04 Classes Instance Variables/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/05 Classes Constructor Parameters/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/05 Classes Constructor Parameters/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/07 Objects/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/07 Objects/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/08 Methods I/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/08 Methods I/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/09 Using Methods I/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/09 Using Methods I/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/10 Methods II/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/10 Methods II/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/11 Using Methods II/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/11 Using Methods II/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/12 Inheritance/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/12 Inheritance/Dog.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/03 Object Oriented Java/13 Generalizations/Coffee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/03 Object Oriented Java/13 Generalizations/Coffee.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/02 For Loop/For.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/02 For Loop/For.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/03 ArrayList/Temperatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/03 ArrayList/Temperatures.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/04 ArrayList Manipulation/Temperatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/04 ArrayList Manipulation/Temperatures.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/05 ArrayList Access/Temperatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/05 ArrayList Access/Temperatures.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/06 ArrayList Insertion/TemperaturesB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/06 ArrayList Insertion/TemperaturesB.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/07 Iterating over an ArrayList/TemperaturesC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/07 Iterating over an ArrayList/TemperaturesC.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/08 For Each Loop/TemperaturesForEach.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/08 For Each Loop/TemperaturesForEach.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/09 HashMap/Restaurant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/09 HashMap/Restaurant.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/10 HashMap Manipulation/Restaurant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/10 HashMap Manipulation/Restaurant.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/11 HashMap Access/Restaurant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/11 HashMap Access/Restaurant.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/12 Iterating over a HashMap/RestaurantForEach.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/12 Iterating over a HashMap/RestaurantForEach.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/04 Data Structures/13 Generalizations/GeneralizationsD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/04 Data Structures/13 Generalizations/GeneralizationsD.java -------------------------------------------------------------------------------- /Language Skills/Learn Java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Learn Java/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 01 Introduction to PHP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 01 Introduction to PHP/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 02 Control Flow If and Else/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 02 Control Flow If and Else/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 03 Control Flow Switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 03 Control Flow Switch/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 04 Arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 04 Arrays/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 05 Loops For and Foreach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 05 Loops For and Foreach/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 06 Loops While and Do-While/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 06 Loops While and Do-While/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 07 Functions Part I/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 07 Functions Part I/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 08 Functions Part II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 08 Functions Part II/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 09 Object Oriented Programming Part I/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 09 Object Oriented Programming Part I/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 10 Object Oriented Programming Part II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 10 Object Oriented Programming Part II/README.md -------------------------------------------------------------------------------- /Language Skills/PHP/Unit 11 Advanced Arrays and Maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/PHP/Unit 11 Advanced Arrays and Maps/README.md -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Comments/Multi-Lines Comment.py: -------------------------------------------------------------------------------- 1 | """ eai jovem 2 | blz 3 | """ 4 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Comments/Single Line Comments.py: -------------------------------------------------------------------------------- 1 | # haha 2 | 3 | mysterious_variable = 42 4 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Math Operations/Exponantiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Math Operations/Exponantiation.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Math Operations/Modulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Math Operations/Modulo.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Math Operations/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Math Operations/math.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Review/Bringing It All Together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Review/Bringing It All Together.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Varibles and Data Types/Booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Varibles and Data Types/Booleans.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Varibles and Data Types/Variables.py: -------------------------------------------------------------------------------- 1 | # Write your code below! 2 | my_variable = 10 3 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Varibles and Data Types/welcome.py: -------------------------------------------------------------------------------- 1 | print "Welcome to Python!" 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/01 Python Syntax/Whitespace and Statements/a matter of interpretation.py: -------------------------------------------------------------------------------- 1 | spam = True 2 | eggs = False 3 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/1-The Meal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/1-The Meal.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/2-The tax.py: -------------------------------------------------------------------------------- 1 | meal = 44.50 2 | tax = 0.0675 3 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/3-The tip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/3-The tip.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/4-Reassign in a single line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/4-Reassign in a single line.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/5-The total.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 01 Python Syntax/02 Tip Calculator/5-The total.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 02 Strings and Console Output/02 Date and Time/4-Hot Date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 02 Strings and Console Output/02 Date and Time/4-Hot Date.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 02 Strings and Console Output/02 Date and Time/5-Pretty time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 02 Strings and Console Output/02 Date and Time/5-Pretty time.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 02 Strings and Console Output/02 Date and Time/6-Grand Finale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 02 Strings and Console Output/02 Date and Time/6-Grand Finale.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 03 Conditionals and Control Flow/02 PygLatin/PygLatin PART1/2-Ahoy.py: -------------------------------------------------------------------------------- 1 | print 'Pig Latin' 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 03 Conditionals and Control Flow/02 PygLatin/PygLatin PART2/7-Ay B C.py: -------------------------------------------------------------------------------- 1 | pyg = 'ay' 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/12-On beyond Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/12-On beyond Strings.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/13-max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/13-max.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/14-min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/14-min.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/15-abs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/15-abs.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/16-type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Built In Functions/16-type.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Function Syntax/2- Function Junction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Function Syntax/2- Function Junction.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Function Syntax/3-Call and Response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Function Syntax/3-Call and Response.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Function Syntax/6-Practice Makes perfect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Function Syntax/6-Practice Makes perfect.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/10-Universal Imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/10-Universal Imports.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/11-Here be Dragons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/11-Here be Dragons.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/7-I know Kung Fu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/7-I know Kung Fu.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/8-Generic Imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/8-Generic Imports.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/9-Function Imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Importing Modules/9-Function Imports.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Review/17-Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Review/17-Functions.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Review/18-Modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Review/18-Modules.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/01 Functions/Review/19-Builtin Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 04 Functions/01 Functions/Review/19-Builtin Functions.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 04 Functions/02 Taking a Vacation/Review of Functions/1-Before we begin.py: -------------------------------------------------------------------------------- 1 | def answer(): 2 | return 42 3 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 06 Student Becomes the Teacher/02 Just Average/7-Sending a Letter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 06 Student Becomes the Teacher/02 Just Average/7-Sending a Letter.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 06 Student Becomes the Teacher/02 Just Average/8-Part of the Whole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 06 Student Becomes the Teacher/02 Just Average/8-Part of the Whole.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 07 Lists and Functions/01 Lists and Functions/List Recap/1-List accessing.py: -------------------------------------------------------------------------------- 1 | n = [1, 3, 5] 2 | 3 | # Add your code below 4 | print n[1] 5 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Dont Sinc my Battleship/1-Welcome to Battleship.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Dont Sinc my Battleship/2-Getting Our Feet Wet.py: -------------------------------------------------------------------------------- 1 | board = [] 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Hit or Miss/10-You Win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Hit or Miss/10-You Win.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Hit or Miss/12-Bad Aim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Hit or Miss/12-Bad Aim.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Hit or Miss/13-Not Again.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Hit or Miss/13-Not Again.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Hit or Miss/14-Test Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 07 Lists and Functions/02 Battleship/Hit or Miss/14-Test Run.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/10-For your hobbies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/10-For your hobbies.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/11-For your Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/11-For your Strings.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/12-For your A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/12-For your A.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/13-For your lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/13-For your lists.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/9-for your Health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/For Loops/9-for your Health.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/14-Looping over a Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/14-Looping over a Dictionary.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/15-Counting as you go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/15-Counting as you go.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/16-Multiple Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/16-Multiple Lists.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/17-For, Else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/17-For, Else.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/18-Change it Up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/18-Change it Up.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/19-Create your own.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/19-Create your own.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/1-While you're here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/1-While you're here.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/2-Condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/2-Condition.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/3-While You're at it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/3-While You're at it.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/4-Simple Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/4-Simple Errors.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/5-Infinite Loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/5-Infinite Loops.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/6-Break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/6-Break.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/7-While and Else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/01 Loops/Step Up 'For's/While Loops/7-While and Else.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/1-Practice! Practice, Practice!.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/2-is_even.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/2-is_even.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/3-is_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/3-is_int.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/4-digit_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/4-digit_sum.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/5-Factorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/5-Factorial.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/6-is_prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Fun with Numbers/6-is_prime.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Listing your problems/11-Count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Listing your problems/11-Count.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Listing your problems/12-purify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Listing your problems/12-purify.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Listing your problems/15-Median.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/Listing your problems/15-Median.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/String it together/10-censor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/String it together/10-censor.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/String it together/7-Reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 08 Loops/02 Practice makes perfect/String it together/7-Reverse.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/01 Review/1-Lets look at those grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 09 Exam Statistics/01 Review/1-Lets look at those grades.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/01 Review/2-Print those grades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 09 Exam Statistics/01 Review/2-Print those grades.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/01 Review/3-Review.py: -------------------------------------------------------------------------------- 1 | print "Let's compute some stats!" 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/02 The average grade/4-The sum of scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 09 Exam Statistics/02 The average grade/4-The sum of scores.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/02 The average grade/5-Computing the Average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 09 Exam Statistics/02 The average grade/5-Computing the Average.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/02 The average grade/6-Review.py: -------------------------------------------------------------------------------- 1 | print "Time to conquer the variance!" 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/03 Do the grades vary/7-The Variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 09 Exam Statistics/03 Do the grades vary/7-The Variance.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/03 Do the grades vary/8-Standard Deviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 09 Exam Statistics/03 Do the grades vary/8-Standard Deviation.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/03 Do the grades vary/9-Review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 09 Exam Statistics/03 Do the grades vary/9-Review.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 09 Exam Statistics/examstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 09 Exam Statistics/examstats.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 10 Advanced Topics in Python/02 Introduction to Bitwise Operators/The Bitwise Operators/7-A BIT of This AND That.py: -------------------------------------------------------------------------------- 1 | print bin(0b1110 & 0b101) 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 10 Advanced Topics in Python/02 Introduction to Bitwise Operators/The Bitwise Operators/8-A BIT of This OR That.py: -------------------------------------------------------------------------------- 1 | print bin(0b1110 | 0b101) 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 10 Advanced Topics in Python/02 Introduction to Bitwise Operators/The Bitwise Operators/9-This XOR That.py: -------------------------------------------------------------------------------- 1 | print bin(0b1110 ^ 0b101) 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 11 Introduction to Classes/02 Classes/Using Classes/9-Inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 11 Introduction to Classes/02 Classes/Using Classes/9-Inheritance.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 12 File Input and Output/01 Introduction to file I-O/2-The open Function.py: -------------------------------------------------------------------------------- 1 | my_file = open("output.txt", "r+") 2 | -------------------------------------------------------------------------------- /Language Skills/Python/Unit 12 File Input and Output/01 Introduction to file I-O/3-Writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 12 File Input and Output/01 Introduction to file I-O/3-Writing.py -------------------------------------------------------------------------------- /Language Skills/Python/Unit 12 File Input and Output/01 Introduction to file I-O/4-Reading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Python/Unit 12 File Input and Output/01 Introduction to file I-O/4-Reading.py -------------------------------------------------------------------------------- /Language Skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/README.md -------------------------------------------------------------------------------- /Language Skills/Ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/README.md -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/01 Variables & Data Types/01 Overview and Sneak Peek/script.rb: -------------------------------------------------------------------------------- 1 | # Welcome to Ruby! 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/01 Variables & Data Types/03 Variables/script.rb: -------------------------------------------------------------------------------- 1 | my_num = 100 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/01 Variables & Data Types/04 Math/script.rb: -------------------------------------------------------------------------------- 1 | 3**13 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/01 Variables & Data Types/05 puts and print/script.rb: -------------------------------------------------------------------------------- 1 | puts "Double spaced" 2 | print "A line" 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/02 String Methods/06 Everything in Ruby is an Object/script.rb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/02 String Methods/07 The length Method/script.rb: -------------------------------------------------------------------------------- 1 | "Sassafras".length 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/02 String Methods/08 The reverse Method/script.rb: -------------------------------------------------------------------------------- 1 | "Sassafras".reverse 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/03 Writing Good Code/10 Single Line Comments/script.rb: -------------------------------------------------------------------------------- 1 | # Commentary 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/03 Writing Good Code/11 Multi Line Comments/script.rb: -------------------------------------------------------------------------------- 1 | =begin 2 | Commenting 3 | Code 4 | =end 5 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/01 Introduction to Ruby/03 Writing Good Code/12 Naming Conventions/script.rb: -------------------------------------------------------------------------------- 1 | name = "Sam" 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/02 Putting the Form in Formatter/01 Methods Methods Everywhere/02 Prompting The User/script.rb: -------------------------------------------------------------------------------- 1 | print "What's your first name?" 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 01 Introduction to Ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 01 Introduction to Ruby/README.md -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 02 Control Flow in Ruby/01 Control Flow in Ruby/01 Introduction to Control Flow/02 If/script.rb: -------------------------------------------------------------------------------- 1 | if true 2 | print "hello" 3 | end -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 02 Control Flow in Ruby/01 Control Flow in Ruby/04. Review/15 Unless/script.rb: -------------------------------------------------------------------------------- 1 | unless false 2 | puts "hello" 3 | end -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 02 Control Flow in Ruby/02 Thith Meanth War/02 Getting user input/script.rb: -------------------------------------------------------------------------------- 1 | print "Get me some text" 2 | user_input = gets.chomp -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 02 Control Flow in Ruby/02 Thith Meanth War/03 Downcase/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 02 Control Flow in Ruby/02 Thith Meanth War/03 Downcase/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/01 The While Loop/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/01 The While Loop/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/03 The Until Loop/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/03 The Until Loop/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/05 The For Loop/script.rb: -------------------------------------------------------------------------------- 1 | for num in 1...10 2 | puts num 3 | end -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/08 The Loop Method/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/08 The Loop Method/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/09 Next/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/09 Next/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/1. The While Loop/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/1. The While Loop/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/10 Saving Multiple Values/script.rb: -------------------------------------------------------------------------------- 1 | my_array = [1, 2, 3, 4, 5] -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/12 Try It Out/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/12 Try It Out/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/12. Try It Out/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/12. Try It Out/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/13 The times Iterator/script.rb: -------------------------------------------------------------------------------- 1 | 2.times { print "Ruby" } -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/13. The times Iterator/script.rb: -------------------------------------------------------------------------------- 1 | 2.times { print "Ruby" } -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/16 Looping with For/script.rb: -------------------------------------------------------------------------------- 1 | for i in 1..50 2 | print i 3 | i += 1 4 | end 5 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/16. Looping with For/script.rb: -------------------------------------------------------------------------------- 1 | for i in 1..50 2 | print i 3 | i += 1 4 | end 5 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/18 Iterating with times/script.rb: -------------------------------------------------------------------------------- 1 | 30.times{ print "Ruby!" } 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/18. Iterating with times/script.rb: -------------------------------------------------------------------------------- 1 | 30.times{ print "Ruby!" } 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/3. The Until Loop/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/3. The Until Loop/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/5. The For Loop/script.rb: -------------------------------------------------------------------------------- 1 | for num in 1...10 2 | puts num 3 | end -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/9. Next/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 03 Looping with Ruby/01 Loops & Iterators/9. Next/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/01 Creating Arrays/script.rb: -------------------------------------------------------------------------------- 1 | my_array = [1,23,3,4,5,6,7] 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/02 Access by Index/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/02 Access by Index/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/04 Arrays of Arrays/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/04 Arrays of Arrays/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/05 Create Your Own/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/05 Create Your Own/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/07 Using Hash.new/script.rb: -------------------------------------------------------------------------------- 1 | pets = Hash.new 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/08 Adding to a Hash/script.rb: -------------------------------------------------------------------------------- 1 | pets = Hash.new 2 | pets["Bob"]="dog" 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/14 Multidimensional Arrays/script.rb: -------------------------------------------------------------------------------- 1 | my_array = [[1,2],[3,4]] 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/15 Hashes/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 04 Arrays and Hashes/01 Data Structures/15 Hashes/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/02 Create a Histogram/02 You Know the Drill/script.rb: -------------------------------------------------------------------------------- 1 | puts "input: " 2 | text = gets.chomp 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 04 Arrays and Hashes/02 Create a Histogram/08 You Did It/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 04 Arrays and Hashes/02 Create a Histogram/08 You Did It/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 05 Blocks and Sorting/01 Methods Blocks and Sorting/06 Splat/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 05 Blocks and Sorting/01 Methods Blocks and Sorting/06 Splat/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 05 Blocks and Sorting/01 Methods Blocks and Sorting/18 Blocks/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 05 Blocks and Sorting/01 Methods Blocks and Sorting/18 Blocks/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 05 Blocks and Sorting/02 Ordering Your Library/02 Defining Our Method/script.rb: -------------------------------------------------------------------------------- 1 | def alphabetize() 2 | end 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 05 Blocks and Sorting/02 Ordering Your Library/03 Default Parameters/script.rb: -------------------------------------------------------------------------------- 1 | def alphabetize(arr, rev=false) 2 | end 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 05 Blocks and Sorting/02 Ordering Your Library/04 Sorting/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 05 Blocks and Sorting/02 Ordering Your Library/04 Sorting/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 06 Hashes and Symbols/01 Hashes and Symbols/01 More on Hashes/01 The Story So Far.rb: -------------------------------------------------------------------------------- 1 | my_hash = { "one" => 1} 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 06 Hashes and Symbols/01 Hashes and Symbols/01 More on Hashes/04 Setting Your Own Default.rb: -------------------------------------------------------------------------------- 1 | no_nil_hash = ["unil"] 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 06 Hashes and Symbols/02 A Night At the Movies/03 The Case Statement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 06 Hashes and Symbols/02 A Night At the Movies/03 The Case Statement.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 06 Hashes and Symbols/02 A Night At the Movies/04 Prompting Redux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 06 Hashes and Symbols/02 A Night At the Movies/04 Prompting Redux.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/01 Ruby is a Delight/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/01 Ruby is a Delight/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/02 A Simpler If/script.rb: -------------------------------------------------------------------------------- 1 | # Type your Ruby code below! 2 | puts "Hi!" if true 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/03 The One Line Unless/script.rb: -------------------------------------------------------------------------------- 1 | # Type your Ruby code below! 2 | puts "Hi!" unless false 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/06 Conditional Assignment/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/06 Conditional Assignment/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/07 Now You Try/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/07 Now You Try/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/08 Implicit Return/script.rb: -------------------------------------------------------------------------------- 1 | def multiple_of_three(n) 2 | n % 3 == 0 ? "True" : "False" 3 | end 4 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/09 Short Circuit Evaluation/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/09 Short Circuit Evaluation/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/10 The Right Tool for the Job/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/10 The Right Tool for the Job/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/11 Up the Down Staircase/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/11 Up the Down Staircase/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/12 Call and Response/script.rb: -------------------------------------------------------------------------------- 1 | age = 26 2 | # Add your code below! 3 | age.respond_to?(:next) 4 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/13 Being Pushy/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/13 Being Pushy/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/14 String Interpolation/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/14 String Interpolation/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/15 One Liners/script.rb: -------------------------------------------------------------------------------- 1 | puts "One is less than two!" if 1 < 2 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/16 The Ternary Operator/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/16 The Ternary Operator/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/17 In Case of Many Options/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/17 In Case of Many Options/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/18 Conditional Assignment/script.rb: -------------------------------------------------------------------------------- 1 | favorite_animal ||= "Python" 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/19 Implicit Return/script.rb: -------------------------------------------------------------------------------- 1 | def square(n) 2 | n**2 3 | end 4 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/01 Zen of Ruby/20 For Shame/script.rb: -------------------------------------------------------------------------------- 1 | 3.times do puts "I'm a refactoring master!" end 2 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/02 To Be or Not to Be/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/02 To Be or Not to Be/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/03 Omit Needless Words/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/03 Omit Needless Words/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/04 Less is More/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/04 Less is More/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/05 The Rubyists Loop/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/05 The Rubyists Loop/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/06 Final Push/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/06 Final Push/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/07 Nice Work/script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/Ruby/Unit 07 Refactoring/02 The Refactor Factory/07 Nice Work/script.rb -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 08 Blocks Procs and Lambdas/01 Blocks Procs and Lambdas/01 You Know This/script.rb: -------------------------------------------------------------------------------- 1 | # Write your code below! 2 | 5.times do 3 | puts "I'm a block!" 4 | end 5 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 08 Blocks Procs and Lambdas/01 Blocks Procs and Lambdas/10 Call Me Maybe/script.rb: -------------------------------------------------------------------------------- 1 | hi = Proc.new { puts "Hello!" } 2 | hi.call 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 09 Object Oriented Programming Part I/01 Object Oriented Programming I/02 Class Syntax/script.rb: -------------------------------------------------------------------------------- 1 | class Person 2 | end 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 10 Object Oriented Programming Part II/01 Object Oriented Programming II/08 Module Syntax/script.rb: -------------------------------------------------------------------------------- 1 | module MyLibrary 2 | FAVE_BOOK = "Capital" 3 | end 4 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 10 Object Oriented Programming Part II/01 Object Oriented Programming II/09 Resolve to Keep Learning/script.rb: -------------------------------------------------------------------------------- 1 | # Write your code below! 2 | puts Math::PI 3 | -------------------------------------------------------------------------------- /Language Skills/Ruby/Unit 10 Object Oriented Programming Part II/01 Object Oriented Programming II/10 Few Requirements/script.rb: -------------------------------------------------------------------------------- 1 | require 'date' 2 | 3 | puts Date.today 4 | -------------------------------------------------------------------------------- /Language Skills/jQuery/Unit 01 Introduction to jQuery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/jQuery/Unit 01 Introduction to jQuery/readme.md -------------------------------------------------------------------------------- /Language Skills/jQuery/Unit 02 jQuery Functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/jQuery/Unit 02 jQuery Functions/readme.md -------------------------------------------------------------------------------- /Language Skills/jQuery/Unit 03 Dynamic HTML/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/jQuery/Unit 03 Dynamic HTML/readme.md -------------------------------------------------------------------------------- /Language Skills/jQuery/Unit 04 jQuery Events/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/jQuery/Unit 04 jQuery Events/readme.md -------------------------------------------------------------------------------- /Language Skills/jQuery/Unit 05 jQuery Effects/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Language Skills/jQuery/Unit 05 jQuery Effects/readme.md -------------------------------------------------------------------------------- /Non-Trackable Content/About You/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/About You/README.md -------------------------------------------------------------------------------- /Non-Trackable Content/Animate Your Name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Animate Your Name/README.md -------------------------------------------------------------------------------- /Non-Trackable Content/Build a resume/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Build a resume/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Build a resume/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Build a resume/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/CSS buttons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/CSS buttons/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/CSS buttons/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/CSS buttons/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Checking input/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Checking input/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/A simple counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/A simple counter/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/A simple counter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/A simple counter/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/A simple counter/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/A simple counter/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Blackjack Final Game/#2 - It Starts With A Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Blackjack Final Game/#2 - It Starts With A Card/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Blackjack Final Game/#3 - Adding getValue/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Blackjack Final Game/#3 - Adding getValue/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Blackjack Final Game/#4 - Deal It Out/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Blackjack Final Game/#4 - Deal It Out/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Cash Register Part II/#1 - Let's Get Paid/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Cash Register Part II/#1 - Let's Get Paid/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Cash Register Part II/#2 - Dollars and Cents/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Cash Register Part II/#2 - Dollars and Cents/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Cash Register Part II/#3 - Yes More recursion/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Cash Register Part II/#3 - Yes More recursion/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Cash Register Part II/#4 - Why so many coins Why/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Cash Register Part II/#4 - Why so many coins Why/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Cash Register Part II/#6 - Let's register some cash/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Cash Register Part II/#6 - Let's register some cash/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Cash Register Part II/#7 - Recursing over a list/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Cash Register Part II/#7 - Recursing over a list/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Dice Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Dice Game/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/First website using html and css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/First website using html and css/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/First website using html and css/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/First website using html and css/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/FizzBuzz/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/FizzBuzz/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Getting to know you/Basic Math/script.js: -------------------------------------------------------------------------------- 1 | 3+4; 2 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Getting to know you/Discover the length/script.js: -------------------------------------------------------------------------------- 1 | "Sam".length 2 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Getting to know you/Error does not compute/script.js: -------------------------------------------------------------------------------- 1 | banana; 2 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Getting to know you/Numbers and more/script.js: -------------------------------------------------------------------------------- 1 | 3*5/2; 2 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Getting to know you/What is your name/script.js: -------------------------------------------------------------------------------- 1 | "Sam"; 2 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Variables/Variables/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Getting Started with Programming/Variables/Variables/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Why Learn Programming/Data Type III Booleans/script.js: -------------------------------------------------------------------------------- 1 | "I'm coding like a champ!".length > 10; 2 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Why Learn Programming/Data Types I & II Numbers & Strings/script.js: -------------------------------------------------------------------------------- 1 | "Why am I so sad?".length; 2 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Getting Started with Programming/Why Learn Programming/What is programming/script.js: -------------------------------------------------------------------------------- 1 | prompt("what is 5+12?"); 2 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Javascript Review For jQuery/#10 - Objectivism/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Javascript Review For jQuery/#10 - Objectivism/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Javascript Review For jQuery/#4 - Getting To Know You/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Javascript Review For jQuery/#4 - Getting To Know You/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Javascript Review For jQuery/#4 - Getting To Know You/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Javascript Review For jQuery/#4 - Getting To Know You/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Javascript Review For jQuery/#7 - Call(back) me maybe/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Javascript Review For jQuery/#7 - Call(back) me maybe/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Javascript Review For jQuery/#8 - Up Periscope/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Javascript Review For jQuery/#8 - Up Periscope/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/More Fun With Arrays/Arrays of Associative Arrays/#22 Making Copies/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/More Fun With Arrays/Associative Arrays/#18 Looping/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/More Fun With Arrays/Associative Arrays/#18 Looping/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/More Fun With Arrays/Putting It All Together/#23 Finding the talent/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/More Fun With Arrays/Putting It All Together/#24 Stacking the Deck/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/More Fun With Arrays/Putting It All Together/#25 Lets Deal/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Olympic Tryouts/Olympic Tryouts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Olympic Tryouts/Olympic Tryouts.txt -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Pizza time/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Pizza time/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Put it all together - build a resume/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Put it all together - build a resume/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Put it all together - build a resume/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Put it all together - build a resume/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Code year/Starting a startup/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Code year/Starting a startup/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Date picker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Date picker/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Date picker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Date picker/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Date picker/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Date picker/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Draw with JavaScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Draw with JavaScript/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Draw with JavaScript/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Draw with JavaScript/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Draw with JavaScript/stylesheet.css: -------------------------------------------------------------------------------- 1 | canvas { 2 | border: 1px dotted black; 3 | } 4 | -------------------------------------------------------------------------------- /Non-Trackable Content/Javascript/Intro To Genetic Algorithims/#2 - The Weasel Program/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Javascript/Intro To Genetic Algorithims/#2 - The Weasel Program/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Javascript/Intro To Genetic Algorithims/#4 - How Fit/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Javascript/Intro To Genetic Algorithims/#4 - How Fit/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Javascript/Intro To Genetic Algorithims/#8 - Do The Evolution/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Javascript/Intro To Genetic Algorithims/#8 - Do The Evolution/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Javascript/Intro To Genetic Algorithims/#9 - Conclusions/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Javascript/Intro To Genetic Algorithims/#9 - Conclusions/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Multimedia Projects/Creating a progress bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Multimedia Projects/Creating a progress bar/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Multimedia Projects/Creating a progress bar/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Multimedia Projects/Creating a progress bar/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Multimedia Projects/Creating a progress bar/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Multimedia Projects/Creating a progress bar/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Multimedia Projects/Designing a professional website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Multimedia Projects/Designing a professional website/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Multimedia Projects/Designing a professional website/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Multimedia Projects/Designing a professional website/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Multimedia Projects/Making an autocomplete widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Multimedia Projects/Making an autocomplete widget/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Multimedia Projects/Making an autocomplete widget/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Multimedia Projects/Making an autocomplete widget/script.js -------------------------------------------------------------------------------- /Non-Trackable Content/Multimedia Projects/Making an autocomplete widget/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Multimedia Projects/Making an autocomplete widget/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Python/Exception Handling Basics/#1 - A big no-no/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Python/Exception Handling Basics/#1 - A big no-no/script.py -------------------------------------------------------------------------------- /Non-Trackable Content/Python/Exception Handling Basics/#2 - Solving the problem/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Python/Exception Handling Basics/#2 - Solving the problem/script.py -------------------------------------------------------------------------------- /Non-Trackable Content/Python/Exception Handling Basics/#3 - Or else what/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Python/Exception Handling Basics/#3 - Or else what/script.py -------------------------------------------------------------------------------- /Non-Trackable Content/Python/Exception Handling Basics/#4 - Finally/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Python/Exception Handling Basics/#4 - Finally/script.py -------------------------------------------------------------------------------- /Non-Trackable Content/Python/Exception Handling Basics/#5 - Raising Exceptions/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Python/Exception Handling Basics/#5 - Raising Exceptions/script.py -------------------------------------------------------------------------------- /Non-Trackable Content/Python/Exception Handling Basics/#6 - Exception Handling/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Python/Exception Handling Basics/#6 - Exception Handling/script.py -------------------------------------------------------------------------------- /Non-Trackable Content/Python/Exception Handling Basics/#7 - Your Turn/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Python/Exception Handling Basics/#7 - Your Turn/script.py -------------------------------------------------------------------------------- /Non-Trackable Content/Sorting your friends/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Sorting your friends/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Sorting your friends/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Sorting your friends/stylesheet.css -------------------------------------------------------------------------------- /Non-Trackable Content/Sun Earth and Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Sun Earth and Code/README.md -------------------------------------------------------------------------------- /Non-Trackable Content/Web form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Web form/index.html -------------------------------------------------------------------------------- /Non-Trackable Content/Web form/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Non-Trackable Content/Web form/stylesheet.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 01 Introduction/01 Introduction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 01 Introduction/01 Introduction/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 01 Introduction/02 Variables/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 01 Introduction/02 Variables/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 02 Control Flow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 02 Control Flow/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 03 Functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 03 Functions/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 04 Scope/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 04 Scope/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 05 Arrays/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 05 Arrays/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 06 Loops/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 06 Loops/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 07 Iterators/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 07 Iterators/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 08 Objects/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 08 Objects/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 09 Classes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 09 Classes/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Introduction To JavaScript/Unit 11 Modules/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Introduction To JavaScript/Unit 11 Modules/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/img/forecast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/img/forecast.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/img/gameboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/img/gameboard.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/img/move.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/img/move.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/img/shutterbugg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/img/shutterbugg.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('AppMarketApp', []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/js/directives/appInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/js/directives/appInfo.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/js/directives/appInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/js/directives/appInfo.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/js/directives/installApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/js/directives/installApp.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/js/directives/installApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/js/directives/installApp.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/js/shared/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/js/shared/angular-mocks.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/AppMarket/js/shared/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/AppMarket/js/shared/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/img/diagmonds_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/img/diagmonds_@2X.png -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/img/logo.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/img/sherlock.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/img/sherlock.jpeg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("BoltNetworkApp", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Bolt Network 1/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/lunge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/lunge.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/pullup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/pullup.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/pushup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/pushup.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/row.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/row.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/script.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/situp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/situp.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/squat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/squat.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/stepup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/img/stepup.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("MoveLogApp", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/MOVE Log/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/css/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/css/bg.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("PizzaPlanetApp", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Pizza Planet/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Your First App/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/img/program-or-be-programmed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Your First App/img/program-or-be-programmed.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/img/the-book-of-trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Your First App/img/the-book-of-trees.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Your First App/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("myApp", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/shared/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/shared/angular-mocks.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/shared/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/shared/angular-route.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/shared/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 1/Your First App/js/shared/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/img/diagmonds_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/img/diagmonds_@2X.png -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/img/logo.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/img/sherlock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/img/sherlock.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("BoltNetworkApp", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/directives/programListing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/directives/programListing.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/directives/programListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/directives/programListing.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Bolt Network 2/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/img/forecast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/img/forecast.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/img/gameboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/img/gameboard.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/img/move.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/img/move.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/img/shutterbugg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/img/shutterbugg.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('AppMarketApp', []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/directives/appInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/directives/appInfo.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/directives/appInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/directives/appInfo.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/directives/installApp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/directives/installApp.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/directives/installApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/directives/installApp.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/shared/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/shared/angular-mocks.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/shared/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Directives/js/shared/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/bell.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/cbj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/cbj.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/dog.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/fn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/fn.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/mh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/mh.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/wr2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/img/wr2.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("FeedsterApp", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/controllers/PostController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/controllers/PostController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/directives/feedsterPost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/directives/feedsterPost.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/directives/feedsterPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/directives/feedsterPost.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/directives/plusOne.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/directives/plusOne.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/directives/plusOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/directives/plusOne.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Feedster/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("GameboardApp", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/controllers/ScoreController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/controllers/ScoreController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/directives/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/directives/game.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/directives/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/directives/game.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 2/Gameboard/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/img/logo.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("OutboxApp", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/js/controllers/HomeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/js/controllers/HomeController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/js/services/emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/js/services/emails.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Outbox 1/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Services/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Services/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Services/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Services/img/bg.jpg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Services/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Services/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('ForecastApp', []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Services/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Services/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Services/js/services/forecast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Services/js/services/forecast.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Services/js/shared/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Services/js/shared/angular-mocks.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Services/js/shared/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Services/js/shared/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Top 10/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Top 10/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Top 10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Top 10/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module("Top10App", []); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/controllers/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/controllers/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/directives/tvShow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/directives/tvShow.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/directives/tvShow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/directives/tvShow.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/services/shows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/services/shows.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 3/Top 10/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/img/logo.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/app.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/controllers/DayController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/controllers/DayController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/controllers/EventController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/controllers/EventController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/services/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/services/events.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/views/day.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/views/day.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Calendar/views/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Calendar/views/event.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/img/logo.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/app.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/controllers/EmailController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/controllers/EmailController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/controllers/HomeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/controllers/HomeController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/services/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/services/email.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/services/emails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/services/emails.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/js/vendor/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/views/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/views/email.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Outbox 2/views/home.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/css/main.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/img/logo.svg -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/app.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/controllers/HomeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/controllers/HomeController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/controllers/PhotoController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/controllers/PhotoController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/services/photos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/services/photos.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/shared/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/shared/angular-mocks.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/shared/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/js/shared/angular.min.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/views/home.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 4/Routing/views/photo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 4/Routing/views/photo.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 5/NearMe 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 5/NearMe 1/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/MainController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/MainController.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/helpers.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/index.html -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/places.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 5/NearMe 2/places.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn AngularJS/Unit 5/NearMe 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn AngularJS/Unit 5/NearMe 3/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn CSS/Unit 06 CSS Grid/readme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn CSS/Unit 06 CSS Grid/readme.css -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/02 git init/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git init 3 | ``` -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/03 Git Workflow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/03 Git Workflow/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/04 git status/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git status 3 | ``` -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/05 git add/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git add 3 | ``` 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/06 git diff/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git diff 3 | ``` -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/07 git commit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/07 git commit/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Basic Git Workflow/08 git log/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git log 3 | ``` 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Getting Started with Git and Github/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Basic Git Workflow/Getting Started with Git and Github/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/Manhattan Zoo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Basic Git Workflow/Manhattan Zoo/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Basic Git Workflow/SnapFit Robots, Inc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Basic Git Workflow/SnapFit Robots, Inc/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Birthday Party/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Birthday Party/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/01 git branch/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git branch 3 | ``` -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/02 branching overview/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Git Branching/02 branching overview/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/03 git branch 2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Git Branching/03 git branch 2/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/04 git checkout/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git checkout 3 | ``` -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/05 commit on a new branch/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Git Branching/05 commit on a new branch/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/06 git merge/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Git Branching/06 git merge/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/07 merge conflict I/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Git Branching/07 merge conflict I/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/08 merge conflict II/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Git Branching/08 merge conflict II/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/09 delete branch/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Git Branching/09 delete branch/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Git Branching/10 Generalizations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Git Branching/10 Generalizations/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Branching/Ruby Time Calculator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Branching/Ruby Time Calculator/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/02 git clone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/02 git clone/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/03 git remote -v/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git remote -v 3 | ``` 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/04 git fetch/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git fetch 3 | ``` 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/05 git merge/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/05 git merge/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/06 Git workflow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/06 Git workflow/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/07 git push/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git push origin your_branch_name 3 | ``` -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/08 generalizations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Teamwork/Git Teamwork/08 generalizations/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/JavaScript Homework/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Teamwork/JavaScript Homework/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/Git Teamwork/Recipe Book/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/Git Teamwork/Recipe Book/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/How to Backtrack in Git/ASCII Portfolio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/How to Backtrack in Git/ASCII Portfolio/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/How to Backtrack in Git/How to Backtrack/02 head commit/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git show HEAD 3 | ``` 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/How to Backtrack in Git/How to Backtrack/05 git reset I/readme.md: -------------------------------------------------------------------------------- 1 | ```script.js 2 | git reset HEAD 3 | ``` -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/How to Backtrack in Git/Poem Fiasco/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/How to Backtrack in Git/Poem Fiasco/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn Git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Git/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 01 Introduction to JavaScript/02 Variables/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 01 Introduction to JavaScript/02 Variables/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 02 Control flow/02 Control flow/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 02 Control flow/02 Control flow/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 03 Functions and Scope/01 Functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 03 Functions and Scope/01 Functions/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 03 Functions and Scope/02 Scope/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 03 Functions and Scope/02 Scope/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 04 Arrays and Loops/01 Arrays/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 04 Arrays and Loops/01 Arrays/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 04 Arrays and Loops/02 Loops/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 04 Arrays and Loops/02 Loops/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 07 Iterators/01 Iterators/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 07 Iterators/01 Iterators/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 08 Objects/01 Objects/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 08 Objects/01 Objects/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 09 Classes/01 Classes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 09 Classes/01 Classes/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 11 Modules/Intermediate JavaScript Modules/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 11 Modules/Intermediate JavaScript Modules/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn JavaScript/Unit 12 Requests/01 Requests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn JavaScript/Unit 12 Requests/01 Requests/readme.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/01 Intro to JSX/02 Hello World/app.js: -------------------------------------------------------------------------------- 1 | var h1 =

Hello world

; 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/01 Intro to JSX/05 JSX Elements/app.js: -------------------------------------------------------------------------------- 1 |

Hello world

2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/01 Intro to JSX/06 Advanced JSX/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/01 Intro to JSX/06 Advanced JSX/app.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/01 Intro to JSX/08 Nested JSX/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/01 Intro to JSX/08 Nested JSX/app.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/01 Intro to JSX/10 Rendering JSX/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/01 Intro to JSX/10 Rendering JSX/app.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/02 Advanced JSX/13 map in JSX/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/02 Advanced JSX/13 map in JSX/app.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/02 Advanced JSX/14 Keys/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part I/Unit 01 JSX/02 Advanced JSX/14 Keys/app.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part I/Unit 02 React Components/01 Your First React Component/02 Import React/new.js: -------------------------------------------------------------------------------- 1 | var React = require('react'); 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part II/Unit 04 Style/02 Inline Styles/styleMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part II/Unit 04 Style/02 Inline Styles/styleMe.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part II/Unit 04 Style/04 Style Name Syntax/styleMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part II/Unit 04 Style/04 Style Name Syntax/styleMe.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part II/Unit 04 Style/05 Style Value Syntax/styleMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part II/Unit 04 Style/05 Style Value Syntax/styleMe.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part II/Unit 07 propTypes/02 Apply PropTypes/BestSeller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part II/Unit 07 propTypes/02 Apply PropTypes/BestSeller.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn ReactJS Part II/Unit 08 React Forms/02 Input onChange/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn ReactJS Part II/Unit 08 React Forms/02 Input onChange/Input.js -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 01 Getting Started/04 Routes/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 01 Getting Started/04 Routes/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 01 Getting Started/05 Views/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 01 Getting Started/05 Views/home.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 02 Saving Data/03 Controller/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 02 Saving Data/03 Controller/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 02 Saving Data/04 View/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 02 Saving Data/04 View/index.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 02 Saving Data/05 Create messages I/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 02 Saving Data/05 Create messages I/new.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 02 Saving Data/05 Create messages I/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 02 Saving Data/05 Create messages I/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/02 Models I/destination.rb: -------------------------------------------------------------------------------- 1 | class Destination < ActiveRecord::Base 2 | belongs_to :tag 3 | end 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/02 Models I/tag.rb: -------------------------------------------------------------------------------- 1 | class Tag < ActiveRecord::Base 2 | has_many :destinations 3 | end 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/04 Display all tags/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/04 Display all tags/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/05 Show a tag/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/05 Show a tag/index.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/05 Show a tag/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/05 Show a tag/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/05 Show a tag/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/05 Show a tag/show.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/06 Show a destination/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 03 Associations I/06 Show a destination/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/02 Models I/actor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/02 Models I/actor.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/02 Models I/movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/02 Models I/movie.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/02 Models I/part.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/02 Models I/part.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/04 Movies I/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/04 Movies I/index.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/04 Movies I/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/04 Movies I/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/05 Movies II/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/05 Movies II/index.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/05 Movies II/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/05 Movies II/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/05 Movies II/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/05 Movies II/show.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/06 Actors I/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/06 Actors I/index.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/06 Actors I/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/06 Actors I/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/06 Actors I/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn Ruby on Rails/Unit 04 Associations II/06 Actors I/show.html.erb -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 01 Manipulation/01 Introduction/sql.sqlite: -------------------------------------------------------------------------------- 1 | SELECT * FROM celebs; 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 01 Manipulation/03 Statements/statements.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 01 Manipulation/03 Statements/statements.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 01 Manipulation/04 Create/create.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 01 Manipulation/04 Create/create.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 01 Manipulation/05 Insert/insert.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 01 Manipulation/05 Insert/insert.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 01 Manipulation/06 Select/select.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 01 Manipulation/06 Select/select.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 01 Manipulation/07 Update/update.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 01 Manipulation/07 Update/update.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 01 Manipulation/08 Alter/alter.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 01 Manipulation/08 Alter/alter.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 02 Queries/01 Queries/query.sqlite: -------------------------------------------------------------------------------- 1 | SELECT name, imdb_rating FROM movies; 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 02 Queries/02 Select-II/select.sqlite: -------------------------------------------------------------------------------- 1 | SELECT DISTINCT genre FROM movies; 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 02 Queries/03 Select Distinct/distinct.sqlite: -------------------------------------------------------------------------------- 1 | SELECT * FROM movies WHERE imdb_rating > 8; 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 02 Queries/04 Where/where.sqlite: -------------------------------------------------------------------------------- 1 | SELECT * FROM movies 2 | WHERE name LIKE 'Se_en'; 3 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 02 Queries/05 Like-I/like-i.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 02 Queries/05 Like-I/like-i.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 02 Queries/06 Like-II/like-ii.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 02 Queries/06 Like-II/like-ii.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn SQL/Unit 02 Queries/07 Between/between.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn SQL/Unit 02 Queries/07 Between/between.sqlite -------------------------------------------------------------------------------- /Web Developer Skills/Learn Sass/Unit 04 Sustainable SCSS/01 Sustainable SCSS/07 Extend vs Mixin/_placeholders.scss: -------------------------------------------------------------------------------- 1 | %center { 2 | position: absolute 3 | } 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Learn the Command Line/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/Unit 01 Navigating the File System/01 Navigation/01 Your First Command/bash: -------------------------------------------------------------------------------- 1 | $ ls 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/Unit 01 Navigating the File System/01 Navigation/03 Filesystem/bash: -------------------------------------------------------------------------------- 1 | $ pwd 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/Unit 01 Navigating the File System/01 Navigation/06 cd II/bash: -------------------------------------------------------------------------------- 1 | $ cd ../feb 2 | $ mkdir media 3 | $ 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/Unit 01 Navigating the File System/01 Navigation/cd II/bash: -------------------------------------------------------------------------------- 1 | $ cd ../feb 2 | $ mkdir media 3 | $ 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/Unit 02 Viewing and Changing the FIle System/01 Manipulation/02 ls -a/bash: -------------------------------------------------------------------------------- 1 | $ ls -l 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/Unit 02 Viewing and Changing the FIle System/01 Manipulation/03 ls -l/bash: -------------------------------------------------------------------------------- 1 | $ ls 2 | $ cd comedy 3 | $ ls -alt 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/Unit 04 Configuring the Environment/01 Environment/01 Environment/bash: -------------------------------------------------------------------------------- 1 | $ nano hello.txt 2 | -------------------------------------------------------------------------------- /Web Developer Skills/Learn the Command Line/Unit 04 Configuring the Environment/01 Environment/07 PS1/bash: -------------------------------------------------------------------------------- 1 | >> echo $HOME 2 | /home/ccuser 3 | >> 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Make a Website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Make a Website/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Make a Website/Unit 1 Site Structure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Make a Website/Unit 1 Site Structure/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Make a Website/Unit 2 A Closer Look at CSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Make a Website/Unit 2 A Closer Look at CSS/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Make a Website/Unit 3 Boundaries and Space/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Make a Website/Unit 3 Boundaries and Space/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Make a Website/Unit 4 Building with Bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Make a Website/Unit 4 Building with Bootstrap/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Make an Interactive Website/Preview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Make an Interactive Website/Preview -------------------------------------------------------------------------------- /Web Developer Skills/Make an Interactive Website/Program skeleton: -------------------------------------------------------------------------------- 1 | var main = function() { 2 | }; 3 | $(document).ready(main); 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Make an Interactive Website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Make an Interactive Website/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Make an Interactive Website/Respond to a click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Make an Interactive Website/Respond to a click -------------------------------------------------------------------------------- /Web Developer Skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Ruby on Rails - Authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Ruby on Rails - Authentication/README.md -------------------------------------------------------------------------------- /Web Developer Skills/Ruby on Rails - Authentication/Unit 01 Authentication/02 User model/user.rb: -------------------------------------------------------------------------------- 1 | class User < ActiveRecord::Base 2 | has_secure_password 3 | end 4 | -------------------------------------------------------------------------------- /Web Developer Skills/Ruby on Rails - Authentication/Unit 01 Authentication/07 Login I/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Ruby on Rails - Authentication/Unit 01 Authentication/07 Login I/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/Ruby on Rails - Authentication/Unit 01 Authentication/09 Logout/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/Ruby on Rails - Authentication/Unit 01 Authentication/09 Logout/routes.rb -------------------------------------------------------------------------------- /Web Developer Skills/SQL - Analyzing Business Metrics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ummahusla/Codecademy-Exercise-Answers/HEAD/Web Developer Skills/SQL - Analyzing Business Metrics/readme.md --------------------------------------------------------------------------------