I hereby claim:
- I am stoggi on github.
- I am stoggi (https://keybase.io/stoggi) on keybase.
- I have a public key ASAo9vF7HSRVpXtS4d4CFD7rWyXvRh5_wFq78ChTS-SgDQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # Usage: | |
| # gif.sh input output width fps | |
| # Example: | |
| # 12 frame per second | |
| # 640 width (aspect ratio is preserved. Use -1 for no change) | |
| # gif.sh input.mp4 output.gif 640 12 |
| ## Your Project | |
| ## This project is amazing, and you should use it. | |
| ## | |
| ## Usage: | |
| ## make help Prints this help message | |
| help: | |
| @grep -E "^##" Makefile | sed -e "s/##//" |
| import pandas | |
| import datetime | |
| import matplotlib | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| # Input data format: | |
| # type date source id none | |
| # Information 18/08/2016 8:30:31 a.m. Kernel-General 12 None |
| from collections import defaultdict | |
| def character_frequency(text): | |
| frequency = defaultdict(int) | |
| for character in text: | |
| frequency[character] += 1 | |
| return frequency | |
| character_frequency("Hello World!!") |