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
| i18n state | |
| https://glitch.com/edit/#!/cute-crack?path=public/index.html:1:0 | |
| CRUD reducer | |
| https://glitch.com/edit/#!/whimsical-literature?path=src/store.js:5: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
| Interest calculator I: Connecting | |
| https://glitch.com/edit/#!/flowery-index?path=src/components/interest-calculator.js:35:13 | |
| Interest calculator II: Dispatching | |
| https://glitch.com/edit/#!/diamond-amusement?path=src/components/interest-calculator.js:10:44 |
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
| Find the latest newsfeed on China’s tech industry in one central location from American resources. |
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
| 1) Post new tech news articles | |
| 2) Edit news articles to make corrections to article headline, image, spelling, comments | |
| 3) Post comments under articles | |
| 4) Delete posts | |
| 5) Like articles | |
| 6) Search for keywords in article headlines | |
| 7) Show related news feed articles |
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
| 1) Post new tech news articles | |
| 2) Edit news articles to make corrections to article headline, image, spelling, comments | |
| 3) Post comments under articles | |
| 4) Delete posts | |
| 5) Like articles | |
| 6) Search for keywords in article headlines |
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
| https://app.box.com/s/ck0qq6x87ocuwfrn36mzex9132gyw818 | |
| https://repl.it/@RyanOkamuro/Landing-Page | |
| https://repl.it/@RyanOkamuro/Content | |
| https://repl.it/@RyanOkamuro/AddPage |
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
| Page was not redirecting after submit add new deal | |
| Page would not load the latest information after deal was added or edited | |
| App layout needs to change for mobile |
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
| For the categories & stores pages, add a subtitle. | |
| ie. Categories for electronics should have "Electronics" as the subtitle | |
| ie. Macys should have "Macys" as the subtitle | |
| The Mobile formatting for "details page" should be similar to stores/categories. |
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
| Even or Odd: Constant time O(1) //doesn't matter what the input size is it doesn't effect the algorithm's run time | |
| Are you here?: Polynomial time O(n^k) //has nested loops | |
| Doubler: Linear time O(n) //Given input a and input b, where b is twice as large as a, it will take a linear algorithm twice as long to process b compared to a. | |
| Naive Search: Constant time O(1) //doesn't matter what the input size is it doesn't effect the algorithm's run time | |
| Creating pairs: Polynomial time O(n^k) //has nested loops | |
| Computing fibonaccis: Constant time O(1) //doesn't matter what the input size is it doesn't effect the algorithm's run time | |
| correct-----Linear time O(n) //Given input a and input b, where b is twice as large as a, it will take a linear algorithm twice as long to process b compared to a | |
| An Efficient Search: Logarithmic time O(log(n)) //cut the problem size in half each round through | |
| Random element: Constant time O(1) //doesn't matter what the input size is it doesn't effect the algorithm's run time | |
| Is it prime?: |
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
| https://maps.googleapis.com/maps/api/js?key=AIzaSyAOVYRIgupAurZup5y1PRh8Ismb1A3lLao&libraries=places&callback=initMap |