Skip to content

Instantly share code, notes, and snippets.

View AX99's full-sized avatar

Raphael AM AX99

  • London
  • 06:06 (UTC +01:00)
View GitHub Profile
@AX99
AX99 / app.js
Created July 6, 2024 10:24
Google Apps Script - Drive management
const parentFolderId = "ID"; // The ID of the main parent folder where files are initially dropped
const parentFolder = DriveApp.getFolderById(parentFolderId);
const parentName = parentFolder.getName()
const files = parentFolder.getFiles();
function moveFiles() {
while (files.hasNext()) {
const file = files.next();
@AX99
AX99 / Ebay Marketplace Account Deletion+Closure Notifications
Last active June 2, 2025 08:59
Ebay Marketplace Account Deletion/Closure Notifications serverless (GCP) implementation written in python
import os
import json
import base64
import logging
import hashlib
import requests
from flask import request, Response
from OpenSSL import crypto
logger = logging.getLogger(__name__)