I hereby claim:
- I am th0mk on github.
- I am thomk (https://keybase.io/thomk) on keybase.
- I have a public key whose fingerprint is F5F4 92FE 20C8 D8DD 81BF E328 CC19 B528 B8DF D4BB
To claim this, I am signing this object:
| { | |
| "annotations": { | |
| "list": [ | |
| { | |
| "builtIn": 1, | |
| "datasource": "-- Grafana --", | |
| "enable": true, | |
| "hide": true, | |
| "iconColor": "rgba(0, 211, 255, 1)", | |
| "name": "Annotations & Alerts", |
I hereby claim:
To claim this, I am signing this object:
| const int button1Pin = 1; | |
| const int button2Pin = 2; | |
| const int button3Pin = 3; | |
| const int button4Pin = 4; | |
| const int button5Pin = 5; | |
| const int led1Pin = 9; | |
| const int led2Pin = 10; | |
| const int led3Pin = 11; | |
| const int led4Pin = 12; |
| $(document).ready(function (){ | |
| // create a LatLng object containing the coordinate for the center of the map | |
| var latlng = new google.maps.LatLng(53.3, 6.0); | |
| // prepare the map properties | |
| var options = { | |
| zoom: 13, | |
| center: latlng, | |
| mapTypeId: google.maps.MapTypeId.ROADMAP, |
| $(window).scroll(function() { | |
| if ($(document).scrollTop() > 200) { | |
| $('someID').addClass('someClass'); | |
| } else { | |
| $('someID').removeClass('someClass'); | |
| } | |
| }); |