Skip to content

Instantly share code, notes, and snippets.

View theindianappguy's full-sized avatar
:octocat:
Working...

Sanskar Tiwari theindianappguy

:octocat:
Working...
View GitHub Profile
@theindianappguy
theindianappguy / send-google-forms-response-to-slack.md
Last active August 13, 2021 06:07
Send Google Forms Response to Slack

title: Send Google Forms Response to Slack date: "2021-08-12T10:10:36+0000" template: "post" draft: false slug: "send-google-forms-response-to-slack" category: "Product" tags:

  • "Handwriting"
  • "Learning to write"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
---
title: 'Learn how to build a markdown blog'
metaTitle: 'Learn jhow to buil a blog'
metaDesc: 'Learn how to build a markdown blog'
socialImage: image/how-to-convert-canva-to-google-slide.jpeg
date: '2022-04-27'
tags:
- 'blog'
- 'markdown'
---
@theindianappguy
theindianappguy / Code.js
Created December 30, 2023 06:34
GoogleSheets-MailerLite-Integration-Automated-Email-Script
function doPost(request) {
// Open Google Sheet using ID
var sheet = SpreadsheetApp.openById("SHEETID");
var result = { "status": "SUCCESS" };
// try {
// Get all Parameters
var email = request.parameter.email || "";
var source = request?.parameter.source ?? "";
var today = new Date();
var dd = String(today.getDate()).padStart(2, '0');