Debugging code run in webservers like gunicorn is not very convenient. Even less convenient is debugging them running in docker. Pudb can give you comfort like GUI debugger but run in TUI remote environment.
29 Sep 2016 by dryobates
Debugging code run in webservers like gunicorn is not very convenient. Even less convenient is debugging them running in docker. Pudb can give you comfort like GUI debugger but run in TUI remote environment.
29 Sep 2016 by dryobates
I often see programmers, even experienced, that tediously press "n" and "s" few hundreds of times, one after another, only to skip some for loop or get into state where loop is executed n-th time in pdb. Here is a little tip how to do it smarter.
09 Aug 2015 by dryobates
Virtualenv is a great software for isolating python environments. Wheel is a great package format for quick installation of packages. Since virtualenv 13.0.0 installs automatically with wheel... I was kicked with dark side of this decision.
30 Jun 2015 by dryobates
This night we've get back from PyWaw Summit. Talks were really inspiring.
27 May 2015 by dryobates
Python is powerful dynamically typed language. We can benefit from it's dynamic nature doing a lot of things difficult to achieve in statically typed languages. But that nature has it's price which grows with a project. Unless you resolve into technics learned from statically typed languages.
17 May 2015 by dryobates