SGSahaj Guptainitsahaj.hashnode.dev·Jun 17 · 2 min readUser Authentication In E-AucIn this blog we'll explore how we'll be implementing the user authentication in our application (e-auction). Recently i have been using few application that have passwordless authentication and i sort00
SGSahaj Guptainitsahaj.hashnode.dev·Jun 15 · 4 min readE-Auc an online auction.E-Auc is a platform for sellers to post there products with a valid ask price and buyers to bid on the give product. the functionality involves. Sellers to upload product with a valid ask price. Buy00
SGSahaj Guptainitsahaj.hashnode.dev·Dec 20, 2025 · 4 min readGenerators in GoHi, in this blog we’ll be creating a generator in go, now to create a generator we first need to understand what generator is, (me coming from python) I’ll say generator is a special function that produce (returns) the value each time we call it. or ...00
SGSahaj Guptainitsahaj.hashnode.dev·Sep 24, 2025 · 3 min readYour own Signals library in PythonHi 😀 In this blog we are going to build our own python library “Signals” What is this library about? This is a very basic publisher/subscriber implementation where a publisher publishes event (emit) and its subscribers react on those events. somewha...00
SGSahaj Guptainitsahaj.hashnode.dev·Oct 11, 2024 · 3 min readRust ownership and borrowingThis is my attempt at explaining Rust ownership and borrowing rules. Lets look at the rules first. Each value in Rust has an owner. There can only be one owner at a time. When the owner goes out of scope, the value will be dropped. Before unders...00