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
| Screenshots of Google PageSpeed for desktop and 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
| Below are screenshots of my team's components combined on the proxy server page. |
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
| Below are two screenshots. | |
| First image is of several <Category> components. Each <Category> contains four <Event> components. | |
| Second image is of an individual <Event> component. |
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
| The following endpoint: | |
| http://localhost:3016/api/events/35 | |
| Responds with: | |
| [{"reviews_count":31224,"price":101,"rating":2.4,"name":"Norfolk Island","image_url":"./public/images/04.jpg","category":1}] | |
| const express = require('express'); | |
| const app = express(); |
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
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title>Page Title</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| </head> | |
| <body> | |
| <button>Click!</button> |
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
| // ES6 Javascript: The Complete Developer's Guide | |
| // Stephen Grider, Engineering Architect | |
| url = "https://jsonplaceholder.typicode.com/posts123456/"; | |
| fetch(url) | |
| .then(response => console.log(response)) | |
| .catch(error => console.log('BAD', error)); | |
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
| [ | |
| { | |
| "city": "New York", | |
| "growth_from_2000_to_2013": "4.8%", | |
| "latitude": 40.7127837, | |
| "longitude": -74.0059413, | |
| "population": "8405837", | |
| "rank": "1", | |
| "state": "New York" | |
| }, |
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
| <div><span id="presidentDays"></span> days in office</div> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js" type="text/javascript"></script> | |
| <script src="trumpDays.js" type="text/javascript"></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
| var margin = {top: 10, left: 10, bottom: 10, right: 10}, | |
| width = parseInt(d3.select('#viz').style('width')), | |
| width = width - margin.left - margin.right, | |
| mapRatio = .5, | |
| height = width * mapRatio, | |
| mapRatioAdjuster = 7; | |
| pennsylvania_center = [-77.5, 40.8]; | |
| // add commas to big numbers | |
| formatComma = d3.format(","); |
NewerOlder