I hereby claim:
- I am cmchap on github.
- I am cmchap (https://keybase.io/cmchap) on keybase.
- I have a public key whose fingerprint is 8D18 1B18 AABF A4CD 361F 3CAF 3D52 511F 09D5 2FEB
To claim this, I am signing this object:
| import sys | |
| def calc_weight(c, m): | |
| return sum( | |
| [c_i * (m_i + 100) for m_i, c_i in zip(m, c)]) | |
| def main(): | |
| if len(sys.argv) < 1: |
I hereby claim:
To claim this, I am signing this object:
| /* | |
| * Javascript CopyrightNotice | |
| * | |
| * Copyright (c) 2014 Cory Chapman | |
| * Licensed under the MIT license | |
| * | |
| * For more info on copyright see: http://www.bitlaw.com/copyright/formalities.html | |
| * | |
| * Example usage: | |
| * $('.copyright').copyrightNotice({ byLine: 'Cory Chapman', published: false }); |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Streamgraph</title> | |
| <link href='http://fonts.googleapis.com/css?family=PT+Sans+Narrow:700,400|Rock+Salt' rel='stylesheet' type='text/css'> | |
| <script type="text/javascript" src="http://d3js.org/d3.v2.js"></script> | |
| <script type="text/javascript" src="stream_layers.js"></script> | |
| <style> | |
| #chart { | |
| font: 12px/18px 'Rock Salt',sans-serif; |
| #!/usr/bin/python | |
| ######### | |
| # About # | |
| ######### | |
| # This script uses a Raspberry Pi to sense for the presense or absense of water. | |
| # If there is water, an email is sent and a buzzer goes off. | |
| # When it's dry again, another email is sent, and the buzzer turns off. |