Skip to content

Instantly share code, notes, and snippets.

View milesburton's full-sized avatar

Miles Burton milesburton

View GitHub Profile
@milesburton
milesburton / gist:8b8d78ebd0553ff803011ee1eea9db30
Created March 17, 2019 14:58
Bexley Parking Charge Notices (2018) GeoJSON
This file has been truncated, but you can view the full file.
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": 0
},
"geometry": {
"type": "Point",
@milesburton
milesburton / gist:7125e514f692d19b30d96111d192425b
Created March 17, 2019 14:57
Bexley Parking Charge Notices (2018) GeoJSON
This file has been truncated, but you can view the full file.
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": 0
},
"geometry": {
"type": "Point",
@milesburton
milesburton / gist:6711807a63fd060337960ced636019b8
Created January 29, 2019 15:08
ESP8266 with Neopixels example
#include <FastLED.h>
// How many leds in your strip?
#define NUM_LEDS 30
#define DATA_PIN 8
CRGB leds[NUM_LEDS];
void setup() {
Serial.begin(57600);
// Distributed with a free-will license.
// Use it any way you want, profit or free, provided it fits in the licenses of its associated works.
// ADXL345
// This code is designed to work with the ADXL345_I2CS I2C Mini Module available from ControlEverything.com.
// https://www.controleverything.com/content/Accelorometer?sku=ADXL345_I2CS#tabs-0-product_tabset-2
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <Wire.h>
@milesburton
milesburton / conway-s-game-of-life-in-react-redux-rxjs-css-grid-styled-components.markdown
Last active May 31, 2018 18:39
Conway's Game of life in React/Redux/RXJS/CSS-Grid/Styled-Components