FIFO Explore • Posts | 3

Search

In continuation with learning playwright automation, lets have a look at some of it's advantages.

Since playwright is very new tool in the market, there are many new feature releases happening every month. Following are some of the added advantages that this new tool has come up with making it a more popular choice than the existing tools.

9

#kafka resizing a topic's replication factor

My script to help generate the remapping json

https://github.com/vishalendu/kafkaTopicIncreaseReplicationFactor

14
1

Ways to implement Debounce

media

Refer to the previous post to understand what is debounce and when to use debounce.

In this thread🧵, we'll implement debounce in 2 different ways

...

13
2

One of the very famous tools to automate a software (UI) is Selenium. Selenium is a set of tools combined for better integrations. Selenium web driver is a part which helps drive test automation on UI. Web driver facilitates us with traversing through the web elements in DOM and perform the required action using different scripting languages.

media
12
3

I am Busy != I am Productive

10
2

Productivity is taking breaks :) There I said it!

9
1

What we do in our spare time, shapes us and makes us who we become in the future💯

10
1

React State Management in 2023

History of React State Management

• 2013 – Introduction

• 2015 – Redux

• 2016 – MobX

• 2018 – Context

• 2019 – Hooks

• 2019 – Zustand

• 2020 – Jotai, Recoil

The future is exciting! Here's a brief summary of how we got here ⬇️

media

13
1

Statistics is the science of changing your mind.

Making decisions based on facts (parameters) is hard enough as it is, but -curses!- sometimes we don’t even have the facts we need. Instead, what we know (our sample) is different from what we wish we knew (our population). That’s what it means to have uncertainty.

Here is the statistics jargon cheatsheet...

14

Lazy loading

Lazy loading means that a component or a part of code must get loaded when it is required.

It is also referred to as code splitting and data fetching.

media
14