100-Question JavaScript Interview Quiz

1) Basics, Types, Coercion (1–15) 1) What is the result of typeof null? A) “null” B) “object” C) “undefined” D) “number”Answer: B Explanation: A long-standing JS quirk: typeof null returns “object”. 2) What does NaN === NaN evaluate to? A) true B) falseAnswer: B Explanation: NaN is not equal to anything, even itself. Use Number.isNaN(x). … Read more

JavaScript Coding Exercises 21-35

If you’re serious about improving your JavaScript skills, reading alone isn’t enough — you need structured, real-world practice. I’ve just published 30 additional JavaScript coding exercises (Exercises 21–50), each one including:✅ Full, working code✅ Clear learning objectives✅ Step-by-step explanations✅ Practical DOM, async, and browser API examples This set goes beyond basics and helps you practice … Read more

Google Docs Cleanup Toolkit

https://github.com/lsvekis/Doc-Cleanup-Toolkit User & Developer Guide This guide explains what the Google Docs Cleanup Toolkit does, how to use it safely, and how each part of the system fits together. 1. What This Toolkit Is The Google Docs Cleanup Toolkit is a Google Apps Script project that helps you: It is designed to be: 2. Who … Read more

Vibe Learning: A Complete Guide to Learning Anything with AI

Key Ideas, Frameworks, and Systems from the First 10 Issues Learning has fundamentally changed. We now live in a world where artificial intelligence can explain, quiz, challenge, coach, critique, and adapt to us in real time. Yet most people still use AI the same way they use a search engine—asking shallow questions and getting shallow … Read more

Full Developer Guide: Building Applications with the Gemini API

Everything You Need to Integrate Gemini Into Web Apps, Servers, Workflows & AI-Powered Tools Google’s Gemini API gives developers a powerful set of tools for text generation, analysis, structured reasoning, image understanding, code assistance, and more. Combined with Gemini Gems, you can build AI agents that behave consistently and integrate them directly into your applications. … Read more

Gemini Gems – Quick Start Guide PDF Guide

How to Use Them & How to Get Started (Beginner Friendly) Gemini Gems are lightweight, customizable AI agents you can build inside Google AI Studio. They let you create mini-AI tools with specific behaviors—like tutors, assistants, generators, summarizers, or domain-specific experts—without writing complex code. If you can describe what you want, you can build a … Read more

Test Your Apps Script Knowledge 100 Quiz Questions

1. What is Google Apps Script primarily used for? A. Building Android appsB. Automating and extending Google Workspace appsC. Managing Google Cloud infrastructureD. Designing static HTML websites Correct answer: BExplanation: Google Apps Script is a JavaScript-based platform used to automate, integrate, and extend Google Workspace apps like Sheets, Docs, Gmail, Forms, and Drive. It’s not … Read more

7-Day Vibe Learning Crash Course: Learn Anything With AI in One Week

Welcome to the 7-Day Vibe Learning Crash Course — a rapid, structured journey that shows you how to use AI to: Each day introduces one essential skill in AI-powered learning.By the end of the week, learners will have everything they need to become AI-enhanced, self-sufficient lifelong learners. 📅 DAY 1 — Build Your AI Learning … Read more

AI Content Generator for Google Docs

Issue #2 https://github.com/lsvekis/apps-Script-Gemini-Repo AI Content Generator for Google Docs Write blog posts, lesson plans, summaries, outlines & formatted documents using Gemini — all from a custom Apps Script menu. ⭐ What You Will Build in Issue #2 A full AI Content Generator inside Google Docs with menu items like: AI Tools    → Generate Blog Post … Read more

How to Chunk Data in Google Apps Script

https://github.com/lsvekis/Chunk-your-data-Google-Apps-Script How to Chunk Data in Google Apps Script (So You Don’t Hit “Exceeded Maximum Execution Time”) If you work with large spreadsheets or big Drive folders in Google Apps Script, you’ve probably seen this error: Exception: Exceeded maximum execution time Most Apps Script executions have a hard time limit (often around 6 minutes per … Read more