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
| Sarah Cullen / Director of Technical Instruction at Techtonic, Inc. / sarah.cullen@techtonic.com / 303-630-9587 |
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
| *Styled Components:* https://www.styled-components.com/ | |
| *Reactstrap Installation:* https://reactstrap.github.io/ | |
| *Reactstrap Components:* https://reactstrap.github.io/components/alerts/ | |
| *Adding Images, Fonts, and Files in React* (the most common approach): https://facebook.github.io/create-react-app/docs/adding-images-fonts-and-files | |
| *Using the Public Folder in React* (a lesser-used option): https://facebook.github.io/create-react-app/docs/using-the-public-folder |
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
| *GRADUATION*: | |
| *When*: Saturday, September 7 | |
| *Where*: Sturm Hall, Room 248 (Davis Auditorium) | |
| [Address: 2000 E Asbury Ave, Denver, CO) | |
| *Time*: | |
| - Certificate Pick-Up: 9:30am | |
| - Ceremony: 10am-1pm | |
| *RSVP*: www.tinyurl.com/dubootcampgrad9-7 | |
| ** Must RSVP by *August 27* |
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
| const googleKey = "AIzaSyBcnq7zBReONv1rBDG44diwMw5csvdFgWg"; | |
| const weatherKey = "36cac12b8a634d76b651694b8e80b695"; | |
| // backup key: 17fd2da3a2e745caa25a0a221e2208bf |
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
| const nums = [10,34,56,67,93,120,137,168,259,280,311,342,413,514]; | |
| const randomNum = nums[Math.floor(Math.random() * nums.length)]; |
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
| <script src="https://kit.fontawesome.com/bb20623808.js"></script> |
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
| <i className="fa fa-spinner fa-spin fa-3x" aria-hidden="true" /> |
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
| *==== @channel PHP/Laravel and Angular Recordings: =======================* | |
| _(The PHP/Laravel activities covered below can be found in our class repo, under '/Class-Content/21-regionalized-content/Laravel')_ | |
| *PHP/Laravel Day #1:* https://codingbootcamp.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=35b8c703-c532-40d7-b692-aa0f00080a47 | |
| *PHP/Laravel Day #2:* https://codingbootcamp.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=8e64d05e-f2b0-480a-9c3e-aa11015224ff | |
| *PHP/Laravel Day #3:* https://codingbootcamp.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=866c9b80-8131-47ea-94e0-aa12010870ca | |
| *Angular Pt #1:* https://codingbootcamp.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=c90352a1-a4d4-425d-bd35-a97a00013e7b |
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
| <script src="https://www.gstatic.com/firebasejs/6.0.2/firebase-app.js"></script> | |
| <script src="https://www.gstatic.com/firebasejs/6.0.2/firebase-database.js"></script> |
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
| ==== @channel Resources re: Tonight’s Review Session (plus ES6 resources): ========================= | |
| Solution with LOTS of Comments: https://github.com/scwebd/budget-manager | |
| A Complete Guide to Using localStorage in JavaScript Apps: https://blog.logrocket.com/the-complete-guide-to-using-localstorage-in-javascript-apps-ba44edb53a36 | |
| jQuery .toggle() (used to toggle between display: none and display: block): https://www.w3schools.com/jquery/eff_toggle.asp | |
| How to Check an Element is Visible or Not Using jQuery: https://www.tutorialrepublic.com/faq/how-to-check-an-element-is-visible-or-not-using-jquery.php |