Joined April 2014
·
Posted to
Adding and Deleting user in Ubuntu
over 1 year
ago
Yes that's also.
Posted to
Remotely Stash Git Commits
over 1 year
ago
Cool !!!
Posted to
Making Python zip or tar files executable
over 1 year
ago
@chrissimpkins @kazark
There needs to be __main__.py
file in inside of zipped file which we need to put before making zip.
Example:
file: __main__.py
import sys
from some_where_else import main
if __name__ == '__main__':
sys.exit(main())
So python interpreter looks that __main__.py
and starts execution.
Achievements
174 Karma
216,908 Total ProTip Views
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Raven
Have at least one original repo where some form of shell script is the dominant language
Komodo Dragon 3
Have at least three original repos where Java is the dominant language
Komodo Dragon
Have at least one original repo where Java is the dominant language
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
T-Rex
Have at least one original repo where C is the dominant language
@lisotton that is another way.