Soumendra kumar sahoo
Soumendra's Blog

Soumendra's Blog

Follow
home馃悕Python馃AI馃懇馃徎鈥嶐煉籊o馃Job Interviews馃棧锔廜dia Language馃洜锔廡ools
Tag

Programming Tips

#programming-tips

More content

Read more stories on Hashnode


Articles with this tag

Garbage Collection in Python

Mar 31, 202310 min read 427 views

Python Garbage Collection: Understanding the Basics 路 Introduction Garbage collection (GC) is a crucial mechanism in programming languages, streamlining...

Garbage Collection in Python

How to Use Structs in GoLang: A Comprehensive Tutorial

Mar 23, 20236 min read 105 views

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...

How to Use Structs in GoLang: A Comprehensive Tutorial

10 Best Practices for your Python code

Mar 4, 20234 min read 140 views

Write Efficient and Maintainable Python Code with These 10 Best Practices 路 In this blog post, I will share ten best practices every Python developer...

10 Best Practices for your Python code

Concurrency and parallelism in Go

Feb 19, 20231 min read 101 views

Boosting Go Performance: Understanding Concurrency and Parallelism for Efficient Code Execution GoLang has built-in support for concurrency and...

Concurrency and parallelism in Go

Multiple return values from a function

Feb 18, 20231 min read 100 views

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...

Multiple return values from a function

Cool Python tricks you are not using, but you should.

Aug 22, 20212 min read 214 views

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 =...

Cool Python tricks you are not using, but you should.