| OBJECTIVE |
|---|
| To become familiar with the conceptual elements (grid, navs, navbar, ...) of Bootstrap, and use those tools to design a responsive page layout. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Kyle is the best |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // #1 | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="/script/script.js" type="text/javascript"></script> | |
| <link rel="sytlesheet" type="text/css" href="/style/style.css"> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <!-- SQL XML created by WWW SQL Designer, http://code.google.com/p/wwwsqldesigner/ --> | |
| <!-- Active URL: http://ondras.zarovi.cz/sql/demo/ --> | |
| <sql> | |
| <datatypes db="mysql"> | |
| <group label="Numeric" color="rgb(238,238,170)"> | |
| <type label="TINYINT" length="0" sql="TINYINT" quote=""/> | |
| <type label="SMALLINT" length="0" sql="SMALLINT" quote=""/> | |
| <type label="MEDIUMINT" length="0" sql="MEDIUMINT" quote=""/> | |
| <type label="INT" length="0" sql="INT" quote=""/> |
HW! Monday 10/15/2013
1.) Please try to complete any assignment that you have outstanding and check them in.
2.) Please do some reading on Rspec. This is a great place to start:
Be sure to read this part: http://rubydoc.info/gems/rspec-rails/frames
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Building Ruby Familiarity | |
| # In this exercise you will take a first look at some common commands in Ruby | |
| # The idea here is to build familiary with Ruby syntax | |
| # This will likely be the first time you've seen some of these commands | |
| # Just type them in and see the displayed output | |
| # Steps: | |
| # 1. Open up a new terminal window | |
| # 2. Launch irb |
I didn't get time to examine the detailed action flow of your code to offer detailed logic improvements, if any exist. Just following the guidelines I created the following...
- Need to delete README.rdoc and create a new README.md
- You made commit comments in German - should be English for other devs to understand summary of scope of change
- You should add .DS_Store to your .gitignore file so that is is not committed by default.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Please write some tests for your first Project. This is backwards from the way it "should" be | |
| -- haha, some Rspec humor for ya!! | |
| Make sure to include at least one Model test and one Controller test. These are tests for | |
| your Ruby code only. | |
| I will randomly call on students in each class to describe the tests they wrote and why, so | |
| please do your homework! :) | |
| Tomorrow we will learn about testing in JavaScript. If you want to do some reading up ahead |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # happy_tails.rb | |
| # Spencer Eldred | |
| # Sept 27, 2013 | |
| # Activity: | |
| # You are the manager at HappiTails animal shelter. You need to manage your shelter by storing and manipulating information about clients and animals. | |
| # Object Specs: | |
| # Animal: | |
| # An animal should have a name, an age, a gender, a species, and can have multiple toys. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "Rumoji" # See; https://github.com/mwunsch/rumoji | |
| # Customize grid space and player icons as emoji charcters from: http://www.emoji-cheat-sheet.com/ | |
| require "Rainbow" | |
| class Grid | |
| attr_accessor :production_run, :player_x_moves, :player_o_moves | |
| def initialize(production_run, player_x_moves, player_o_moves) | |
| @is_debug_mode = false # set to true to invoke debugging statements if needed... |
OlderNewer