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…
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…
Swagger UI is a visual interface for viewing and interacting with RESTful APIs described using the OpenAPI Specification. To open a local JSON file in Swagger UI, we need to use a local HTTP server to serve the file and make it accessible to the Swagger UI interface. Any HTTP Server should work. In this…
Low code is a term that has been gaining popularity recently, with many companies and organizations turning to it as a solution for their software development needs. Almost every software vendor adding the term either low code or no code to the product offering. What is Low code? Low code refers to a software development…
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…
Python Basics Google's Python Class
Python Documentation
A Byte Of Python
Data Analysis Using Python
Official Technical Explanation Of Functions
Survey Of Python Syntax, Datatypes
The Official Python Tutorial
Reserved Keywords In Python
Style Guide For Python Code
Python Tools For Visual Studio Statistics…
Whenever I migrate my WordPress site, I manually export and import the data, images, plugins, settings, etc. This time I have decided to use the All-in-One WP Migration plugin. After exporting the data, images, plugins, settings using the All-in-One WP Migration plugin from the current site, I went to my new WordPress site and try…
I had a need to regular convert excel to csv file for processing instead of every time opening them in excel and save as CSV, below Python script using Pandas library converts all excel files in the given directory to CSV files.
import pandas as pd
import os
path = '/Users/shravan/Documents/files/'
csv_dir_path = os.path.join(path, 'csvs')
files = os.listdir(path)…
Many starter kits are available for creating React projects. Starter kits are useful, but most of them are black boxes. They improve productivity once the developers have an understanding of how they work. For large-scale applications, we want to create the application from scratch and want full control over it. This blog post aims to…
In this blog post, I am going to explain how to use dependency injection in spring using constructor injection and Java configuration. This blog post assumes you already have Java and Maven installed. Step 1: Create a Java Project using Maven Step 2: Let’s create some placeholder folders