STSubramanya TNinsangama.hashnode.devยทDec 3, 2024 ยท 4 min readPulsar Manager Setup and Usage ProcessBelow is the comprehensive guide for setting up and using Pulsar Manager to manage your Pulsar Cluster. The steps will guide you from installation to usage, including how to access and interact with the Pulsar Admin API. 1. Prerequisites Before you ...00
STSubramanya TNinsangama.hashnode.devยทNov 19, 2024 ยท 6 min readJwt Auth + Encryption Using Web -socketsWebSocket Communication, JWT, and Encryption/Decryption Explained In this scenario, you're using WebSockets to send and receive messages between a producer (sender) and a consumer (receiver). Additionally, you are using JWT (JSON Web Token) for authe...00
STSubramanya TNinsangama.hashnode.devยทNov 19, 2024 ยท 3 min readJWT, and EncryptionJWT: A compact token format used for securely transmitting information between parties as a JSON object. RSA Encryption: A public-key cryptography system used to encrypt and decrypt messages, ensuring that only the intended recipient can read the co...00
STSubramanya TNinsangama.hashnode.devยทSep 27, 2024 ยท 4 min readHow to Build a Simple Chat App in Python Using PULSAR MQTT: Including All You Need to Get StartedWhat You'll Need Before You Begin Before we start, make sure you have the following: python3 installed mqtt set up with your local pulsar(1883) Read this article for completing perquisites Article_CLICK Understanding How the Chat App Works Our chat ...00
STSubramanya TNinsubbu44.hashnode.devยทNov 9, 2023 ยท 2 min readBINARY SEARCH - leetcode101ALGORITHM: Start with a sorted list or array. Set left to the index of the first element and right to the index of the last element. Repeat the following as long as left is less than or equal to right: a. Calculate the middle index as (left + righ...00