- https://www.pexels.com/video/a-woman-discussing-her-business-7414165/
- https://www.pexels.com/video/woman-drinking-coffee-in-the-morning-7226977/
- https://www.pexels.com/video/a-man-pouring-coffee-to-another-man-7581295/
- https://www.pexels.com/video/men-having-conversation-at-the-office-pantry-8068936/
- https://www.pexels.com/video/person-showing-a-documents-to-a-man-5442621/
- https://www.pexels.com/video/an-agent-talking-to-his-client-while-holding-documents-7822017/
- https://www.pexels.com/video/man-people-woman-desk-7687999/
- https://www.pexels.com/video/woman-desk-laptop-office-4065635/
- https://www.pexels.com/photo/woman-standing-in-front-of-a-studio-in-orlando-11805621/
- https://www.pexels.com/photo/red-and-white-vintage-car-4070387/
- https://www.pexels.com/photo/the-wizarding-world-of-harry-potter-diagon-alley-universal-orlando-florida-11444086/
- https://www.pexels.com/photo/the-orange-county-court-interpreters-building-in-orlando-florida-11668007/
- https://www.pexels.com/photo/brown-brick-building-under-the-blue-sky-11668038/
- https://www.pexels.com/photo/woman-sitting-on-wooden-chair-9703592/
- https://www.pexels.com/photo/a-woman-standing-while-holding-a-longboard-9647461/
- https://www.pexels.com/photo/alligator-in-water-in-orlando-11573425/
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 rad = function(x) { | |
| return x * Math.PI / 180; | |
| }; | |
| var getDistance = function(p1, p2) { | |
| var R = 6378137; // Earth’s mean radius in meter | |
| var dLat = rad(p2.lat() - p1.lat()); | |
| var dLong = rad(p2.lng() - p1.lng()); | |
| var a = Math.sin(dLat / 2) * Math.sin(dLat / 2) + | |
| Math.cos(rad(p1.lat())) * Math.cos(rad(p2.lat())) * |
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 gmstyles = [ | |
| { | |
| "featureType": "road", | |
| "elementType": "geometry", | |
| "stylers": [ | |
| { | |
| "lightness": 100 | |
| }, | |
| { | |
| "visibility": "simplified" |
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
| function initMap(){ | |
| var mia = { lat:25.778850, lng:-80.207486 }; | |
| var mapCanvas = document.getElementById('map'); | |
| var mapOptions = { | |
| center: mia, | |
| zoom: 12, | |
| mapTypeId: google.maps.MapTypeId.ROADMAP, | |
| disableDefaultUI: true, | |
| styles: |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Add React in One Minute</title> | |
| </head> | |
| <body> | |
| <h2>Add React in One Minute</h2> | |
| <p>This page demonstrates using React with no build tooling.</p> |
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
| <?php | |
| /* | |
| * Converts CSV to JSON | |
| * Example uses Google Spreadsheet CSV feed | |
| * csvToArray function I think I found on php.net | |
| */ | |
| header('Content-type: application/json'); | |
| // Set your CSV feed |
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 vids = ["https://www.youtube.com/watch?v=fdJc1_IBKJA", | |
| "https://www.youtube.com/watch?v=xaDZvw9ot3E", | |
| "https://www.youtube.com/watch?v=3WWlhPmqXQI"]; // create your list of youtube videos | |
| var currVid = vids[Math.floor(Math.random()*(vids.length-1))]; // this will grab a random video from the array. | |
| var opts = { // keep all the options in an object | |
| videoURL: currVid, // set the video to display | |
| containment:'.video-section', | |
| quality:'large', |
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
| // Generate Random Number in | |
| var minNumber = 1; | |
| var maxNumber = 4; | |
| var randomNumber = randomNumberFromRange(minNumber, maxNumber); | |
| function randomNumberFromRange(min,max) | |
| { | |
| return Math.floor(Math.random()*(max-min+1)+min); |
NewerOlder