I hereby claim:
- I am kevinmarx on github.
- I am kevinmarx (https://keybase.io/kevinmarx) on keybase.
- I have a public key ASA-K5n3U9f8Z7AeO7eQW6v_rSub_0YU0lHxP8DAENi1WQo
To claim this, I am signing this object:
| date | frequency | |
|---|---|---|
| 4-8-19 | 173299 | |
| 4-1-19 | 221179 | |
| 3-25-19 | 238580 | |
| 3-18-19 | 280574 | |
| 3-11-19 | 284225 | |
| 3-4-19 | 359185 | |
| 2-25-19 | 410427 | |
| 2-18-19 | 358718 | |
| 2-11-19 | 239783 |
I hereby claim:
To claim this, I am signing this object:
| #include <Wire.h> | |
| #include "RTClib.h" | |
| #include <Adafruit_NeoPixel.h> | |
| #define PIN 5 | |
| #define NUMPIXELS 8 | |
| RTC_Millis rtc; | |
| Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800); | |
| int second; | |
| DateTime now; |
| [{"id":"1a6950c5.e596af","type":"bean","name":"Next Bus","uuid":"","connectiontype":"constant","connectiontimeout":"0"},{"id":"5ae1cb18.a51e34","type":"sentiment","name":"","x":504,"y":333,"z":"24232079.dbdce","wires":[["df520a61.20adf8","672c16c9.98d3e8"]]},{"id":"9c9fdf29.63602","type":"bean led","name":"","bean":"1a6950c5.e596af","x":933,"y":338,"z":"24232079.dbdce","wires":[]},{"id":"df520a61.20adf8","type":"debug","name":"","active":true,"console":"false","complete":"false","x":694,"y":423,"z":"24232079.dbdce","wires":[]},{"id":"8c524fac.73adb","type":"inject","name":"","topic":"","payload":"I am so happy!","payloadType":"string","repeat":"","crontab":"","once":false,"x":320,"y":307,"z":"24232079.dbdce","wires":[["5ae1cb18.a51e34"]]},{"id":"f4ac7367.0b539","type":"inject","name":"","topic":"","payload":"I am so angry!","payloadType":"string","repeat":"","crontab":"","once":false,"x":324,"y":372,"z":"24232079.dbdce","wires":[["5ae1cb18.a51e34"]]},{"id":"50827230.af7d8c","type":"inject","name":"","topic":" |
| asdf |
| export PS1="\e[36;40m\W\e[0m \e[35;40m\$(__git_ps1 ' (%s)') \e[0m\]\n\$ " | |
| # for more info, http://git.kernel.org/?p=git/git.git;a=blob;f=contrib/completion/git-completion.bash;hb=HEAD | |
| # __git_ps1 flags | |
| # show * if there are untracked changes and + if staged and uncommitted changes | |
| export GIT_PS1_SHOWDIRTYSTATE=1 | |
| # show $ if there are stashed changes | |
| export GIT_PS1_SHOWSTASHSTATE=1 | |
| # show % if there are untracked files | |
| export GIT_PS1_SHOWUNTRACKEDFILES=1 |
| var Handlebars = require('handlebars') | |
| var _ = require('underscore') | |
| /* | |
| * Adds support for passing items into a context as variables | |
| * | |
| * USAGE: {{#topic this foo=bar baz=qux}} | |
| * USAGE: {{#topic foo=bar}} no need for a context, this will create a new context object | |
| */ |
| function(array, chunk) { | |
| return [].concat.apply([], | |
| array.map(function(elem, i) { | |
| return i % chunk ? [] : [array.slice(i, i + chunk)] | |
| }) | |
| ) | |
| } |
| Date.prototype.stdTimeOffset = function() { | |
| var jan = new Date(this.getFullYear(), 0, 1) // july and jan are currently in/out of DST in every timezone. | |
| var jul = new Date(this.getFullYear(), 6, 1) | |
| return Math.max(jan.getTimezoneOffset(), jul.getTimezoneOffset()) | |
| } | |
| Date.prototype.isDST = function() { | |
| return this.getTimezoneOffset() < this.stdTimeOffset() | |
| } |