This file contains 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
https://jsbin.com/xoyafi/edit?html,js,console,output ==> Max/Min | |
https://jsbin.com/kibipu/edit?html,js,console,output ==> Average | |
https://jsbin.com/genopoj/edit?html,js,console,output ==> fizzBuzz |
This file contains 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
https://jsbin.com/dapodem/edit?html,js,console,output ==> Creating arrays | |
https://jsbin.com/wapifis/edit?html,js,console,output ==> Adding array items | |
https://jsbin.com/dodetuq/edit?html,js,console,output ==> Accessing array items | |
https://jsbin.com/kehodix/edit?html,js,console,output ==> Array length and access |
This file contains 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
https://jsbin.com/vufebuw/edit?html,js,console,output ==> Object Creator | |
https://courses.thinkful.com/fewd-001v6/project/2.6.2 ==> object updater | |
https://jsbin.com/fedixav/edit?html,js,console,output ==> object full name | |
https://jsbin.com/zicuret/edit?html,js,console,output ==> delete object key |
This file contains 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
https://jsbin.com/tudosot/edit?html,js,console,output ==> student report | |
https://jsbin.com/kuwubiw/edit?html,js,console,output ==> summer school | |
https://jsbin.com/sexofih/edit?html,js,console,output ==> find by id |
This file contains 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
// the Boolean filter removes any items that considered false: NaN, false, 0, undefined | |
// this takes the 'unmassaged' data in the string -- this may be a paragraph, page, etc | |
// and 'tokenizes' the string, splitting on a single white space and common punctuation | |
// the function also remove variation in the string tokens, i.e. words, by converting them all to lowercase | |
// an array is returned sorted; at this point we can assume duplicate values in the array | |
This file contains 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
What is scope? Your explanation should include the idea of global vs. local scope. | |
Scope refers to the conditions under which a JavaScript program can access variables. There are two | |
types of scope in ECMAscript version 5: local and global. | |
Global variables are globally accessible, which means that they are accessible anywhere within a program. Contrasted | |
with global variables, local variables are accessible only within a function. | |
Variable precedence begins with local variables, located in functions, then moves outward to global variables contained | |
in the larger program; the implications of this are that if a variable were to be declared inside and outside of function, |
This file contains 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
https://jsbin.com/poxihet/edit?html,css,js,output ==> cats | |
https://jsbin.com/fuwumej/edit?html,css,js,console,output ==> fizzbuzz | |
https://jsbin.com/digimuf/edit?html,css,js,output ==> lightbulb |
This file contains 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
The tentative name of the project is 'Writing On The Wall'. This project will use the Amazon Web Services | |
JavaScript SDK to implement a browser-only program that integrates Facebook authentication and uses AWS S3 service to store arbitrary data. | |
For the purposes of this project, S3 will be used to store text files of comments that users have 'written on the wall'. The textual data | |
will display as a slideshow. | |
Concerns are: |
This file contains 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
Wall of Text MVP | |
-The user visits the site | |
-User is able to see the scroll of text | |
--the text is pulled from AWS S3 | |
-Alternate: the text doesn't scroll, but is managed by button events | |
-User has the option of logging in using Google+ account for the purpose | |
of contributing their own text |
This file contains 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
The front page was far too busy visually. Needed to remove all of the 12 images in the foreground and use only the background. | |
Replace black text with white; this showed up noticably better. | |
Shifted the quote display div 90px to the left to avoid clashing with corner of the wall in the image; | |
shifted the text entry prompt and text box as well | |
attempted and failed to match the text color in the background with text color of the form, opted to make the background transparent | |
Limited the quote to 600 characters -- works better with the natural border of the background | |
increased the display time by 1 second: from 5 to 6 seconds. was initially 3 seconds, not counting the fade in/fade out |
OlderNewer