Skip to content Skip to footer

Author page: Shravan Kumar Kasagoni

The Evolution of Automation: From Macros to Intelligent Automation

Image Credit: Generated by OpenAI's DALL·E.The journey of process automation is a testament to human ingenuity and our relentless pursuit of efficiency. From the early days of macros and scripting to the sophisticated realms of intelligent automation, this evolution reflects our growing capability to harness technology to transform our work. This blog post delves into…

Read more

Common Mistakes Organizations Make in Automation

In the digital transformation era, automation has become a cornerstone for organizations looking to improve efficiency, reduce costs, and enhance productivity. However, the path to successful automation is riddled with potential pitfalls. Understanding these common mistakes can help organizations navigate their automation journey more effectively. 1. Lack of Clear Strategy Overlooking the Big Picture: Organizations…

Read more

JavaScript

URLSearchParams returning null for the first query string

The URLSearchParams interface defines utility methods to work with the query string of a URL. const url = 'http://example.com?orderNumber=123456&pageSize=20'; const urlSearchParams = new URLSearchParams(url); console.log(urlSearchParams.get('orderNumber')); //result: null console.log(urlSearchParams.get('pageSize')); //result: 20 As shown in the above code snippet, it won't work as expected if you directly use the URL string in the URLSearchParams constructor. So the result of the first…

Read more