Resources
#UX Training
###UX
- UX Magazine
- [Effectively Planning UX Design Projects](Effectively Planning UX Design Projects)
- What is User Experience Design
- Researchers.io
- Google Design
- Bad UX
##HTML, CSS & JavaScript
- Codepen Example from class: http://codepen.io/dtauer/pen/LkrgEP?editors=1010
- MDN Reference: https://developer.mozilla.org/en-US/docs/Web/HTML
- HTML Introduction: https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Introduction
- Hour of Code: https://www.khanacademy.org/hourofcode
- Code.org: https://code.org/learn
##Setting up Selenium Webdriver & Nodejs
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
//More API documentation here: https://helpx.adobe.com/captivate/using/common-js-interface.html | |
//You'll want to have this AFTER the captivate file is initialized (e.g. after cpInit() is called) | |
if(window.cpAPIInterface && window.cpAPIEventEmitter) | |
{ | |
//add a listener to for pause event | |
window.cpAPIEventEmitter.addEventListener("CPAPI_MOVIEPAUSE", function(e){ | |
console.log("captivate timeline paused"); | |
}); | |
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
.navbar-default { | |
background-color: #FFA24F; | |
} | |
.navbar-default .navbar-nav>li>a { | |
color: #3B406B; | |
background-color: #D7D456; | |
} | |
.navbar-default .navbar-nav>.active>a, |
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
#Your Current seed.rb code that creates books (the manual way): | |
Book.create("title" => "A Brief History of Time", "author" => "Stephen Hawking") | |
Book.create("title" => "Alice in Wonderland", "author" => "Lewis Carroll") | |
Book.create("title" => "The Lord Of The Rings", "author" => "J.R.R. Tolkien") | |
Book.create("title" => "The Hobbit", "author" => "J.R.R. Tolkien") | |
# Firstly, save each tab as a CSV file (a comman separate file) | |
# To save as a CSV, just go to File > Download As > CSV (for each tab) | |
# You could put them in a directory on your server | |
# Then you could do something like this (this one is for the book data): |
NewerOlder