Devpriya ShivaniVedanta Meets Feminism and Sublates ItFrom the Vedantic perspective, true feminism emerges when a woman stops identifying primarily as a female. This radical idea aligns with…Oct 5Oct 5
Devpriya ShivaniGo Type AssertionsIn Go, an interface is a powerful abstraction that allows us to decouple the implementation from the behavior. Essentially, an interface…Jul 23Jul 23
Devpriya ShivaniGo Interfaces, Polymorphism & CollectionInterfaces and polymorphism are fundamental concepts in Go that allow for flexible and decoupled code design. This blog post will explore…Jul 23Jul 23
Devpriya ShivaniGo Blank IdentifierIn Go, the blank identifier is represented by an underscore (_). It's a special identifier that can be used in various scenarios where a…Jul 22Jul 22
Devpriya ShivaniGo ArraysArrays are a fundamental data structure in many programming languages, and Go is no exception. It lets you allocate a contiguous block of…Jul 7Jul 7
Devpriya ShivaniFunction IdiomsOften praised for its simplicity and efficiency, Go offers a rich set of idioms that enhance function usage. These idioms can help make…Jul 6Jul 6
Devpriya ShivaniGo PointersGo is a statically typed, compiled language known for its simplicity and efficiency. One of the key features that sets Go apart from many…Jul 4Jul 4
Devpriya ShivaniGo ConstantsIn Go, constants are declared using the const keyword followed by a name and a value. It holds a unique and crucial role, distinguished by…Jul 3Jul 3
Devpriya ShivaniGo Syntax — Struct & LiteralStructStructs are a powerful feature in Go, allowing you to create complex data types that group variables together. In this blog post, we’ll…Jun 293Jun 293
Devpriya ShivaniGo Syntax — Type ConversionsIn Go, type conversions are used instead of casting, as they are considered safer. Type conversion in Go resembles calling a function and…Jun 29Jun 29