Skip to content

Instantly share code, notes, and snippets.

@channemann
channemann / (A) CareLink-Range-2.md
Last active October 27, 2018 19:51
Range tests of Medtronic CareLink USB Stick
@ps2
ps2 / gist:2eaafd0e3635b13a5c7c
Last active August 29, 2015 14:27
dump history medtronic pump carelink rf
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
meter a7 628077 5d 00 b7
@mgranberry
mgranberry / agp.py
Last active August 29, 2015 14:20
quick hack at an AGP report built on OpenAPS
import dateutil.parser
from scipy import stats
from scipy.stats import norm
from numpy import percentile
import math
values = []
hour_buckets = {}
for hour in range(0,24):
hour_buckets[hour] = []
@StephenBlackWasAlreadyTaken
StephenBlackWasAlreadyTaken / share_send_app_endpoints.md
Last active April 25, 2024 13:38
DexcomShare Endpoints for the Uploader App
  • these are the calls used by the dexcom uploader app
  • these are in no particular order!
  • User-Agent: Dexcom%20Share/3.0.2.11 CFNetwork/672.0.2 Darwin/14.0.0

General

Read Dexcoms System time clock

GET

@bewest
bewest / README.md
Last active February 28, 2017 01:49
using travis-ci to build using docpad, and publish to github pages

use travis-ci to publish to github

Demo

docpad

The docpad-plugin-ghpages uses the following information to stitch a new repo with contents of ./out directory onto root of your gh-pages branch:

  • git config user.email
  • git config user.name
@bewest
bewest / too.markdown
Last active December 18, 2015 10:19
theory of operation
@balupton
balupton / README.md
Last active April 29, 2019 11:57
DocPad: Use DocPad, GitHub & Prose as a Wiki

Use DocPad, GitHub and Prose as a Wiki

This guide will walk you through how you can use a GitHub repository to house your wiki content, have DocPad render it, and automatically update on changes. It's also really nice as we get to benefit from the github project workflow for our wiki, that is issues, pull requests, etc.

We use this workflow heavily by linking the DocPad Website and the DocPad Documentation repositories allowing us to have users edit and submit pull requests for improvements to our documentation, and once merged, the website regenerates automatically.

1. Create a new repository for your Wiki Content

@mbostock
mbostock / .block
Last active March 2, 2024 12:15
Arc Tween
license: gpl-3.0
Where to buy
Home > Support > FAQ > Article Detail
How to send an SMS with AT-commands?
4/02/2009
@cezarsa
cezarsa / robot.js
Created November 28, 2012 16:03
Simple Wall Robot
var Robot = function(robot){
robot.turnLeft(robot.angle % 90);
robot.turnGunRight(90);
robot.clone();
this.direction = 1;
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(1);
if (robot.parentId) {