5 private links
after collecting the search query fr
socks_db = SqliteDatabase('socks_i_own.db')
's create a virtualenv and install the packages we'll be using. If you're not familiar with virt
Ok this is probably a boring start to the list. It is perhaps not a hidden gem to anyone. But, I’ve seen too many people not following the coding style conventions. I know it is your code, but if you are planning to share it any time in future, you probably want others to like it and find it useful. I think one of the most important factors of an open source project is readability. And perhaps the very first step to having a readable is to follow the conventions and styles that people are used to. This is probably the only place that you don’t want to be super creative.
I found this new feature to be really interesting. While I love Python’s dynamic nature, I can also see the value in knowing what type a variable should be after working with C++ for the past couple of years. Of course, due to Python’s excellent introspection support, figuring out an object’s type is trivial. But this new feature could make static checkers better and also make your code more obvious, especially when you have to go back and update a piece of software you haven’t worked with in a few months or years.