Digital Inspiration
758 FOLLOWERS
A blog on how-to guides around consumer software and mobile apps. Digital Inspiration helps businesses automate processes and improve productivity with Google Workspace add-ons, Google Cloud and Apps Script. Authored by Amit Agarwal.
Digital Inspiration
4d ago
Zoho Payments is a new payment gateway that lets you accept payments on your website. You can visit this sample store to see the Zoho ..read more
Digital Inspiration
4d ago
A fintech startup is preparing to host its first-ever networking event for professionals within the industry. Over the course of their ..read more
Digital Inspiration
1M ago
The recent release of Apple Intelligence has added a new set of helpful AI writing tools to your Mac. You can proofread emails, summarize ..read more
Digital Inspiration
1M ago
You are running a small software business that sells digital downloads - apps, plugins, or even templates. When the buyer completes the ..read more
Digital Inspiration
2M ago
A teacher would like to create separate Google Drive folders for each student in her class. Within each student's folder, there will be ..read more
Digital Inspiration
2M ago
If you are running an online store running on WordPress, chances are you are using WooCommerce to manage your customers and orders. The ..read more
Digital Inspiration
3M ago
Let's say you have a Github repository where you push all your code changes. Each commit has a unique commit hash, and you can use this hash ..read more
Digital Inspiration
4M ago
Document Studio can convert Google Slides into high-resolution PNG images. This can be useful if you want to create multiple variations of the same slide in bulk - create a single template in Google Slides and then use Document Studio to generate PNG images with different text or images, pulled from a Google Sheet or Google Forms.
Internally, the app uses the Google APIs to generate high-resolution thumbnail images of the slides and uploads the individual slides to the Google Drive of the current user.
In this tutorial, we’ll explore two methods to achieve the slide-to-png conversion using Goo ..read more
Digital Inspiration
6M ago
False positives in Gmail are uncommon but can happen, meaning an important email might mistakenly end up in your spam folder. When you’re dealing with hundreds of spam messages daily, identifying these legitimate emails becomes even more challenging.
You can create filters in Gmail such that emails from specific senders or with certain keywords are never marked as spam. But these filters would obviously not work for emails from new or unknown senders.
Find incorrectly classified messages in Gmail Spam
What if we used AI to analyze our spam emails in Gmail and predict which ones are likely fals ..read more
Digital Inspiration
7M ago
Adding a custom menu in Google Sheets, Docs, Slides, and Forms using Google Apps Script is straightforward.
As an illustration, the following code snippet adds a custom menu to the parent Google Sheet that reveals the spreadsheet name upon clicking.
function onOpen() {
const ui = SpreadsheetApp.getUi();
const menu = ui.createMenu('➯ Custom menu');
menu.addItem('Show spreadsheet name', 'showName');
menu.addToUi();
}
function showName() {
const fileName = SpreadsheetApp.getActiveSpreadsheet().getName();
SpreadsheetApp.getUi().alert(fileName);
}
The above code defines two functio ..read more