See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
In this tutorial, I will be going over to how to deploy a Django app from start to finish using AWS and EC2. Recently, my partner Tu and I launched our app Hygge Homes (a vacation home rental app for searching and booking vacation homes based off Airbnb) and we wanted to share with other developers some of the lessons we learned along the way.
Following this tutorial, you will have an application that has:
| import datetime | |
| timeList = ['10:00:00', '0:49:00'] | |
| mysum = datetime.timedelta() | |
| for i in timeList: | |
| (h, m, s) = i.split(':') | |
| d = datetime.timedelta(hours=int(h), minutes=int(m), seconds=int(s)) | |
| mysum += d | |
| print(str(mysum)) |