- 
https://aframe.io/docs/0.7.0/guides/building-a-basic-scene.html
 - 
import blender models into an aframe app
 
  
    
      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
    
  
  
    
  | //removes element based on the id of matching object in an array | |
| //@param ar - array of objects | |
| //@param id - unique id to check for each array element | |
| //if an element's id matches the given id, then remove that | |
| //element from the array | |
| //case1 - the array only contains that element | |
| //case1 - element at idx = 0 (array length > 1) | |
| //case2 - element at idx = n - 1 (array length = n; n > 1) | |
| //case3 - element at idx = m (array length = n; 0 < m < n -1) | 
  
    
      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
    
  
  
    
  | //Angular.js learning resources | |
| High level instructional videos with exercises (good start) | |
| https://www.codeschool.com/courses/shaping-up-with-angular-js | |
| Lessons with sample code/github source | |
| https://docs.angularjs.org/tutorial | |
| *I ran into some time consuming issues trying to get their tests to run successfully in the 2nd half of the tutorials | |
| Learn and Understand AngularJS - The First 50 Minutes (Tony Alicea) | 
  
    
      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
    
  
  
    
  | <!-- | |
| two implementations of image: http://blog.danielna.com/assets/img/2013-07-01_fe1.jpg | |
| 1 using pixel dimensions: http://jsfiddle.net/h82g7f39/1/ | |
| 2 using percentages, below | |
| origin: http://blog.danielna.com/getting-a-job-as-a-front-end-web-developer.html | |
| --> | |
| <html> | |
| <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
    
  
  
    
  | // function that takes two sorted lists of numbers and merges them into a single sorted list. | |
| ar1 = [1, 4, 5, 7, 10]; | |
| ar2 = [0, 3, 6, 11, 14]; | |
| function mergeSort(ar1, ar2) { | |
| var sortedAr = []; | |
| while (ar1.length > 0 && ar2.length > 0) { | |
| if (ar1[0] < ar2[0]) { | |
| sortedAr.push(ar1.splice(0, 1)[0]); | 
  
    
      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> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> | |
| var test1 = 'ana'; | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env python | |
| # directions: parse a given string | |
| # check whether the string contents contain words found in a given dictionary | |
| # print out the words with a space delimiter | |
| long_str = "monkeyheartpear" | |
| dict = {1: "monkey", 2: "heart", 3: "pear"} | |
| result = "" | |
| word = "" | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env python | |
| # This Source Code Form is subject to the terms of the Mozilla Public | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
| import re | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.support.ui import WebDriverWait | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env python | |
| #!/usr/bin/env python | |
| # This Source Code Form is subject to the terms of the Mozilla Public | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
| from pages.home import Home | |
| from pages.start_page import StartPage | |
| from unittestzero import Assert | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env python | |
| # This Source Code Form is subject to the terms of the Mozilla Public | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.common.action_chains import ActionChains | |
| from selenium.webdriver.support.ui import WebDriverWait | 
NewerOlder