#programming-tips
Read more stories on Hashnode
Articles with this tag
Python Garbage Collection: Understanding the Basics 路 Introduction Garbage collection (GC) is a crucial mechanism in programming languages, streamlining...
A short tutorial on struct of GoLang 路 This blog post discussed structs in GoLang, which are user-defined types used to group data and model real-world...
Write Efficient and Maintainable Python Code with These 10 Best Practices 路 In this blog post, I will share ten best practices every Python developer...
Boosting Go Performance: Understanding Concurrency and Parallelism for Efficient Code Execution GoLang has built-in support for concurrency and...
Unlock the Power of Functions: How to Get Multiple Return Values with These Simple Tips in GoLang 路 One feature that makes GoLang unique is its support...
Cool Python tips and tricks 路 Ternary operator ans = z if a > b else c is same as if a > b: ans = z else: ans = c Short circuit result =...