100 of the most common JavaScript questions developers ask when working with AI

Artificial Intelligence (AI) is reshaping how we build applications. JavaScript—already the language of the web—is increasingly becoming the glue that connects AI models, APIs, and interactive user experiences. But if you’re building AI-powered projects with JavaScript, you’ll run into dozens of “how do I…” questions every day. That’s why I’ve put together this guide: 100 … Read more

Learning JavaScript by Doing 100 JavaScript Exercises PDF Guide

Stop Reading, Start Doing: Level Up Your Skills with 10 JavaScript Exercises 100 Exercise Guide If you’ve ever tried to learn a programming language, you know the feeling. You can read tutorials and watch videos for hours, but the moment you face a blank editor, everything you “learned” seems to vanish. It’s a common problem, … Read more

28 day guide for Google Apps Script

Download PDF guide Comprehensive 28-day guide to learning Google Apps Script, designed for complete beginners. Each day’s lesson should take less than an hour to complete. How to Use This Guide Welcome to your 28-day journey into Google Apps Script! This guide is designed to take you from a complete beginner to someone who can … Read more

Welcome to Your 28 Day JavaScript Journey

Welcome! You’re about to take your first steps into the exciting world of programming with JavaScript, the language that powers the interactive web. This guide is designed to take you from a complete beginner to someone with a solid, practical foundation in just 28 days. You don’t need any prior coding experience—just curiosity and a … Read more

100 high impact copy pasteable Google Sheets Apps Script snippets

100 high-impact, copy-pasteable Google Sheets Apps Script snippets  How to use A. Setup & Quality-of-Life 1) Add a Custom Menu Creates a “Sheet Tools” menu with quick actions. function onOpen() {   SpreadsheetApp.getUi()     .createMenu(‘Sheet Tools’)     .addItem(‘Clear Selected Range’, ‘clearSelectedRange’)     .addItem(‘Timestamp Selected Cells’, ‘timestampSelection’)     .addToUi(); } function clearSelectedRange() {   const range = SpreadsheetApp.getActiveRange();   if (range) range.clearContent(); } … Read more

JavaScript Code Snippet Reference 100 Essential Snippets

1. DOM Selection & Manipulation 1. Select an Element by ID const element = document.getElementById(‘myId’); Explanation: Selects a single DOM element with the ID myId. 2. Select Elements by Class Name const elements = document.getElementsByClassName(‘myClass’); Explanation: Returns a live HTMLCollection of all elements with the class myClass. 3. Select Elements by Tag Name const elements … Read more

100 Common Google Docs Apps Script Examples

This document provides a comprehensive collection of Google Apps Script examples tailored for Google Docs. Each script is designed to automate common tasks, enhance productivity, and extend the functionality of your documents. 1. Basic Document Access & Creation These scripts cover the fundamental ways to access existing documents, create new ones, and get references to … Read more

Downloadable PDF Guides and Code Snippets and Resources

Discover My Latest Code Repositories & Downloadable Guides 📚💻 I’ve been hard at work over on GitHub crafting practical code examples and in-depth guides for web developers, automation enthusiasts, and Google Apps Script fans. Below you’ll find all my active repositories—each packed with hands‑on examples—and links to downloadable PDF versions so you can study offline … Read more

JavaScript Power Drills: 100 Exercises for Coders: From Fundamentals to Advanced – Practice Makes Perfect

Get the full book https://www.amazon.com/dp/B0FC7J9PY9 or https://www.amazon.ca/dp/B0FC7J9PY9 Introduction Welcome to JavaScript Power Drills: 100 Exercises for Coders!Whether you are an aspiring developer, an experienced programmer looking to brush up on your JavaScript, or a coding instructor seeking reliable practice materials, you’ve found the perfect resource. This book was created to help you move from understanding … Read more

100 Google Apps Script Snippets to Supercharge Your Google Docs

Google Docs is an incredible tool for writing, collaboration, and documentation—but did you know you can unlock even more power with Google Apps Script? With just a few lines of code, you can automate repetitive tasks, enforce formatting standards, analyze content, and streamline your workflow. On Github at https://github.com/lsvekis/Apps-Script-Code-Snippets Today, I’m sharing 100 ready-to-use Google … Read more