http://stackoverflow.com/questions/8786564/cannot-push-to-heroku-because-key-fingerprint
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
$(document).ready(function(){ | |
//RELEASE 0: | |
//Link this script and the jQuery library to the jquery_example.html file and analyze what this code does. | |
$('body').css({'background-color': 'pink'}) | |
//RELEASE 1: | |
//Add code here to select elements of the DOM | |
bodyElement = $('body') |
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
Psuedocode for the NYC apartment listing scraper: | |
Please focus on: | |
1) User stories | |
2) functionality | |
3) Specific funtions of the webpage, ruby code, api and database | |
Api's suggested: (put api name and what data we will be getting) | |
Psuedocde starts here: |
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
class Boggle_Board | |
attr_reader :dice_grid | |
def initialize (dice_grid) | |
@dice_grid = dice_grid | |
end | |
# This takes a specfied set of coordinates in the form of multiple 2 element | |
# arrays. | |
# Without the splat operators, I get rb:11:in `create_word': wrong number of |