Reflecting on Summit At the Snowflake Summit, a strong commitment to AI was emphasized. Both Snowflake and NVIDIA have made strides in building their AI capabilities. The rise of AI, particularly generative AI, has been a prominent topic at cloud tech conferences over the past year. As a former Snowflake employee and current customer, I’m […]
Technical
GitHub – On-Prem Server Connectivity Using Self-Hosted Runners
Various deployment methods, including cloud-based (e.g., CloudHub) and on-premises, are available to meet diverse infrastructure needs. GitHub, among other tools, supports versioning and code backup, while CI/CD practices automate integration and deployment processes, enhancing code quality and speeding up software delivery. GitHub Actions, an automation platform by GitHub, streamlines building, testing, and deploying software workflows […]
Testing Permission Sets in Salesforce
Permission sets in Salesforce are a powerful tool for granting users access to specific objects, fields, and functionality without modifying their profiles. However, testing permission sets is crucial to ensure they are working as intended and not causing any unintended consequences. Let’s discuss when and how to test permission sets, as well as some advanced […]
12 Best Practices for React Developers
As a React developer, it’s critical to increase the performance of your React applications to provide a smooth and streamlined user experience. This post will cover the best practices for writing code in React JS. 1. Minimize Re-renders and Use Memoization Memoization is a technique for minimizing expensive computations or function calls by caching their […]
Enabling Dynamic Media Feature For AEM Custom Components
Dynamic Media is one of the versatile tools provided by Adobe. Previously, it was known as Scene7. It has strong Asset editing and authoring tools capabilities. It is based on a Cache delivery network, which loads the contents to improve page load time and renders the right image renditions correctly resized and optimized. Dynamic Media allows […]
Components of SonarQube
What is SonarQube? SonarQube is a Code Quality Assurance tool that collects and analyzes source code and provides reports on the quality of your project’s code. It is also a self-managed, automatic code review tool that systematically helps you deliver clean code efficiently. SonarQube integrates into your existing workflow and detects issues in your code […]
Create Custom Datasource for Dropdown Fields in Context-Aware Config Editor
Sling Context-Aware Configuration in AEM (Adobe Experience Manager) provides the flexibility to set key value pairs for a business logic specific to a content path instead of site-wide configuration or template-wide configuration. For example, if you want to set different values for path /content/mysite/en and /content/mysite/es, then we can use the Context-Aware Configuration at the […]
Types of Console Methods in JavaScript for Debugging
JavaScript provides various console methods that aid in debugging your code. These methods offer functionalities beyond simple logging and can help you inspect variables, track execution flow, and organize your console output. Here’s an overview of some commonly used console methods: 1. Console.log With the console.log method, you can output messages to the web console. […]
Leading a Clinical Data Collaboration Revolution: A Success Story
Clinical trials are integral to the safe and efficient delivery of new pharmaceuticals. But this part of the development process comes with many unique challenges. Participants need to be carefully monitored for adverse impacts, disparate teams need easy access to the vast quantities of data that trials generate, and that data—often being collected from a […]
Crafting a Secure User Login Page with Next.js and Optimizely Commerce API: A Step-by-Step Guide
In this blog, let’s dive into creating a secure user login page with Next.js and integrating it with Optimizely’s Commerce APIs. Here are the steps you can follow: Setting Up Optimizely Configured Commerce Project: First, ensure you have an Optimizely Configured Commerce project running on your local machine with the necessary APIs. The hosted Optimizely […]
Enhancing Test Coverage with Data Driven Testing in C#
A testing technique known as “Data Driven Testing” (DDT) uses test data that is pulled from external data sources like databases, CSV files, Excel files, or other structured data formats. Data-driven testing in C# enables you to run the same set of test scripts with different sets of data, which can greatly improve your test […]
A Beginner’s Guide to C# Selenium Automation: Step-by-Step Tutorial
Are you interested in learning more about C# automation but need help determining where to begin? Do not be alarmed! In this step-by-step tutorial, we’ll walk you through starting from scratch with C# automation. After completing this course, you’ll have a strong basis for effectively automating activities with C#. Step 1: Setting Up Your Development […]