This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# download-buidl-and-install-ghdl.sh | |
# | |
# It took about 5 minutes on my desktop (2019-06-17). | |
sudo apt update | |
sudo apt install -y git make gnat-4.9 zlib1g-dev | |
git clone https://github.com/ghdl/ghdl | |
cd ghdl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Minor update to use day/hour notation for xlabels. | |
# Install this to /usr/local/bin (Mac OSX, Ubuntu) | |
""" | |
Plot histogram from list of dates | |
Usage | |
===== | |
Feed newline separated unix time via STDIN. |