| Prefix | Arduino Prefix | Qty | Name | Arduino OEM Part Specified | Manufacturer | Manufacturer Part # | Footprint | Footprint Flexible? | Candidate for Removal? | Description | Developer Notes | DATASH
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
from sympy import * | |
# We are going sum these items | |
# by plugging into symbolic summation | |
items = [0, 5, 6, 2, 7] | |
# declare Sympy variables | |
i, n = symbols('i n') | |
x = symbols('x', cls=Function) |
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 requests | |
# Get token here: https://developer.microsoft.com/en-us/graph/graph-explorer | |
token = '?' | |
headers={'Authorization': 'Bearer ' + token,'Content-Type': 'text/html' } | |
# Retrieve section ID's by running this request: https://graph.microsoft.com/v1.0/me/onenote/sections | |
content_end_point='https://graph.microsoft.com/v1.0/me/onenote/sections/{section-id}/pages' | |
body = """ |
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 requests | |
# Retrieve token from https://developer.microsoft.com/en-us/graph/graph-explorer | |
token = '?' | |
headers={'Authorization': 'Bearer ' + token,'Content-Type': 'application/json' } | |
content_end_point='https://graph.microsoft.com/v1.0/me/onenote/pages' | |
result=requests.get(content_end_point,headers=headers).json() |
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
""" | |
The mean for a pug weight is 20 lbs. | |
The standard deviation is 1.2 lbs. | |
For a pug weighing 18.5 lbs, what is its weight in | |
terms of standard deviations (the Z-score)? | |
Complete the code below to calculate the answer. | |
Then execute the script by typing this command in the terminal: |
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
#include <Joystick.h> | |
Joystick_ Joystick(JOYSTICK_DEFAULT_REPORT_ID,JOYSTICK_TYPE_GAMEPAD, | |
0, 0, // Button Count, Hat Switch Count | |
true, true, true, // X, Y, Z Axis | |
true, true, true, // Rx, Ry, Rz | |
true, true, // rudder, throttle | |
true, true, true); // accelerator, brake, steering | |
void setup() { |
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
Pregnancies | Glucose | BloodPressure | SkinThickness | Insulin | BMI | DiabetesPedigreeFunction | Age | Outcome | |
---|---|---|---|---|---|---|---|---|---|
6 | 148 | 72 | 35 | 0 | 33.6 | 0.627 | 50 | 1 | |
1 | 85 | 66 | 29 | 0 | 26.6 | 0.351 | 31 | 0 | |
8 | 183 | 64 | 0 | 0 | 23.3 | 0.672 | 32 | 1 | |
1 | 89 | 66 | 23 | 94 | 28.1 | 0.167 | 21 | 0 | |
0 | 137 | 40 | 35 | 168 | 43.1 | 2.288 | 33 | 1 | |
5 | 116 | 74 | 0 | 0 | 25.6 | 0.201 | 30 | 0 | |
3 | 78 | 50 | 32 | 88 | 31 | 0.248 | 26 | 1 | |
10 | 115 | 0 | 0 | 0 | 35.3 | 0.134 | 29 | 0 | |
2 | 197 | 70 | 45 | 543 | 30.5 | 0.158 | 53 | 1 |
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
sepal_length | sepal_width | petal_length | petal_width | species | |
---|---|---|---|---|---|
5.1 | 3.5 | 1.4 | 0.2 | setosa | |
4.9 | 3.0 | 1.4 | 0.2 | setosa | |
4.7 | 3.2 | 1.3 | 0.2 | setosa | |
4.6 | 3.1 | 1.5 | 0.2 | setosa | |
5.0 | 3.6 | 1.4 | 0.2 | setosa | |
5.4 | 3.9 | 1.7 | 0.4 | setosa | |
4.6 | 3.4 | 1.4 | 0.3 | setosa | |
5.0 | 3.4 | 1.5 | 0.2 | setosa | |
4.4 | 2.9 | 1.4 | 0.2 | setosa |
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
AS ABQ DAL 12:35 13:45 180 | |
AS BOS BOS 12:35 13:45 180 | |
NK PHX HOU 14:15 16:45 190 | |
AA MDW JFK 12:45 14:35 180 | |
DL ATL ATL 06:05 12:05 190 |
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
AS ABQ DAL 12:35 13:45 180 | |
NK PHX HOU 14:15 16:45 190 | |
AA MDW JFK 12:45 14:35 180 |