joepol - Overview
Pinned Loading
-
Forked from methylDragon/coding-notes
I'm compiling comprehensive coding tutorials for many different languages and frameworks! 🐲
C++ 1
-
1
Things to examine before committing a new feature :
4
- what will happen in Linux/Win/AIX/POWERPC? (vice versa)5
- Is agent / db on other OSs acts the same? (`process per connection`, …)
-
2
installed_packages = pip.get_installed_distributions()
3
installed_packages_list = sorted(["%s==%s" % (i.key, i.version)
4
for i in installed_packages])
5
print(installed_packages_list)