Skip to content

Instantly share code, notes, and snippets.

View thinkallabout's full-sized avatar

Cameron Brown thinkallabout

  • United Kingdom
  • 07:13 (UTC +01:00)
View GitHub Profile
@thinkallabout
thinkallabout / addEmail.gs
Created July 11, 2019 04:19
Inquiry Form Submission - Decoupage Dreams - Google Apps Script
// Adds an email to sheet.
function addEmailToSheet(email) {
var sheetsApp = SpreadsheetApp.getActiveSpreadsheet();
// 05/2019 for example..
var monthString = (new Date().getMonth() + 1).toString();
if(monthString.length == 1) {
monthString = "0" + monthString;
}
var sheetName = monthString + "/" + new Date().getYear();

Keybase proof

I hereby claim:

  • I am greenishblue on github.
  • I am thinkallabout (https://keybase.io/thinkallabout) on keybase.
  • I have a public key ASDO7I5LJciP22omMGqYLLryg3IB3C_8hUqGfJbK7vlnowo

To claim this, I am signing this object:

using UnityEngine;
using System.Collections.Generic;
using HierarchyDict = System.Collections.Generic.Dictionary<string, UnityEngine.Transform>;
using BoneTransformDict = System.Collections.Generic.Dictionary<string, utils.Tuple<UnityEngine.Transform, string>>;
namespace utils
{
public class MeshCombiner
{