RSSAmplifier

Blog

The Colorful Slate Blog

A blog focused on AEM and other Dev related stuff

aemslate.comRSS feed ↗10 posts

Latest posts

Integrating Jenkins with AEM Deployments

In this article, let's dive in and understand how Jenkins pulls the code from Git, builds it, and then pushes it to AEM, deploying the artifact. Steps to follow Step 1: We need to have a running AEM Author and Publish instance. You can also use local...

Boosting AEM Website Performance with Smart Imaging

Page load time is one of the critical factors that significantly impacts the customer experience on your website, mobile site, or app. Customers will often abandon a site or app if a page takes too long to load. This can have a significant impact on ...

Unlocking AEM Cloud Power: Step-by-Step Guide to Creating System or Service User( AEM CaaS)

Why do we need a System or Service User? A system user is typically utilized by the AEM backend code which has privileges to create, read, update, and delete nodes in the JCR using a session. Developers have to close the session after the tasks are p...

AEM Cloud Service Log Tailing: Troubleshooting and Monitoring Tips

Tailing AEM (Adobe Experience Manager) logs in AEM Cloud Service is a common task for troubleshooting and monitoring purposes. AEM Cloud Service is a managed service provided by Adobe that runs AEM in a cloud environment, and accessing logs may diffe...

AEM - Groovy script to add rep:policy based on Query

Recently, I came across a requirement where we need to add rep:policy to a large number of nodes. We clearly understood that it wouldn't be possible to do it via the usual AEM GUI, as it would be time-consuming work. So, we tried doing it via the Gro...

Unlimited Free Email Address using Cloudflare and your Free Custom Domain

We all have faced this issue where we need to provide our email id for registration purposes on different websites. Sometimes we think we can avoid giving our personal or business email addresses as this can result in spam emails. Now, on the intern...

Fetch Unread Emails to Slack using Slash Commands Bot

Slack is one of the most popular messaging tools. In this article, we will connect our free slack account with Gmail using Slash commands and Google Scripts to pull our unread emails. Many times we face situations where Gmail is blocked because of se...

Elastic Search Cheatsheet

Recently in my project, we started working on improving our Search Capability. We were using the couchbase full-text search and wanted to move to something more powerful and dynamic. After going through multiple suggestions, we decided to go ahead wi...

Twitter Bot which tweets Mars Photos

Hi! In this article, we will build a simple Twitter bot with Python, which will use NASA Open source API to tweet Mars Image every 1 hour. I have built this Bot and hosted it on Heroku and it's online for the past few months. You can view it here Mar...

Handy Commands For Developers

Chrome Copy data to Clipboard If you want to copy an object or variable to the clipboard from the console, then use the below copy command. The below line will copy AABB text to the system clipboard. copy("AABB"); Copy query param of page to ...