1 06, 2023

10 Best Practices of AWS S3 Folder Structure

2023-06-01T04:33:57+00:00June 1, 2023|Database|0 Comments

|
| ByKrishna Bali

Here are 10 AWS S3 folder structure best practices: Consistent Naming Convention: Use a consistent and logical naming convention for your folders. This helps in easy navigation and organization. Avoid using special characters or spaces in folder names. Hierarchical Structure: [...]

29 05, 2023

How To Setup & Install Selenium With Python & Pycharm

2023-05-29T04:38:49+00:00May 29, 2023|Web Development|0 Comments

|
| BySumit Gupta

Install Python on windows Install Selenium with Python Configure Pycharm with Selenium How to install Python on windows. There is a website to download Python. https://www.python.org https://www.python.org/downloads/ Here, click on "Download Python 3.10.7". This is the latest version of Python. [...]

26 05, 2023

Lightning Spinner Salesforce

2023-05-26T04:31:32+00:00May 26, 2023|Salesforce|0 Comments

|
| ByRishabh Sehgal

A lightning Spinner displays an animated spinner image to indicate that a feature or customization is loading. This component can be used when retrieving data or anytime when the operation takes time to complete so meanwhile, we can display a [...]

15 05, 2023

Factory Pattern in React Js

2023-05-19T07:22:07+00:00May 15, 2023|Web Development|0 Comments

|
| ByBabita Kapoor

We create a function that will dynamically create our components based on the payload rather than writing numerous if statements. This procedure is called factory function. This is how our app currently appears. In a nutshell, the factory pattern is [...]

12 05, 2023

How to make a batch class schedulable

2023-05-12T04:48:57+00:00May 12, 2023|Database|0 Comments

|
| ByAyush Sharma

Batch Apex is a very powerful tool that allows us to work on large volumes of data in bite-sized chunks (batches) so that we don’t hit Salesforce’s governor limits. Often, we need to schedule our batch apex to run at [...]

10 05, 2023

Events in Codeigniter

2023-05-10T05:08:32+00:00May 10, 2023|Web Development|0 Comments

|
| ByBabita Kapoor

In Codeigniter, when it runs it follows a specific execution process. So, in CodeIgniter 4, we can use events to perform certain actions that we want to occur at a specific point in the execution process. For instance, we might [...]

8 05, 2023

How to Delete files from azure storage using python

2023-05-08T04:48:25+00:00May 8, 2023|Web Development|0 Comments

|
| ByWebner

First, install azure-storage-blob module. pip3 intall azure-storage-blob Then import ContainerClient: from azure.storage.blob import ContainerClient After that get your Credentials “Connection string” from the Microsoft official site https://portal.azure.com/#home inside the storage account option. After that just follow the below-mentioned code: from [...]

28 04, 2023

What Is Agile Testing

2023-05-03T04:56:22+00:00April 28, 2023|Software Testing|0 Comments

|
| ByWebner

What Is Agile Testing? Agile testing is a collective term that is used to define the testing process which follows the Agile software development principles. It basically includes performing frequent and automated testing of code along with the development process. [...]

26 04, 2023

Instant Recovery of EC2 Instance from Snapshots

2023-05-03T04:58:24+00:00April 26, 2023|Cloud|0 Comments

|
| ByManoj Thakur

Recovery of EC2 Select Snapshots from the Elastic Block Store menu on the Amazon EC2 interface. Find the snapshot you wish to restore, then choose it. Choose Actions, and then choose Create Volume. In the same Availability Zone as your [...]

18 04, 2023

Rules to redirect www to the parent domain

2023-04-18T04:52:05+00:00April 18, 2023|Cloud, Database|0 Comments

|
| ByWebner

Install the URL Rewrite module (if it is not installed by default). http://www.iis.net/downloads/microsoft/url-rewrite After installing the module, use the below directive and put it inside the webconfig file Note: replace the domain name above from example.com with your desired domain [...]

Go to Top