├── 03-SendingEmailsUsingEmailJS ├── 05-preparing_the_contact_html_file │ ├── assets │ │ ├── js │ │ │ ├── sendEmail.js │ │ │ ├── maps.js │ │ │ └── github-information.js │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ └── images │ │ │ └── rosie.jpg │ ├── 404.html │ ├── github.html │ └── contact.html ├── 06-sending_emails │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ ├── sendEmail.js │ │ │ ├── maps.js │ │ │ └── github-information.js │ ├── 404.html │ ├── github.html │ └── contact.html └── 03-connecting_to_the_email_service_using_their_sdk │ ├── assets │ ├── css │ │ ├── grey.png │ │ ├── loader.gif │ │ └── github-styles.css │ ├── cv │ │ └── sample-cv.pdf │ ├── images │ │ └── rosie.jpg │ └── js │ │ ├── maps.js │ │ └── github-information.js │ ├── 404.html │ ├── github.html │ └── contact.html ├── 02-TheGitHubAPI ├── 01-github_form │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ └── maps.js │ └── 404.html ├── 03-making_promises │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ ├── maps.js │ │ │ └── github-information.js │ └── 404.html ├── 08-api_throttling │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ ├── maps.js │ │ │ └── github-information.js │ └── 404.html ├── 07-lets_fix_some_bugs │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ ├── maps.js │ │ │ └── github-information.js │ └── 404.html ├── 04-rendering_user_data │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ ├── maps.js │ │ │ └── github-information.js │ └── 404.html ├── 05-getting_the_repo_data │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ ├── maps.js │ │ │ └── github-information.js │ └── 404.html ├── 06-rendering_repo_data │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ ├── maps.js │ │ │ └── github-information.js │ └── 404.html ├── 01-github_form-bootstrap4 │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ ├── images │ │ │ └── rosie.jpg │ │ └── js │ │ │ └── maps.js │ └── 404.html └── 02-initial_data_retieval_setup │ ├── assets │ ├── css │ │ ├── grey.png │ │ ├── loader.gif │ │ └── github-styles.css │ ├── cv │ │ └── sample-cv.pdf │ ├── images │ │ └── rosie.jpg │ └── js │ │ ├── github-information.js │ │ └── maps.js │ └── 404.html ├── 01-GoogleMaps ├── 04-rendering_the_map │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ └── images │ │ │ └── rosie.jpg │ ├── 404.html │ └── contact.html ├── 01-adding_the_map_element │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ └── images │ │ │ └── rosie.jpg │ └── 404.html ├── 03-referencing_the_js_files │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ └── images │ │ │ └── rosie.jpg │ └── 404.html ├── 05-adding_markers_to_the_map │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ └── images │ │ │ └── rosie.jpg │ └── 404.html ├── 01-adding_the_map_element-bootstrap4 │ ├── assets │ │ ├── css │ │ │ ├── grey.png │ │ │ ├── loader.gif │ │ │ └── github-styles.css │ │ ├── cv │ │ │ └── sample-cv.pdf │ │ └── images │ │ │ └── rosie.jpg │ └── 404.html └── 06-moving_the_code_into_its_own_script │ ├── assets │ ├── css │ │ ├── grey.png │ │ ├── loader.gif │ │ └── github-styles.css │ ├── cv │ │ └── sample-cv.pdf │ ├── images │ │ └── rosie.jpg │ └── js │ │ └── maps.js │ └── 404.html └── README.md /03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/js/sendEmail.js: -------------------------------------------------------------------------------- 1 | console.log("Hello!"); -------------------------------------------------------------------------------- /02-TheGitHubAPI/01-github_form/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/01-github_form/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/01-github_form/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/01-github_form/assets/css/loader.gif -------------------------------------------------------------------------------- /01-GoogleMaps/04-rendering_the_map/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/04-rendering_the_map/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/01-github_form/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/01-github_form/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/01-github_form/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/01-github_form/assets/images/rosie.jpg -------------------------------------------------------------------------------- /02-TheGitHubAPI/03-making_promises/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/03-making_promises/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/08-api_throttling/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/08-api_throttling/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/08-api_throttling/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/08-api_throttling/assets/css/loader.gif -------------------------------------------------------------------------------- /01-GoogleMaps/04-rendering_the_map/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/04-rendering_the_map/assets/css/loader.gif -------------------------------------------------------------------------------- /02-TheGitHubAPI/03-making_promises/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/03-making_promises/assets/css/loader.gif -------------------------------------------------------------------------------- /02-TheGitHubAPI/07-lets_fix_some_bugs/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/07-lets_fix_some_bugs/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/08-api_throttling/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/08-api_throttling/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/08-api_throttling/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/08-api_throttling/assets/images/rosie.jpg -------------------------------------------------------------------------------- /01-GoogleMaps/01-adding_the_map_element/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/01-adding_the_map_element/assets/css/grey.png -------------------------------------------------------------------------------- /01-GoogleMaps/04-rendering_the_map/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/04-rendering_the_map/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /01-GoogleMaps/04-rendering_the_map/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/04-rendering_the_map/assets/images/rosie.jpg -------------------------------------------------------------------------------- /02-TheGitHubAPI/03-making_promises/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/03-making_promises/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/03-making_promises/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/03-making_promises/assets/images/rosie.jpg -------------------------------------------------------------------------------- /02-TheGitHubAPI/04-rendering_user_data/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/04-rendering_user_data/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/04-rendering_user_data/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/04-rendering_user_data/assets/css/loader.gif -------------------------------------------------------------------------------- /02-TheGitHubAPI/05-getting_the_repo_data/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/05-getting_the_repo_data/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/06-rendering_repo_data/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/06-rendering_repo_data/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/06-rendering_repo_data/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/06-rendering_repo_data/assets/css/loader.gif -------------------------------------------------------------------------------- /02-TheGitHubAPI/07-lets_fix_some_bugs/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/07-lets_fix_some_bugs/assets/css/loader.gif -------------------------------------------------------------------------------- /01-GoogleMaps/01-adding_the_map_element/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/01-adding_the_map_element/assets/css/loader.gif -------------------------------------------------------------------------------- /01-GoogleMaps/03-referencing_the_js_files/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/03-referencing_the_js_files/assets/css/grey.png -------------------------------------------------------------------------------- /01-GoogleMaps/05-adding_markers_to_the_map/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/05-adding_markers_to_the_map/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/01-github_form-bootstrap4/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/01-github_form-bootstrap4/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/04-rendering_user_data/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/04-rendering_user_data/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/04-rendering_user_data/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/04-rendering_user_data/assets/images/rosie.jpg -------------------------------------------------------------------------------- /02-TheGitHubAPI/05-getting_the_repo_data/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/05-getting_the_repo_data/assets/css/loader.gif -------------------------------------------------------------------------------- /02-TheGitHubAPI/06-rendering_repo_data/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/06-rendering_repo_data/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/06-rendering_repo_data/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/06-rendering_repo_data/assets/images/rosie.jpg -------------------------------------------------------------------------------- /02-TheGitHubAPI/07-lets_fix_some_bugs/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/07-lets_fix_some_bugs/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/07-lets_fix_some_bugs/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/07-lets_fix_some_bugs/assets/images/rosie.jpg -------------------------------------------------------------------------------- /01-GoogleMaps/01-adding_the_map_element/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/01-adding_the_map_element/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /01-GoogleMaps/01-adding_the_map_element/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/01-adding_the_map_element/assets/images/rosie.jpg -------------------------------------------------------------------------------- /01-GoogleMaps/03-referencing_the_js_files/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/03-referencing_the_js_files/assets/css/loader.gif -------------------------------------------------------------------------------- /01-GoogleMaps/03-referencing_the_js_files/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/03-referencing_the_js_files/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /01-GoogleMaps/03-referencing_the_js_files/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/03-referencing_the_js_files/assets/images/rosie.jpg -------------------------------------------------------------------------------- /01-GoogleMaps/05-adding_markers_to_the_map/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/05-adding_markers_to_the_map/assets/css/loader.gif -------------------------------------------------------------------------------- /02-TheGitHubAPI/01-github_form-bootstrap4/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/01-github_form-bootstrap4/assets/css/loader.gif -------------------------------------------------------------------------------- /02-TheGitHubAPI/01-github_form-bootstrap4/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/01-github_form-bootstrap4/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/01-github_form-bootstrap4/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/01-github_form-bootstrap4/assets/images/rosie.jpg -------------------------------------------------------------------------------- /02-TheGitHubAPI/05-getting_the_repo_data/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/05-getting_the_repo_data/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/05-getting_the_repo_data/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/05-getting_the_repo_data/assets/images/rosie.jpg -------------------------------------------------------------------------------- /01-GoogleMaps/05-adding_markers_to_the_map/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/05-adding_markers_to_the_map/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /01-GoogleMaps/05-adding_markers_to_the_map/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/05-adding_markers_to_the_map/assets/images/rosie.jpg -------------------------------------------------------------------------------- /02-TheGitHubAPI/02-initial_data_retieval_setup/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/02-initial_data_retieval_setup/assets/css/grey.png -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/06-sending_emails/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/06-sending_emails/assets/css/grey.png -------------------------------------------------------------------------------- /01-GoogleMaps/01-adding_the_map_element-bootstrap4/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/01-adding_the_map_element-bootstrap4/assets/css/grey.png -------------------------------------------------------------------------------- /02-TheGitHubAPI/02-initial_data_retieval_setup/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/02-initial_data_retieval_setup/assets/css/loader.gif -------------------------------------------------------------------------------- /02-TheGitHubAPI/02-initial_data_retieval_setup/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/02-initial_data_retieval_setup/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /02-TheGitHubAPI/02-initial_data_retieval_setup/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/02-TheGitHubAPI/02-initial_data_retieval_setup/assets/images/rosie.jpg -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/06-sending_emails/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/06-sending_emails/assets/css/loader.gif -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/06-sending_emails/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/06-sending_emails/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/06-sending_emails/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/06-sending_emails/assets/images/rosie.jpg -------------------------------------------------------------------------------- /01-GoogleMaps/01-adding_the_map_element-bootstrap4/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/01-adding_the_map_element-bootstrap4/assets/css/loader.gif -------------------------------------------------------------------------------- /01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/css/grey.png -------------------------------------------------------------------------------- /01-GoogleMaps/01-adding_the_map_element-bootstrap4/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/01-adding_the_map_element-bootstrap4/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /01-GoogleMaps/01-adding_the_map_element-bootstrap4/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/01-adding_the_map_element-bootstrap4/assets/images/rosie.jpg -------------------------------------------------------------------------------- /01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/css/loader.gif -------------------------------------------------------------------------------- /01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/images/rosie.jpg -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/css/grey.png -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/css/loader.gif -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/images/rosie.jpg -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/css/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/css/grey.png -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/css/loader.gif -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/cv/sample-cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/cv/sample-cv.pdf -------------------------------------------------------------------------------- /03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/images/rosie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/InteractiveFrontendDevelopment-Resume/HEAD/03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/images/rosie.jpg -------------------------------------------------------------------------------- /02-TheGitHubAPI/02-initial_data_retieval_setup/assets/js/github-information.js: -------------------------------------------------------------------------------- 1 | function fetchGitHubInformation(event) { 2 | 3 | var username = $("#gh-username").val(); 4 | if (!username) { 5 | $("#gh-user-data").html(`
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/08-api_throttling/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/01-GoogleMaps/04-rendering_the_map/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/03-making_promises/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/04-rendering_user_data/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/06-rendering_repo_data/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/07-lets_fix_some_bugs/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/01-GoogleMaps/01-adding_the_map_element/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/01-GoogleMaps/03-referencing_the_js_files/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/01-GoogleMaps/05-adding_markers_to_the_map/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/01-github_form-bootstrap4/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/05-getting_the_repo_data/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/02-initial_data_retieval_setup/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/03-SendingEmailsUsingEmailJS/06-sending_emails/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/01-GoogleMaps/01-adding_the_map_element-bootstrap4/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/01-GoogleMaps/06-moving_the_code_into_its_own_script/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/03-SendingEmailsUsingEmailJS/06-sending_emails/assets/js/sendEmail.js:
--------------------------------------------------------------------------------
1 | function sendMail(contactForm) {
2 | emailjs.send("gmail", "rosie", {
3 | "from_name": contactForm.name.value,
4 | "from_email": contactForm.emailaddress.value,
5 | "project_request": contactForm.projectsummary.value
6 | })
7 | .then(
8 | function(response) {
9 | console.log("SUCCESS", response);
10 | },
11 | function(error) {
12 | console.log("FAILED", error);
13 | }
14 | );
15 | return false; // To block from loading a new page
16 | }
--------------------------------------------------------------------------------
/03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/02-TheGitHubAPI/01-github_form/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/03-making_promises/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/08-api_throttling/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/04-rendering_user_data/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/06-rendering_repo_data/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/07-lets_fix_some_bugs/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/01-github_form-bootstrap4/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/05-getting_the_repo_data/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/02-initial_data_retieval_setup/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/03-SendingEmailsUsingEmailJS/06-sending_emails/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/01-GoogleMaps/06-moving_the_code_into_its_own_script/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/03-SendingEmailsUsingEmailJS/05-preparing_the_contact_html_file/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/03-SendingEmailsUsingEmailJS/03-connecting_to_the_email_service_using_their_sdk/assets/js/maps.js:
--------------------------------------------------------------------------------
1 | function initMap() {
2 | var map = new google.maps.Map(document.getElementById("map"), {
3 | zoom: 3,
4 | center: {
5 | lat: 46.619261,
6 | lng: -33.134766
7 | }
8 | });
9 |
10 | var labels = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
11 |
12 | var locations = [
13 | { lat: 40.785091, lng: -73.968285 },
14 | { lat: 41.084045, lng: -73.874245 },
15 | { lat: 40.754932, lng: -73.984016 }
16 | ];
17 |
18 | var markers = locations.map(function(location, i) {
19 | return new google.maps.Marker({
20 | position: location,
21 | label: labels[i % labels.length]
22 | });
23 | });
24 |
25 | var markerCluster = new MarkerClusterer(map, markers, { imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' });
26 | }
--------------------------------------------------------------------------------
/02-TheGitHubAPI/03-making_promises/assets/js/github-information.js:
--------------------------------------------------------------------------------
1 | function fetchGitHubInformation(event) {
2 |
3 | var username = $("#gh-username").val();
4 | if (!username) {
5 | $("#gh-user-data").html(`
12 | Followers: ${user.followers} - Following ${user.following}
Repos: ${user.public_repos}
29 | Followers: ${user.followers} - Following ${user.following}
Repos: ${user.public_repos}
29 | Followers: ${user.followers} - Following ${user.following}
Repos: ${user.public_repos}
31 | Repo List: 32 |
33 |
50 | Followers: ${user.followers} - Following ${user.following}
Repos: ${user.public_repos}
31 | Repo List: 32 |
33 |
52 | Followers: ${user.followers} - Following ${user.following}
Repos: ${user.public_repos}
31 | Repo List: 32 |
33 |
52 | Followers: ${user.followers} - Following ${user.following}
Repos: ${user.public_repos}
31 | Repo List: 32 |
33 |
52 | Followers: ${user.followers} - Following ${user.following}
Repos: ${user.public_repos}
31 | Repo List: 32 |
33 |
52 | Followers: ${user.followers} - Following ${user.following}
Repos: ${user.public_repos}
31 | Repo List: 32 |
33 |
52 |