BMbismeet marwahaincodeismoney.hashnode.dev·Mar 10, 2023 · 3 min readSingle Root I/O VirtualizationThe Single Root I/O Virtualization (SR-IOV) specification is a technology that allows a single physical network interface card (NIC) to be shared across multiple virtual machines (VMs). This allows for better utilization of hardware resources, reduce...00
BMbismeet marwahaincodeismoney.hashnode.dev·Feb 26, 2023 · 2 min readDebugging , No I can't do it"Debugging is like being the detective in a crime movie where you're also the murderer." - Filipe Fortes Debugging is an essential part of any programming project. As a developer, you'll often encounter bugs in your code that need to be fixed. Debugg...00
BMbismeet marwahaincodeismoney.hashnode.dev·Nov 19, 2022 · 3 min readInfrastructure as Code with TerraformCode: The script used in this intro is here. Prerequisites Some familiarity with what cloud is and an AWS account to follow along(free tier will suffice). Why you absolutely want this You want to deploy resources on a cloud provider like AWS, easy ri...00
BMbismeet marwahaincodeismoney.hashnode.dev·Nov 13, 2022 · 2 min readUnitesting in python - Instance MethodsSuppose we have the following python code snippet : class FileManager: def isStored(self): pass def read(self): pass class FileManagerImpl(FileManager): def isStored(self): return True def read(self): ...00