Skip to content

Instantly share code, notes, and snippets.

View olimpa's full-sized avatar
:shipit:

OLIMPA olimpa

:shipit:
  • Es hat nicht die Ebene für diesen Abschnitt.
  • Es hat nicht die Ebene für diesen Abschnitt.
View GitHub Profile
@olimpa
olimpa / Code.gs
Created April 17, 2022 04:25 — forked from ex-preman/Code.gs
CRUD Using Google Apps Script
function doGet(e) {
Logger.log(e);
var op = e.parameter.action;
var ss = SpreadsheetApp.open(DriveApp.getFileById("YOUR_SPREADSHEET_ID"));
var sn = "YOUR_SHEET_NAME";
var sheet = ss.getSheetByName(sn);
if (op == "insert")
return insert_value(e, sheet);
@olimpa
olimpa / testedcodedev.txt
Last active October 11, 2021 18:21
Web + Notion + Cloudflare 2021
/* CONFIGURATION STARTS HERE */
/* Step 1: enter your domain name like fruitionsite.com */
const MY_DOMAIN = 'wev.to';
/*
* Step 2: enter your URL slug to page ID mapping
* The key on the left is the slug (without the slash)
* The value on the right is the Notion page ID
*/
@olimpa
olimpa / gist:b82595bb638891bcfafef3dd64138f79
Created September 13, 2021 01:26
WEB ENABLE FRUITIONSITE
/* CONFIGURATION STARTS HERE */
/* Step 1: enter your domain name like fruitionsite.com */
const MY_DOMAIN = 'dev.dec';
/*
* Step 2: enter your URL slug to page ID mapping
* The key on the left is the slug (without the slash)
* The value on the right is the Notion page ID
*/
@olimpa
olimpa / gist:7f3f243d229de2873eb612129216288e
Created September 1, 2021 13:12
CODE NEW FRUITIONSITE
/* CONFIGURATION STARTS HERE */
/* Step 1: enter your domain name like fruitionsite.com */
const MY_DOMAIN = 'web.web';
/*
* Step 2: enter your URL slug to page ID mapping
* The key on the left is the slug (without the slash)
* The value on the right is the Notion page ID
*/
@olimpa
olimpa / gist:f67e9ea5cbc98a121a6409a607e6070e
Created August 14, 2021 14:08
fruitionsite functional code
/* CONFIGURATION STARTS HERE */
/* Step 1: enter your domain name like fruitionsite.com */
const MY_DOMAIN = 'root.dev';
/*
* Step 2: enter your URL slug to page ID mapping
* The key on the left is the slug (without the slash)
* The value on the right is the Notion page ID
*/