See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| #https://stackoverflow.com/questions/58065603/netlify-renders-404-on-page-refresh-using-react-and-react-router | |
| [[redirects]] | |
| from = "/*" | |
| to = "/index.html" | |
| status = 200 |
| import sys | |
| import json | |
| from urllib.parse import urlparse, parse_qs | |
| def parse_multimap(ordered_pairs): | |
| """JSON loads object_pairs_hook, which creates a list of values when | |
| duplicate keys are found in the JSON file being parsed |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| % ************IIR Analog Butterworth Filter Design ******************% | |
| %************* Author : Arun Prakash A ******************************% | |
| clc; | |
| clear all; | |
| close all; | |
| % Specifications | |
| Wp=2*pi*100; % Passband cutoff in rad/s | |
| Ws=2*pi*200; % stopband cutoff in rad/s | |
| Fs=8000; % Sampling Frequency |
| #!/usr/bin/env python | |
| """ | |
| Ever had a mysqldump of utf8 data stored in latin1 tables, dumped in utf8 and | |
| munged with windows cp1252? | |
| If so this is your friend. Just pipe it through this little baby and spare | |
| yourself hours of unicode hell- it'll take your dirt and spit out clean utf8. | |
| You can also import it and use it in your python code. |