© 2023 Hashnode
#configuration
I just started working and was asked to create a new GitHub account for my work-related tasks. But there was one major issue when it came to setting up git on my machine. How do I handle personal comm…
One may want to change/update the user agent for various use cases. One such use case is : Ensuring user analytics (e.g. Segment) is not triggered for your automated test cases. Not doing this may result in a higher analytics bill. Soluti…
Create a self-signed certificate $ openssl req -new -x509 -sha256 -newkey rsa:2048 -nodes -keyout server.key -out cert.pem Create a signing request $ openssl req -new -sha256 -newkey rsa:2048 -nodes -keyout staging.key -out staging.csr
What does it mean to optimize Kafka for High Availability? This means that the Kafka applications should recover as quickly as possible from failures to ensure reads and writes are always available fr…
The config.js file is a JavaScript file that contains configuration settings for your application. These settings can include things like API keys, server URLs, and other settings that are likely to c…
Building reusable components supporting a lot of different variants and elements is not easy. There are two common approaches, composition and configuration. The composition encourages building functionality by composing multiple components…
Motivation Without many words, let’s jump into some examples of usual imports: import Header from '../../../components/Header'; import ThemeProvider from '../../../../theme/ThemeProvider'; import useL…
Modern Linux distros aim to equip both casual users and developers with many of their tools out of the box, but given the vast repositories of useful software, you'll likely install additional tools f…
What is Durability in Kafka Durability in Kafka is all about reducing the likelihood of losing a message. Confluent Cloud enforces a replication factor of 3 to ensure data durability [1]. Producer ack…
Neovim is a powerful and highly customizable text editor that is well-suited for a wide range of programming and text editing tasks. If you are looking for a fast and reliable text editor, Neovim is d…