This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Extract FreeStyle Lite data from serial USB cable to CSV. | |
Defaults for Linux or MacOS systems """ | |
import argparse | |
import glob | |
import os | |
import re | |
import serial | |
from csv import writer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// jQuery Plugin (Change Type) | |
(function ($) { | |
$.fn.cryptForm = function (key, toCryptSel) { | |
var form = $(this); | |
var braintree = Braintree.create(key); | |
form.submit(function () { | |
form.find(toCryptSel).each(function () { | |
this.type = 'password'; | |
$(this).val(braintree.encrypt($(this).val())); |
NewerOlder