See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| ############################################################### | |
| # | |
| # Sample Section : Implementation of SSL Certificates | |
| # | |
| ############################################################### | |
| server { | |
| listen 80; | |
| server_name <Domain name or ip>; # add DNS or server public IP | |
| return 301 https://$server_name$request_uri; # redirect to https | 
| # Run with: | |
| # | |
| # $ gunicorn flaskapp:app | |
| # | |
| # pip install kafka-python gevent | |
| # | |
| ############################### | |
| # Author : mohammed.vaghjipurwala@gmail.com | |
| # Version : 1.0 | |
| # Description : Implementation of Kafka Consumer & Producer with | 
| import requests | |
| from bs4 import BeautifulSoup | |
| import time | |
| # We've now imported the two packages that will do the heavy lifting | |
| # for us, reqeusts and BeautifulSoup | |
| # This is the URL that lists the current inmates | |
| # Should this URL go away, and archive is available at | |
| # http://perma.cc/2HZR-N38X | 
| #################################################################################################### | |
| ''' | |
| Create a tic tac toe game | |
| ''' | |
| #################################################################################################### | |
| Start_Mat = [[0, 0, 0], | |
| [0, 0, 0], | |
| [0, 0, 0]] | 
| #################################################################################################### | |
| ''' | |
| Create a tic tac toe game | |
| ''' | |
| #################################################################################################### | |
| Start_Mat = [[0, 0, 0], | |
| [0, 0, 0], | |
| [0, 0, 0]] | 
| game = [[0, 0, 0], | |
| [0, 0, 0], | |
| [0, 0, 0]] | |
| i = 1 | |
| #### Prints the list in matrix form | |
| def PrintMat(game): | |
| return ('\n'.join(str(i) for i in game)) |