Skip to content

Instantly share code, notes, and snippets.

View MikailaAkeredolu's full-sized avatar
💭
teaching

Mikaila Akeredolu MikailaAkeredolu

💭
teaching
View GitHub Profile
public class Main{
public static void main(String[] args){
//DataType referenceVariableName = new DataType(); //create an instance of a Product class
Product p1 = new Product(); //default constructor
//ObjectName.propertyName
p1.name = "burger";
p1.price = 4.0;
p1.qty = 30;
public class Main{
public static void main(String[] args){
//Data Type identifier ;
// String productName ; // declare a variable
// productName = " Burger " ; // assign a value to the variable
String x = " Burger " ; // Reference Variable
@MikailaAkeredolu
MikailaAkeredolu / google-apps-script.md
Created April 9, 2020 08:38 — forked from labnol/google-apps-script.md
How to Learn Google Apps Script - The best resources for learning Google Apps Script, the glue that connects GSuite services including Gmail, Google Drive, Calendar, Maps, Analytics and more.

Learning Google Apps Script

The best place to learn more about Google Script is the official documentation available at developers.google.com. Here are other places that will help you get up to speed.

  1. Google Apps Scripts - Snippets by +Amit Agarwal
  2. Apps Script Starter - Create Google Apps Script projects locally inside VS Code.
  3. Digital Inspiration by +Amit Agarwal - Google Addons
  4. Awesome Google Scripts by +Amit Agarwal
  5. Build with Google Apps Script - Setup a local development environment for Apps Script
  6. Apps Script Webinars - YouTube - by +Eric Koleda

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream