Skip to content

Instantly share code, notes, and snippets.

View danteese's full-sized avatar

Dante Bazaldua danteese

  • Mexico City
View GitHub Profile
@danteese
danteese / code.gs
Created July 27, 2020 05:24
Introduction to Google Form Mapping
/**
* Map function to get all the results from the database
* this is specially useful if you're trying to access to
* the questions and options as you may want to generate
* a report in your system...(not only the answers)
*
* I mainly did this because of the lack of good examples
* on the documentation, only through other github projects
* and try and failure.
*
@danteese
danteese / gitflow-breakdown.md
Created June 23, 2020 07:15 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository