KRkeerthi raja Pinepitomeofcode.hashnode.dev·Feb 17, 2025 · 3 min readGo RoutinesGo Routines help us to handling multiple tasks at the same time (concurrency) It is lightweight thread, Managed by go Runtime. Go Routine is cheap in terms of memory and Resource. How to create Goroutine We can start a Goroutine by Simple using g...00
KRkeerthi raja Pinpythonlearings.hashnode.dev·Nov 17, 2024 · 1 min readPython Virtual Environmentwhy virtual environment? → Each project demands different version of dependencies (libraries, packages, etc.), So the purpose of virtual environment is to isolate each dependencies for each projects. → So dependencies will not installed globally that...00