Explore >> Select a destination


You are here

pythonspeed.com
| | michaelscodingspot.com
19.6 parsecs away

Travel
| | Michael Shpilt's Blog on .NET software development, C#, performance, debugging, and programming productivity
| | codewithoutrules.com
8.9 parsecs away

Travel
| | How do you ship a product on schedule? One useful approach is applying the You Aint Gonna Need It principle, or YAGNI for short: leave out all the things that seem nice-to-have, but you have no proof you actually need. But beyond the things you dont need, there are still plenty of features you pretty clearly do need but are not blockers on releasing your product. So beyond YAGNI, theres also YDNIY: You Dont Need It Yet. Lets see an example of this principle in practice, visualize the principle as a flowc...
| | nikhilism.com
18.6 parsecs away

Travel
| |
| | janakiev.com
61.6 parsecs away

Travel
| Python's built-in venv module makes it easy to create virtual environments for your Python projects. Virtual environments are isolated spaces where your Python packages and their dependencies live. This means that each project can have its own dependencies, regardless of what other projects are doing.