TO THE NEW Blog PAGES

Experience Design

The Difference Between Responsive and Adaptive Design

Access to the internet is not limited to just laptops or desktop computers. Instead, with the emergence of mobile devices, a diverse range of users are accessing the internet using different arrays of devices. As a result, it becomes important that a website or a web product should perform well across multiple devices. With the […]

Drupal

How to create custom Drush command in Drupal

In this tutorial se are going learn how to create custom Drush command in drupal. For that we need to create a custom module. The file structure will be like below drush_command_example    Commands       CustomCommands.php   drush_command_example.info   drush.services.yml 1. drush_command_example.info file name: Drush Command Example description: This is our custom drush […]

Drupal

How to give twig suggestion for custom form in Drupal 8 and 9

In this tutorial we will learn how to give twig suggestions to a custom form in drupal 8/9 First, we will render the entire form into twig file then we will render one by one field in the twig file Here we have a module ttn_blogs module. Below are the steps to follow: Step 1  Create […]

Digital Marketing

Building the Analytics-Driven Content Strategy: How to Use Insights to Fuel the Process

In today’s competitive landscape, around 4.4 million blogs are published every day across different platforms. However, only a small percentage of this content can engage the audience and drive conversions. Most content marketers still rely on assumptions and hypothetical data to build their content marketing strategy. However, it’s increasingly clear that this approach doesn’t always […]

B2BDigital Marketing

7 Powerful Methods to Generate Unique B2B Content Ideas

Creating quality content is paramount for every B2B marketer to drive their business forward and gain audience trust. However, finding original and compelling content ideas can be challenging for marketers. At times marketers may feel they are running out of content ideas, or every topic they want to write about has already been covered or […]

Android

Android Katha: onActivityResult is Deprecated. Now What?

  Hi and welcome to my blog, During our Android application development, we have been using startActivityForResult and onActivityResult methods a lot for the sake of callbacks from activities. It was really-clear and easy to implement. But Google knows. Unfortunately, now we are getting a warning for this method in our code. So the question is, Now What? And […]

Agile

Transitioning from a BA to a PM

If you are a business analyst (BA), you might have considered becoming a project manager (PM) at least once. Well if you are still thinking about it, you are in the right place. I have been in your shoes and have successfully transitioned to a Project Management role. Though it is not the only way […]

CloudDevOps

Azure Account Authentication Using Python3

Need for Authentication: To communicate with Azure Resources we need to do authentication, suppose you have an application that monitors Azure resources. To fetch azure resources data from the azure account, we need a connection string or secrets to do Azure Authentication. Ather that, these all secrets are shared with the application developer who integrates […]

Ritika
Ritika
Read

DevOps

Implementation of AWS EKS Node Group Using Terraform

Implementation of AWS EKS Node Group Using Terraform Manages an EKS Node Group, which can provision and optionally update an Auto Scaling Group of Kubernetes worker nodes compatible with EKS. Amazon EKS managed node groups automate the provisioning and lifecycle management of nodes (Amazon EC2 instances) for Amazon EKS Kubernetes clusters. With Amazon EKS managed […]

Digital MarketingMarketingMarketing Automation

Replace your lead tracking spreadsheets with a Marketing Automation Platform

Are you still using dated lead tracking spreadsheets to capture your marketing qualified leads? The risk of human error, the continuous updating of, and (gasp!) the manual transfer of information involved with common lead tracking spreadsheets are frustrating and riddled with inaccuracies. While marketing spreadsheets had their place ages ago, they have now been replaced […]

HybridMobilityTesting

Flutter Test Coverage

As a good practice we should always write unit tests while writing the code for a software. Next, it is important to measure that the test we write is enough for our code or not, as per our coverage criteria. We leverage a few tools, discussed below, that check which lines of the codes are […]

iOS

Networking layer with Combine

What is Combine? The Combine Framework – A framework rolled back in 2019 that works on the fundament of Functional Reactive Programming (FRP) paradigm similar to RxSwift and ReactiveSwift. It is developed by Apple and can be seen as a 1st party alternative to RxSwift and ReactiveSwift. Let’s read from the documentation: Customize handling of […]