all-scribbly

Dev-Setup – Multiple Languages

all-scribbly
https://www.stuartellis.name/articles/mac-setup/ How to Set up an Apple Mac for Software Development December 23, 2020 devops, programming PAGE CONTENT Do This First!Configuring a User AccountConfiguring The TrackpadCreating a Private Applications FolderSecuring the Safari BrowserConfiguring SecurityBasic SettingsDisable SpotlightEnable File Vault NOWSet a Firmware PasswordSetting Up Time Machine BackupsSetting Up for DevelopmentGetting XcodeSetting Up HomebrewEnabling Auto Completion of […]

Dev-Setup – Multiple Languages Read More »

Javascript – How To Code

all-scribbly coding
https://www.digitalocean.com/community/tutorial_series/how-to-code-in-javascriptHow To Code in JavaScriptby Lisa Tagliaferri and Tania RasciaJavaScript is a high-level, object-based, dynamic scripting language popular as a tool for making webpages interactive.How To Use the JavaScript Developer ConsoleJune 27, 2017This tutorial will go over how to work with the Console in JavaScript within the context of a browser, and provide an overview

Javascript – How To Code Read More »

GGL – All Quickstarts | How To’s

all-scribbly
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

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

Javascript Notes – One

coding
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 »