#Gotta Catch 'Em All
visit this page and familiarize
yourself a bit with the PokeAPI. We will be using the https://pokeapi.co/api/v2/pokemon endpoint.
| # JavaScript Review | |
| ## **1. I would appreciate a recap on callback functions. Especially in situations like: | |
| ```javascript | |
| someArray.forEach(callbackFunction(element){function definition}) | |
| ``` | |
| #### callback functions | |
| - a function that gets passed as an _argument_ to another function |
| # JavaScript Second reassessment Review | |
| ## Instructions | |
| 0. *Carefully* read *all* the instructions and problems before beginning your work. | |
| ## Problems | |
| 1. Create a function named `calcAge` that takes the age and return the age in days. If input is not numeric, calcAge should return false. |
#Gotta Catch 'Em All
visit this page and familiarize
yourself a bit with the PokeAPI. We will be using the https://pokeapi.co/api/v2/pokemon endpoint.
| https://docs.google.com/forms/d/e/1FAIpQLSd7NuStKPNxVL-bfDjAha_icrXDoJKdkoxj-19aqPaHu67aAw/viewform?usp=sf_link | |
| Feedback: | |
| possible color change | |
| less padding between my name and my description | |
| debate on whether to move the contact bar to the bottom as a footer and instead have a section below my about me with links to those sites. | |
| add negative space | |
| Portfolio | |
| Headline: | |
| I like calling myself a linguist, three spoken languages...plus a couple more that only computers can understand. I never imagined I’d find the same joy from learning web development as I did when I learned the very logical German language, but I have! The never-ending pool of learning possibilities is what drove me to pursue it as a career. I am now a full stack developer, who enjoys taking my wildest ideas from old notebook sketches and turning them into real-life apps … some useful, some funny, most pointless, but all enjoyable to build. | |
| // NOT SURE IF I SHOULD INCLUDE THIS NEXT PORTION: | |
| When I’m not trying to perfect my past projects, I am jogging around the ‘hood in my comfiest running shoes, only ever stopping in my tracks when interrupted by anything cute and fluffy including dogs, cats, and that one time I thought the neighbor’s fluffy slippers were a small gray bunny rabbit. Calligraphy, reading, and writing is saved for rainy days, when I’m feeling most creative. | |
| Projects: |
| 1. `Even or Odd`: because it takes the same time every time to check whether a number is divisible by 2 or not, then this is `CONSTANT` | |
| 2. `Are you here`: this function has nested loops, meaning that for ever nested loop there is, time is added to its run time, `POLYNOMIAL` | |
| 3. `Doubler`: `LINEAR` | |
| 4. `Naive Search`: `LINEAR` | |
| 5. `Creating Pairs`: `POLYNOMIAL` | |
| 6. `Computing Fibonaccis`: LINEAR | |
| 7. `An efficient Search`: `LOGARITHMIC` | |
| 8. `Find random element`: `CONSTANT` | |
| 8. `Is it prime`: `LINEAR` |
| Feedback received: | |
| -confusing flow from signup /login | |
| -not able to logout | |
| -login link is confusing to see after I've logged in | |
| - why am I seeing other words besides the one I created? | |
| - don't know why I can't login/signup | |
| ----- | |
| same as above plus styling suggestions | |
| Iterations completed: |
| Name: Lexi | |
| Link: https://frozen-forest-94047.herokuapp.com/landingpage | |
| gitHub: https://github.com/SuitcaseCoder/lexi-react-capstone |
| Lexi. | |
| ------------------------------------------------------------------------------------------------------------ | |
| HTML Wireframes: | |
| ---------------- | |
| 1. Landing Page: https://repl.it/@SuitcaseCoder/Lexi-HTML-Wireframes-landing-page | |
| 2. Login Page: https://repl.it/@SuitcaseCoder/Lexi-HTML-Wireframes-login-page | |
| 3. Submit New Word: https://repl.it/@SuitcaseCoder/Lexi-HTML-Wireframes-new-word | |
| 4. List of Words: https://repl.it/@SuitcaseCoder/Lexi-HTML-Wireframes-List-of-words | |
| 5. Add Word Details: https://repl.it/@SuitcaseCoder/Lexi-HTML-WireframesAdd-word-details |
| User Stories | |
| As a User, I should be able to... | |
| Login | |
| Logout | |
| Create a new word | |
| Add a description to a word | |
| View list of all words alphabetized | |
| Click on a word from the list and see that card’s details | |
| Go back to the homepage by clicking on the logo |