This is a sample script for creating quizzes in Google Form using Google Forms Service with Google Apps Script.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const USERS_SHEET_NAME = "users", | |
TASKS_SHEET_NAME = "tasks", | |
SPREADSHEET_URL = "https://docs.google.com/spreadsheets/d/abc123456/edit", /* TODO(Developer): Replace the spreadsheet ID */ | |
/* Use `SpreadsheetApp.getActiveSpreadsheet()` if the Apps Script was created from a Google Sheet. */ | |
spreadsheet = SpreadsheetApp.openByUrl(SPREADSHEET_URL); | |
const getEmailByNickname = (() => { | |
const usersSheet = spreadsheet.getSheetByName(USERS_SHEET_NAME); | |
let userEmailTable = {}; |
Convert mac-os-el-capitan-pkg-to-iso.sh
from using hdiutil
and asr
to using Linux utilities.
Important: You will need about 30GB of free disk space.