all-scribbly

GGL – All Quickstarts | How To’s

QUICKSTARTS: https://cloud.google.com/resource-manager/docs/quickstarts Javascript QuickStart: https://developers.google.com/calendar/quickstart/js CREATE PROJECT ENABLE API: https://developers.google.com/workspace/guides/create-project CREATE CREDENTIALS: https://developers.google.com/workspace/guides/create-credentials GITHUB: https://github.com/google/google-api-javascript-client ADDITIONAL INFO::: CREATE AN ACCOUNT WITH DOMAIN WIDE CREDENTIALS: https://developers.google.com/workspace/guides/create-credentials#createsvc GGL Calendar In this document, continue with the documentation that corresponds to your app type: Create Web application credentials (client-side JavaScript). Use to this section for the JavaScript quickstart. Create Web […]

GGL – All Quickstarts | How To’s Read More »

Javascript Notes – One

List of declared keywords. Good basic steps to remember // 1. Declare variables and capture input. const adjective = prompt(“Give me a compliment”); console.log( adjective ); // 2. Combine the input with other words to create a story. const compliment = `<p>You are so right I am: ${adjective} just the so …</p>`; console.log( compliment );

Javascript Notes – One Read More »