See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" | |
| "strconv" |
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
| import threading | |
| from IPython.display import display | |
| import ipywidgets as widgets | |
| import time | |
| def get_ioloop(): | |
| import IPython, zmq | |
| ipython = IPython.get_ipython() | |
| if ipython and hasattr(ipython, 'kernel'): | |
| return zmq.eventloop.ioloop.IOLoop.instance() | |
| ioloop = get_ioloop() |