-
Implement a wait sync with a promise in TypeScript
waitMs = async (millis: number) => new Promise((resolve) => setTimeout(resolve, millis)); waitSeconds = async (seconds: number) => new Promise((resolve) => setTimeout(resolve, 1000 * seconds)); await waitMs(10000); await waitSeconds(10); Photo by Kai Pilger on Unsplash Read more
-

How to trigger a Lambda Function from S3
If your application requires you to be able to trigger a Lambda function from S3, it is possible to do so using the Amazon Simple Storage Service (Amazon S3). With Amazon S3, you can set up an event notification on an Amazon S3 bucket that will send a notification to an AWS Lambda function when… Read more
-

How to make Load and Smoke testing with Artillery
Overview Artillery is a CLI tool installed easily through npm Artillery is a modern load testing and smoke testing solution designed for cross-functional teams that run microservice-based systems on AWS and rely on CI/CD to ship at high velocity We are going to see how to install it and run some load tests from our Read more
-

Get Visualforce usage stats from VisualforceAccessMetrics
If you’re an administrator of a Salesforce org, you need to know how your users are interacting with your Visualforce pages. With Salesforce VisualforceAccessMetrics, you can easily get usage stats for your Visualforce pages and track page performance. Read more
-
Magic Mover for Notes And Attachments to Lightning Experience
Why convert attachments to Salesforce files? Files are more versatile and provide better functionality than attachments. Attachments can only be attached to a single record, while files: Can be shared with multiple records and users Appear in Files home and can be added to Libraries Track multiple versions Provide file previews of documents, images, PDFs, Read more
-
How to build a sitemap
Why? A sitemap is very important if you want to search engines discover and index your site properly. Your site is a jungle of HTML, CSS, and JavaScript files so the more you make it easier for search engines, the better. A sitemap.xml file is one of the most and easiest ways to implement. No Read more