Skip to content
View joepol's full-sized avatar

Block or report joepol

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. coding-notes coding-notes Public

    Forked from methylDragon/coding-notes

    I'm compiling comprehensive coding tutorials for many different languages and frameworks! 🐲

    C++ 1

  2. Things to examine before committing ... Things to examine before committing a new feature :
    1
    Things to examine before committing a new feature : 
    2
    
                  
    3
    1. **OS**  
    4
        - what will happen in Linux/Win/AIX/POWERPC? (vice versa)
    5
        - Is agent / db on other OSs acts the same? (`process per connection`, …)
  3. Python installed packages Python installed packages
    1
    import pip
    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)