Dev-Setup – Multiple Languages

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

https://www.digitalocean.com/community/tutorial_series/how-to-code-in-javascript How To Code in JavaScript by Lisa Tagliaferri and Tania Rascia JavaScript is a high-level, object-based, dynamic scripting language popular as a tool for making webpages interactive. How To Use the JavaScript Developer Console June 27, 2017 This tutorial will go over how to work with the Console in JavaScript within the context of

Javascript – How To Code Read More »

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 »