- Eloquent JavaScript's chapter on object-oriented programming and "The Secret Life of Objects"
- MDN's "Working with Objects" and "Introduction to Object-Oriented JavaScript"
- This StackOverflow answer about the
newkeyword alongside MDN's own documentation of it.
- Atlassian's "Try Pair Programming"
- Julia Evans's "Pair Programming" and "Pair Programming is Amazing! Except…when it's not."
- Pivotal Labs' Pair programming considered extremely beneficial
- This FastCompany profile of PivotalLabs
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
| <html> | |
| <head> | |
| <script type="text/javascript"> | |
| // Use the Client ID listed in your Google Developer Console at https://console.developers.google.com | |
| var CLIENT_ID = '454902952557-abre33ugffprg6bhmd6ln4g4fkeuhpic.apps.googleusercontent.com'; | |
| var SCOPES = ['https://www.googleapis.com/auth/drive.metadata.readonly']; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <button id='aapl'>AAPL</button> | |
| <script> |
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
| <html> | |
| <head> | |
| <style> | |
| #clickme { | |
| height:600px; | |
| width:600px; | |
| background-color:blue; | |
| float:left; | |
| } | |
| #invisible { |
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
| <html> | |
| <head> | |
| <style> | |
| #container { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; |
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
| <html> | |
| <head> | |
| <style> | |
| #one,#two,#three { | |
| position: absolute; | |
| height: 400px; | |
| width: 300px; | |
| transition: .6s; | |
| } |
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
| ################################################################# | |
| # Steps to install the basic tools needed for working | |
| # with Git and Github for the DGMD Summer 2015 Program | |
| # Run each of these lines separately in your terminal | |
| # Check that your system is set up appropriately for Homebrew, you'll see a bunch of output, but you'll want to skim to see if you see any "Warning"s—if you do, Homebrew will have a "You should probably" line suggesting how to remedy it. | |
| brew doctor | |
| # Update homebrew's package listing | |
| brew update |