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
{ | |
"type": "bird", | |
"name": "pooky", | |
"date": "09-04-16T16:09:42.918Z02:00", | |
"location": { | |
"type": "Point", | |
"coordinates": [ | |
3.1, | |
5 | |
] |
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
{ | |
"_id":"24:4B:03:39:E7:91", | |
"type":"bird", | |
"name":"pooky", | |
"date":"2016-09-19T14:33:38.964Z", | |
"location":{ | |
"type":"Point", | |
"coordinates":[ | |
52.49177162129288, | |
4.451482822254181 |
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.couch.longpoll.js # | |
A handler that can be used to listen to changes from a CouchDB database, | |
using long-polling. | |
This seemed to be a bit simpler than using continuous polling, which I | |
was unable to get working with jQuery. |
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
# Crashlytics - plaintext stacktrace downloaded by Robin van Emden at Sat, 05 Nov 2016 17:36:33 GMT | |
# URL: https://fabric.io/pwy/android/apps/org.pvlv.birdy/issues/581e118a0aeb16625b856fe0/sessions/581e0d6900eb000119c2c6bd7c1c2ea8 | |
# Organization: Pwy | |
# Platform: android | |
# Application: Birdy | |
# Version: 1.0 (1) | |
# Bundle Identifier: org.pvlv.birdy | |
# Issue #: 2 | |
# Issue ID: 581e118a0aeb16625b856fe0 | |
# Session ID: 581e0d6900eb000119c2c6bd7c1c2ea8 |
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
{ | |
"_sync": { | |
"rev": "131-d6920011c53afe48364b84e0394073c5", | |
"sequence": 396, | |
"recent_sequences": [ | |
387, | |
388, | |
389, | |
390, | |
391, |
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
# -*- coding: utf-8 -*- | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import json | |
import pandas as pd | |
pd_csv = pd.read_csv('face_clean_with_demo.csv') |
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
<?php | |
use Drupal\node\Entity\Node; | |
$message = "Click button to start Drupal 6 DB to Drupal 8 entityreference field conversion."; | |
// D6 field machine name | |
$field = "field_name"; | |
// D8 field machine name | |
$target_field = "field_name"; |
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
Qualtrics.SurveyEngine.addOnload(function() | |
{ | |
jQuery('#QID1013 input.radio').prop( "checked", true ); | |
jQuery(document).ready(function(){ | |
jQuery('#QID1013 input.radio').prop( "checked", true ); | |
}) | |
}); |
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
HR_timestamp | UNIX_timestamp | Body_1_Color | Body_2_Color | Body_1_Height_Estimate | Body_2_Height_Estimate | Body_1_TrackingID | Body_2_TrackingID | Body_1_Closest_SpineBase | Body_1_XYZ_SpineBase | Body_1_Closest_SpineMid | Body_1_XYZ_SpineMid | Body_1_Closest_Neck | Body_1_XYZ_Neck | Body_1_Closest_Head | Body_1_XYZ_Head | Body_1_Closest_ShoulderLeft | Body_1_XYZ_ShoulderLeft | Body_1_Closest_ElbowLeft | Body_1_XYZ_ElbowLeft | Body_1_Closest_WristLeft | Body_1_XYZ_WristLeft | Body_1_Closest_HandLeft | Body_1_XYZ_HandLeft | Body_1_Closest_ShoulderRight | Body_1_XYZ_ShoulderRight | Body_1_Closest_ElbowRight | Body_1_XYZ_ElbowRight | Body_1_Closest_WristRight | Body_1_XYZ_WristRight | Body_1_Closest_HandRight | Body_1_XYZ_HandRight | Body_1_Closest_HipLeft | Body_1_XYZ_HipLeft | Body_1_Closest_KneeLeft | Body_1_XYZ_KneeLeft | Body_1_Closest_AnkleLeft | Body_1_XYZ_AnkleLeft | Body_1_Closest_FootLeft | Body_1_XYZ_FootLeft | Body_1_Closest_HipRight | Body_1_XYZ_HipRight | Body_1_Closest_KneeRight | Body_1_XYZ_KneeRight | Body_1_Closest_AnkleRight | Body_1_XYZ_AnkleRight | Body_1_Closest_FootRight | Bod |
---|
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
import heart_beat as hb | |
fs = 500 # sampling frequency 500hz | |
#import data sample | |
dataset = hb.get_data("data/8-sdataHR_sample.df") | |
hb.process_basic_peak(dataset, 0.75, fs) | |
#We have imported our Python module as an object called 'hb' | |
#This object contains the dictionary 'measures' with all values in it |