SKSonu Kumar Sawinsonukumarsaw.hashnode.dev·Apr 5, 2022 · 1 min readIntroduction to GolangCourse Description In this course, we will be learning the Basics of Golang. Pre-requisites You don't need any prior coding experience to follow this course. Table of Contents 1.Intro 2.Installing Go 3.Reading Documentation 4.Go Modules 5.Go Worksp...00
SKSonu Kumar Sawinsonukumarsaw.hashnode.dev·Apr 3, 2022 · 4 min readSend Email using Python3In this tutorial, we will be learning about how to send an email using Python3. This article is a part of a project Warehouse Surveillance System. Warehouse Surveillance System is a software solution that detects movement in a video stream and raises...00
SKSonu Kumar Sawinsonukumarsaw.hashnode.dev·Apr 1, 2022 · 2 min readWarehouse Surveillance System using PythonIntroduction In this project, we will build a Surveillance System that can be used to detect intrusion and raise an alert. These types of Surveillance systems can be installed in private properties. In a real-life scenario, it will use multiple CCTV ...00
SKSonu Kumar Sawinsonukumarsaw.hashnode.dev·Mar 4, 2022 · 4 min readMutex locks in GolangWhile writing concurrent code in golang, often programs face situations when two or more goroutines try to access and modify shared variables. Such conditions can lead to inconsistency in data stored in the shared variable. Such conditions are called...00
SKSonu Kumar Sawinsonukumarsaw.hashnode.dev·Feb 26, 2022 · 5 min readRace Condition in GolangWriting a concurrent code is often a difficult task. often programmers working with concurrent code, face similar kinds of bugs. One of them is inconsistency while manipulating the data using concurrent goroutines. Let's see an example. package main...00