10 useful Git commands for collaborative development

The more people working on a given project, the more work organization it requires. Thus, Git is commonly used to coordinate work among programmers. However, without enough knowledge, using git can become a nightmare. Instead of helping, it only hinders. Instead of keeping control of the repository, you end up with tons of conflicts in […]

2 easy tips to manage environment variables in Python

Environment variables exist outside of your code as part of your server environment. They can significantly automate running your script/applications and make it more secure. For instance, instead of manually changing the user name variable when you run a script on a different machine, you can use an environment variable that returns the corresponding value. […]