See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #!/bin/bash | |
| # Default values | |
| PORT=3000 | |
| PROTOCOL="http" | |
| HOST="localhost" | |
| ADDITIONAL_PARAMS="" | |
| # Function to display usage | |
| show_help() { |
| var svg = document.getElementById('graph'), | |
| xml = new XMLSerializer().serializeToString(svg), | |
| data = "data:image/svg+xml;base64," + btoa(xml), | |
| img = new Image() | |
| img.setAttribute('src', data) | |
| document.body.appendChild(img) |