Skip to content

Instantly share code, notes, and snippets.

View nizioleque's full-sized avatar
🔍
Looking for a job!

Norbert Kosma Niziołek nizioleque

🔍
Looking for a job!
View GitHub Profile
@nizioleque
nizioleque / Code.gs
Last active September 6, 2024 07:11
Google Calendar events bulk edit (with Google Apps Script)
function start() { main(); }
// CONFIGURE BELOW ------------------------------------------------
const Test = true;
const TestFn = events => {
const testEvent = events[0];
console.log(testEvent);
const response = updateEvent(testEvent);