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 numpy as np | |
| import matplotlib.pyplot as plt | |
| # %% | |
| dt = 0.01 | |
| T = 10.0 | |
| t = np.arange(0, T, dt) | |
| # %% |
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
| FeatureScript 1803; | |
| import(path : "onshape/std/geometry.fs", version : "1803.0"); | |
| annotation { "Feature Type Name" : "Timing Belt Pulley" } | |
| export const timingBeltPulley = defineFeature(function(context is Context, id is Id, definition is map) | |
| precondition | |
| { | |
| annotation { "Name" : "Tooth Profile" } | |
| definition.toothProfile is ToothProfile; |
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
| " Modeline and Notes { | |
| " vim: set sw=4 ts=4 sts=4 et tw=78 foldmarker={,} foldlevel=0 foldmethod=marker spell: | |
| " | |
| " __ _ _____ _ | |
| " ___ _ __ / _/ |___ / __ __(_)_ __ ___ | |
| " / __| '_ \| |_| | |_ \ _____\ \ / /| | '_ ` _ \ | |
| " \__ \ |_) | _| |___) |_____|\ V / | | | | | | | | |
| " |___/ .__/|_| |_|____/ \_/ |_|_| |_| |_| | |
| " |_| | |
| " |
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
| /* CONFIGURATION STARTS HERE */ | |
| /* Step 1: enter your domain name like fruitionsite.com */ | |
| const MY_DOMAIN = 'abenstirling.com'; | |
| /* | |
| * Step 2: enter your URL slug to page ID mapping | |
| * The key on the left is the slug (without the slash) | |
| * The value on the right is the Notion page ID | |
| */ |
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 os | |
| #ssid aka wifi name | |
| name = "testWifi" | |
| #psk aka wifi pass | |
| pwd = "password" | |
| def CreateWifiConfig(SSID, password): | |